line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# Copyright 2020, Google LLC |
2
|
|
|
|
|
|
|
# |
3
|
|
|
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); |
4
|
|
|
|
|
|
|
# you may not use this file except in compliance with the License. |
5
|
|
|
|
|
|
|
# You may obtain a copy of the License at |
6
|
|
|
|
|
|
|
# |
7
|
|
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0 |
8
|
|
|
|
|
|
|
# |
9
|
|
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software |
10
|
|
|
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, |
11
|
|
|
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12
|
|
|
|
|
|
|
# See the License for the specific language governing permissions and |
13
|
|
|
|
|
|
|
# limitations under the License. |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
use strict; |
17
|
1
|
|
|
1
|
|
769
|
use warnings; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
59
|
|
18
|
1
|
|
|
1
|
|
7
|
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
90
|
|
19
|
|
|
|
|
|
|
use Const::Exporter enums => [ |
20
|
1
|
|
|
|
|
9
|
UNSPECIFIED => "UNSPECIFIED", |
21
|
|
|
|
|
|
|
UNKNOWN => "UNKNOWN", |
22
|
|
|
|
|
|
|
WEBPAGE => "WEBPAGE", |
23
|
|
|
|
|
|
|
ANALYTICS => "ANALYTICS", |
24
|
|
|
|
|
|
|
UPLOAD => "UPLOAD", |
25
|
|
|
|
|
|
|
AD_CALL_METRICS => "AD_CALL_METRICS", |
26
|
|
|
|
|
|
|
WEBSITE_CALL_METRICS => "WEBSITE_CALL_METRICS", |
27
|
|
|
|
|
|
|
STORE_VISITS => "STORE_VISITS", |
28
|
|
|
|
|
|
|
ANDROID_IN_APP => "ANDROID_IN_APP", |
29
|
|
|
|
|
|
|
IOS_IN_APP => "IOS_IN_APP", |
30
|
|
|
|
|
|
|
IOS_FIRST_OPEN => "IOS_FIRST_OPEN", |
31
|
|
|
|
|
|
|
APP_UNSPECIFIED => "APP_UNSPECIFIED", |
32
|
|
|
|
|
|
|
ANDROID_FIRST_OPEN => "ANDROID_FIRST_OPEN", |
33
|
|
|
|
|
|
|
UPLOAD_CALLS => "UPLOAD_CALLS", |
34
|
|
|
|
|
|
|
FIREBASE => "FIREBASE", |
35
|
|
|
|
|
|
|
CLICK_TO_CALL => "CLICK_TO_CALL", |
36
|
|
|
|
|
|
|
SALESFORCE => "SALESFORCE", |
37
|
|
|
|
|
|
|
STORE_SALES_CRM => "STORE_SALES_CRM", |
38
|
|
|
|
|
|
|
STORE_SALES_PAYMENT_NETWORK => "STORE_SALES_PAYMENT_NETWORK", |
39
|
|
|
|
|
|
|
GOOGLE_PLAY => "GOOGLE_PLAY", |
40
|
|
|
|
|
|
|
THIRD_PARTY_APP_ANALYTICS => "THIRD_PARTY_APP_ANALYTICS", |
41
|
|
|
|
|
|
|
GOOGLE_ATTRIBUTION => "GOOGLE_ATTRIBUTION", |
42
|
|
|
|
|
|
|
STORE_SALES_DIRECT_UPLOAD => "STORE_SALES_DIRECT_UPLOAD", |
43
|
|
|
|
|
|
|
STORE_SALES => "STORE_SALES", |
44
|
|
|
|
|
|
|
SEARCH_ADS_360 => "SEARCH_ADS_360", |
45
|
|
|
|
|
|
|
GOOGLE_HOSTED => "GOOGLE_HOSTED", |
46
|
|
|
|
|
|
|
FLOODLIGHT => "FLOODLIGHT", |
47
|
|
|
|
|
|
|
ANALYTICS_SEARCH_ADS_360 => "ANALYTICS_SEARCH_ADS_360", |
48
|
|
|
|
|
|
|
FIREBASE_SEARCH_ADS_360 => "FIREBASE_SEARCH_ADS_360", |
49
|
|
|
|
|
|
|
DISPLAY_AND_VIDEO_360_FLOODLIGHT => "DISPLAY_AND_VIDEO_360_FLOODLIGHT" |
50
|
|
|
|
|
|
|
]; |
51
|
1
|
|
|
1
|
|
5
|
|
|
1
|
|
|
|
|
2
|
|
52
|
|
|
|
|
|
|
1; |