@rline/schema 8.4.0 → 9.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/model.schema.json +4398 -0
- package/package.json +1 -1
@@ -0,0 +1,4398 @@
|
|
1
|
+
{
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
3
|
+
"title": "Model",
|
4
|
+
"properties": {
|
5
|
+
"type": {
|
6
|
+
"enum": [
|
7
|
+
"class",
|
8
|
+
"enum",
|
9
|
+
"type",
|
10
|
+
"interface",
|
11
|
+
"constant"
|
12
|
+
]
|
13
|
+
},
|
14
|
+
"implementings": {
|
15
|
+
"type": "array",
|
16
|
+
"description": "Which abstract model is extended by the entity?",
|
17
|
+
"items": {
|
18
|
+
"$ref": "#/definitions/ModelName"
|
19
|
+
}
|
20
|
+
},
|
21
|
+
"extendings": {
|
22
|
+
"type": "array",
|
23
|
+
"items": {
|
24
|
+
"$ref": "#/definitions/ModelName",
|
25
|
+
"description": "Which abstract model is extended by the entity?"
|
26
|
+
}
|
27
|
+
},
|
28
|
+
"uniques": {
|
29
|
+
"type": "array",
|
30
|
+
"items": {
|
31
|
+
"$ref": "#/definitions/PropertyName"
|
32
|
+
}
|
33
|
+
},
|
34
|
+
"properties": {
|
35
|
+
"type": "array",
|
36
|
+
"uniqueItems": true,
|
37
|
+
"items": {
|
38
|
+
"$ref": "#/definitions/Property"
|
39
|
+
}
|
40
|
+
},
|
41
|
+
"relations": {
|
42
|
+
"type": "array",
|
43
|
+
"uniqueItems": true,
|
44
|
+
"items": {
|
45
|
+
"$ref": "#/definitions/Relation"
|
46
|
+
}
|
47
|
+
}
|
48
|
+
},
|
49
|
+
"additionalProperties": false,
|
50
|
+
"definitions": {
|
51
|
+
"ModelName": {
|
52
|
+
"description": "Name of the models (class-names, entity-name) accross the projects.",
|
53
|
+
"enum": [
|
54
|
+
"User",
|
55
|
+
"Role",
|
56
|
+
"Permission",
|
57
|
+
"UserSession",
|
58
|
+
"UserInfo",
|
59
|
+
"UserDevice",
|
60
|
+
"Department",
|
61
|
+
"Product",
|
62
|
+
"Category",
|
63
|
+
"Price",
|
64
|
+
"Quantity",
|
65
|
+
"PriceLevel",
|
66
|
+
"Store",
|
67
|
+
"Warehouse",
|
68
|
+
"Sku",
|
69
|
+
"ProductAttribute",
|
70
|
+
"Discount",
|
71
|
+
"ProductReview",
|
72
|
+
"ProductComment",
|
73
|
+
"Customer",
|
74
|
+
"CustomerAccount",
|
75
|
+
"CustomerEmail",
|
76
|
+
"CustomerPhone",
|
77
|
+
"CustomerWebsite",
|
78
|
+
"CustomerContact",
|
79
|
+
"MessageDraft",
|
80
|
+
"Message",
|
81
|
+
"Inbox",
|
82
|
+
"Company",
|
83
|
+
"Agent",
|
84
|
+
"SocialMedia",
|
85
|
+
"Contact",
|
86
|
+
"Email",
|
87
|
+
"Addresss",
|
88
|
+
"Phone",
|
89
|
+
"Website",
|
90
|
+
"Occupation",
|
91
|
+
"JobPost",
|
92
|
+
"Resume",
|
93
|
+
"Candidate",
|
94
|
+
"CoverLetter",
|
95
|
+
"Certificate",
|
96
|
+
"Skill",
|
97
|
+
"Experience",
|
98
|
+
"Project",
|
99
|
+
"Task",
|
100
|
+
"TaskComment",
|
101
|
+
"Sprint",
|
102
|
+
"Blog",
|
103
|
+
"Article",
|
104
|
+
"BlogComment",
|
105
|
+
"BlogReview",
|
106
|
+
"ArticleImage",
|
107
|
+
"Menu",
|
108
|
+
"MenuItem",
|
109
|
+
"Resource",
|
110
|
+
"Component",
|
111
|
+
"Page",
|
112
|
+
"Notification",
|
113
|
+
"EmailEvent"
|
114
|
+
]
|
115
|
+
},
|
116
|
+
"PropertyName": {
|
117
|
+
"description": "Name of the property names used accross the projects",
|
118
|
+
"enum": [
|
119
|
+
"firstName",
|
120
|
+
"lastName",
|
121
|
+
"middleName",
|
122
|
+
"fullName",
|
123
|
+
"dob",
|
124
|
+
"gender",
|
125
|
+
"ssn",
|
126
|
+
"dl",
|
127
|
+
"etnicity",
|
128
|
+
"salary",
|
129
|
+
"salaryType",
|
130
|
+
"username",
|
131
|
+
"password",
|
132
|
+
"email",
|
133
|
+
"emails",
|
134
|
+
"phone",
|
135
|
+
"phones",
|
136
|
+
"website",
|
137
|
+
"websites",
|
138
|
+
"socialMedia",
|
139
|
+
"facebook",
|
140
|
+
"instagram",
|
141
|
+
"tiktok",
|
142
|
+
"twitter",
|
143
|
+
"linkedin",
|
144
|
+
"sso",
|
145
|
+
"permission",
|
146
|
+
"permissions",
|
147
|
+
"role",
|
148
|
+
"roles",
|
149
|
+
"clockIn",
|
150
|
+
"clockOut",
|
151
|
+
"employmentType",
|
152
|
+
"schedule",
|
153
|
+
"startTime",
|
154
|
+
"endTime",
|
155
|
+
"product",
|
156
|
+
"products",
|
157
|
+
"sku",
|
158
|
+
"skus",
|
159
|
+
"upc",
|
160
|
+
"barcode",
|
161
|
+
"model",
|
162
|
+
"make",
|
163
|
+
"attribute",
|
164
|
+
"attributes",
|
165
|
+
"price",
|
166
|
+
"prices",
|
167
|
+
"quantity",
|
168
|
+
"quantities",
|
169
|
+
"store",
|
170
|
+
"stores",
|
171
|
+
"priceLevel",
|
172
|
+
"priceLevels",
|
173
|
+
"inbox",
|
174
|
+
"message",
|
175
|
+
"messages",
|
176
|
+
"receiver",
|
177
|
+
"receivers",
|
178
|
+
"sender",
|
179
|
+
"isRead",
|
180
|
+
"isSent",
|
181
|
+
"draft",
|
182
|
+
"drafts",
|
183
|
+
"attachment",
|
184
|
+
"attachments",
|
185
|
+
"agent",
|
186
|
+
"agents",
|
187
|
+
"industry",
|
188
|
+
"industries",
|
189
|
+
"address",
|
190
|
+
"addresses",
|
191
|
+
"street",
|
192
|
+
"city",
|
193
|
+
"state",
|
194
|
+
"country",
|
195
|
+
"postalCode",
|
196
|
+
"zip",
|
197
|
+
"unit",
|
198
|
+
"jobPost",
|
199
|
+
"occupation",
|
200
|
+
"occupations",
|
201
|
+
"resume",
|
202
|
+
"condicate",
|
203
|
+
"skill",
|
204
|
+
"skills",
|
205
|
+
"experience",
|
206
|
+
"experiences",
|
207
|
+
"project",
|
208
|
+
"projects",
|
209
|
+
"task",
|
210
|
+
"tasks",
|
211
|
+
"sprint",
|
212
|
+
"sprints",
|
213
|
+
"due",
|
214
|
+
"asignee",
|
215
|
+
"asignees",
|
216
|
+
"score",
|
217
|
+
"priority",
|
218
|
+
"balance",
|
219
|
+
"type",
|
220
|
+
"primary",
|
221
|
+
"status",
|
222
|
+
"name",
|
223
|
+
"description",
|
224
|
+
"id",
|
225
|
+
"createdAt",
|
226
|
+
"updatedAt",
|
227
|
+
"deletedAt",
|
228
|
+
"active",
|
229
|
+
"owner",
|
230
|
+
"lock",
|
231
|
+
"canUpdate",
|
232
|
+
"canDelete",
|
233
|
+
"canRead",
|
234
|
+
"tag",
|
235
|
+
"tags",
|
236
|
+
"count",
|
237
|
+
"like",
|
238
|
+
"dislike",
|
239
|
+
"comment",
|
240
|
+
"review",
|
241
|
+
"rate",
|
242
|
+
"category",
|
243
|
+
"department"
|
244
|
+
]
|
245
|
+
},
|
246
|
+
"Property": {
|
247
|
+
"allOf": [
|
248
|
+
{
|
249
|
+
"$ref": "#/definitions/CommonProperty"
|
250
|
+
},
|
251
|
+
{
|
252
|
+
"$ref": "#/definitions/UiProperty"
|
253
|
+
},
|
254
|
+
{
|
255
|
+
"oneOf": [
|
256
|
+
{
|
257
|
+
"$ref": "#/definitions/String"
|
258
|
+
},
|
259
|
+
{
|
260
|
+
"$ref": "#/definitions/Number"
|
261
|
+
},
|
262
|
+
{
|
263
|
+
"$ref": "#/definitions/Integer"
|
264
|
+
},
|
265
|
+
{
|
266
|
+
"$ref": "#/definitions/Boolean"
|
267
|
+
},
|
268
|
+
{
|
269
|
+
"$ref": "#/definitions/Date"
|
270
|
+
},
|
271
|
+
{
|
272
|
+
"$ref": "#/definitions/Object"
|
273
|
+
},
|
274
|
+
{
|
275
|
+
"$ref": "#/definitions/Array"
|
276
|
+
}
|
277
|
+
]
|
278
|
+
}
|
279
|
+
]
|
280
|
+
},
|
281
|
+
"Relation": {
|
282
|
+
"allOf": [
|
283
|
+
{
|
284
|
+
"$ref": "#/definitions/UiProperty"
|
285
|
+
},
|
286
|
+
{
|
287
|
+
"properties": {
|
288
|
+
"name": {
|
289
|
+
"$ref": "#/definitions/PropertyName"
|
290
|
+
},
|
291
|
+
"type": {
|
292
|
+
"$ref": "#/definitions/RelationType"
|
293
|
+
},
|
294
|
+
"target": {
|
295
|
+
"$ref": "#/definitions/ModelName"
|
296
|
+
},
|
297
|
+
"targetProperty": {
|
298
|
+
"description": "Reference property in the target entity",
|
299
|
+
"$ref": "#/definitions/PropertyName"
|
300
|
+
},
|
301
|
+
"eager": {
|
302
|
+
"type": "boolean",
|
303
|
+
"default": true,
|
304
|
+
"description": "Load the relation data by default"
|
305
|
+
},
|
306
|
+
"join": {
|
307
|
+
"description": "should join the column/table?",
|
308
|
+
"type": "boolean",
|
309
|
+
"default": true
|
310
|
+
},
|
311
|
+
"cascade": {
|
312
|
+
"description": "should cascade the realtion during entity creation",
|
313
|
+
"type": "boolean",
|
314
|
+
"default": true
|
315
|
+
},
|
316
|
+
"onDelete": {
|
317
|
+
"description": "what should happen when the relation is deleted?",
|
318
|
+
"$ref": "#/definitions/OnDelete",
|
319
|
+
"default": "SET NULL"
|
320
|
+
},
|
321
|
+
"onUpdate": {
|
322
|
+
"description": "what should happen when the relation is udpated",
|
323
|
+
"$ref": "#/definitions/OnUpdate"
|
324
|
+
}
|
325
|
+
},
|
326
|
+
"additionalProperties": false,
|
327
|
+
"required": [
|
328
|
+
"type",
|
329
|
+
"target"
|
330
|
+
]
|
331
|
+
}
|
332
|
+
]
|
333
|
+
},
|
334
|
+
"RelationType": {
|
335
|
+
"title": "RelationType",
|
336
|
+
"enum": [
|
337
|
+
"many-to-many",
|
338
|
+
"many-to-one",
|
339
|
+
"one-to-one",
|
340
|
+
"one-to-many"
|
341
|
+
]
|
342
|
+
},
|
343
|
+
"OnDelete": {
|
344
|
+
"title": "OnDelete",
|
345
|
+
"enum": [
|
346
|
+
"RESTRICT",
|
347
|
+
"CASCADE",
|
348
|
+
"SET NULL",
|
349
|
+
"DEFAULT",
|
350
|
+
"NO ACTION"
|
351
|
+
],
|
352
|
+
"default": "SET NULL"
|
353
|
+
},
|
354
|
+
"OnUpdate": {
|
355
|
+
"title": "OnUpdate",
|
356
|
+
"enum": [
|
357
|
+
"RESTRICT",
|
358
|
+
"CASCADE",
|
359
|
+
"SET NULL",
|
360
|
+
"DEFAULT",
|
361
|
+
"NO ACTION"
|
362
|
+
],
|
363
|
+
"default": "SET NULL"
|
364
|
+
},
|
365
|
+
"CommonProperty": {
|
366
|
+
"description": "Common property options",
|
367
|
+
"allOf": [
|
368
|
+
{
|
369
|
+
"$ref": "#/definitions/General"
|
370
|
+
},
|
371
|
+
{
|
372
|
+
"$ref": "#/definitions/Transform"
|
373
|
+
},
|
374
|
+
{
|
375
|
+
"$ref": "#/definitions/Validation"
|
376
|
+
},
|
377
|
+
{
|
378
|
+
"$ref": "#/definitions/Encryption"
|
379
|
+
},
|
380
|
+
{
|
381
|
+
"$ref": "#/definitions/Dto"
|
382
|
+
}
|
383
|
+
],
|
384
|
+
"required": [
|
385
|
+
"type"
|
386
|
+
]
|
387
|
+
},
|
388
|
+
"General": {
|
389
|
+
"properties": {
|
390
|
+
"name": {
|
391
|
+
"$ref": "#/definitions/PropertyName"
|
392
|
+
},
|
393
|
+
"description": {
|
394
|
+
"type": "string",
|
395
|
+
"description": "Property description"
|
396
|
+
},
|
397
|
+
"required": {
|
398
|
+
"type": "boolean",
|
399
|
+
"default": true,
|
400
|
+
"description": "Is property required?"
|
401
|
+
},
|
402
|
+
"unique": {
|
403
|
+
"type": "boolean",
|
404
|
+
"default": true,
|
405
|
+
"description": "Is property unique?"
|
406
|
+
}
|
407
|
+
}
|
408
|
+
},
|
409
|
+
"Transform": {
|
410
|
+
"properties": {
|
411
|
+
"acceptString": {
|
412
|
+
"type": "boolean",
|
413
|
+
"description": "transform string values into the actual type before any operations",
|
414
|
+
"default": true
|
415
|
+
}
|
416
|
+
}
|
417
|
+
},
|
418
|
+
"Validation": {
|
419
|
+
"properties": {
|
420
|
+
"equalToProperty": {
|
421
|
+
"$ref": "#/definitions/PropertyName",
|
422
|
+
"description": "Check the value is equal to the value of the property"
|
423
|
+
},
|
424
|
+
"notEqualToProperty": {
|
425
|
+
"$ref": "#/definitions/PropertyName",
|
426
|
+
"description": "Check the value is not equal to the value of the property"
|
427
|
+
}
|
428
|
+
}
|
429
|
+
},
|
430
|
+
"Encryption": {
|
431
|
+
"properties": {
|
432
|
+
"hash": {
|
433
|
+
"type": "boolean",
|
434
|
+
"default": true,
|
435
|
+
"description": "Should hash value?"
|
436
|
+
},
|
437
|
+
"encrypt": {
|
438
|
+
"type": "boolean",
|
439
|
+
"default": true,
|
440
|
+
"description": "Should encrypt value?"
|
441
|
+
}
|
442
|
+
}
|
443
|
+
},
|
444
|
+
"Dto": {
|
445
|
+
"properties": {
|
446
|
+
"write": {
|
447
|
+
"type": "boolean",
|
448
|
+
"description": "Is the property writable or internal"
|
449
|
+
},
|
450
|
+
"read": {
|
451
|
+
"type": "boolean",
|
452
|
+
"description": "Is the property visible in the data load?",
|
453
|
+
"default": true
|
454
|
+
},
|
455
|
+
"udpate": {
|
456
|
+
"type": "boolean",
|
457
|
+
"description": "Is proprety updatable?",
|
458
|
+
"default": true
|
459
|
+
}
|
460
|
+
}
|
461
|
+
},
|
462
|
+
"UiProperty": {
|
463
|
+
"properties": {
|
464
|
+
"label": {
|
465
|
+
"type": "string"
|
466
|
+
},
|
467
|
+
"mapTo": {
|
468
|
+
"$ref": "#/definitions/PropertyName"
|
469
|
+
},
|
470
|
+
"inputType": {
|
471
|
+
"$ref": "#/definitions/InputType"
|
472
|
+
},
|
473
|
+
"prefixText": {
|
474
|
+
"type": "string"
|
475
|
+
},
|
476
|
+
"suffixText": {
|
477
|
+
"type": "string"
|
478
|
+
},
|
479
|
+
"prefixIcon": {
|
480
|
+
"$ref": "#/definitions/Icon"
|
481
|
+
},
|
482
|
+
"suffixIcon": {
|
483
|
+
"$ref": "#/definitions/Icon"
|
484
|
+
},
|
485
|
+
"dependsOn": {
|
486
|
+
"$ref": "#/definitions/PropertyName"
|
487
|
+
},
|
488
|
+
"group": {
|
489
|
+
"type": "string"
|
490
|
+
},
|
491
|
+
"bold": {
|
492
|
+
"type": "boolean"
|
493
|
+
},
|
494
|
+
"italic": {
|
495
|
+
"type": "boolean"
|
496
|
+
}
|
497
|
+
}
|
498
|
+
},
|
499
|
+
"String": {
|
500
|
+
"properties": {
|
501
|
+
"type": {
|
502
|
+
"const": "string"
|
503
|
+
},
|
504
|
+
"default": {
|
505
|
+
"type": "string"
|
506
|
+
},
|
507
|
+
"stringFormat": {
|
508
|
+
"$ref": "#/definitions/StringFormat"
|
509
|
+
},
|
510
|
+
"minLength": {
|
511
|
+
"type": "integer",
|
512
|
+
"description": "Minimum allowed length for the string value."
|
513
|
+
},
|
514
|
+
"maxLength": {
|
515
|
+
"type": "integer",
|
516
|
+
"description": "Maximum allowed length for the string value."
|
517
|
+
},
|
518
|
+
"isIn": {
|
519
|
+
"type": "array",
|
520
|
+
"uniqueItems": true,
|
521
|
+
"items": {
|
522
|
+
"type": "string"
|
523
|
+
}
|
524
|
+
},
|
525
|
+
"isNotIn": {
|
526
|
+
"type": "array",
|
527
|
+
"uniqueItems": true,
|
528
|
+
"items": {
|
529
|
+
"type": "string"
|
530
|
+
}
|
531
|
+
},
|
532
|
+
"contains": {
|
533
|
+
"type": "array",
|
534
|
+
"uniqueItems": true,
|
535
|
+
"items": {
|
536
|
+
"type": "string"
|
537
|
+
}
|
538
|
+
},
|
539
|
+
"notContains": {
|
540
|
+
"type": "array",
|
541
|
+
"uniqueItems": true,
|
542
|
+
"items": {
|
543
|
+
"type": "string"
|
544
|
+
}
|
545
|
+
},
|
546
|
+
"startWith": {
|
547
|
+
"type": "string"
|
548
|
+
},
|
549
|
+
"notStartWith": {
|
550
|
+
"type": "string"
|
551
|
+
},
|
552
|
+
"endWith": {
|
553
|
+
"type": "string"
|
554
|
+
},
|
555
|
+
"notEndWith": {
|
556
|
+
"type": "string"
|
557
|
+
},
|
558
|
+
"containProperty": {
|
559
|
+
"$ref": "#/definitions/PropertyName"
|
560
|
+
},
|
561
|
+
"notContainProperty": {
|
562
|
+
"$ref": "#/definitions/PropertyName"
|
563
|
+
},
|
564
|
+
"longerThanProperty": {
|
565
|
+
"$ref": "#/definitions/PropertyName"
|
566
|
+
},
|
567
|
+
"shorterThanProperty": {
|
568
|
+
"$ref": "#/definitions/PropertyName"
|
569
|
+
}
|
570
|
+
}
|
571
|
+
},
|
572
|
+
"Number": {
|
573
|
+
"allOf": [
|
574
|
+
{
|
575
|
+
"$ref": "#/definitions/CommonNumber"
|
576
|
+
},
|
577
|
+
{
|
578
|
+
"properties": {
|
579
|
+
"type": {
|
580
|
+
"const": "number"
|
581
|
+
},
|
582
|
+
"default": {
|
583
|
+
"type": "number"
|
584
|
+
},
|
585
|
+
"isIn": {
|
586
|
+
"type": "array",
|
587
|
+
"items": {
|
588
|
+
"oneOf": [
|
589
|
+
{
|
590
|
+
"type": "number"
|
591
|
+
}
|
592
|
+
]
|
593
|
+
}
|
594
|
+
},
|
595
|
+
"isNotIn": {
|
596
|
+
"type": "array",
|
597
|
+
"items": {
|
598
|
+
"oneOf": [
|
599
|
+
{
|
600
|
+
"type": "number"
|
601
|
+
}
|
602
|
+
]
|
603
|
+
}
|
604
|
+
}
|
605
|
+
},
|
606
|
+
"required": [
|
607
|
+
"type"
|
608
|
+
]
|
609
|
+
}
|
610
|
+
]
|
611
|
+
},
|
612
|
+
"Integer": {
|
613
|
+
"allOf": [
|
614
|
+
{
|
615
|
+
"$ref": "#/definitions/CommonNumber"
|
616
|
+
},
|
617
|
+
{
|
618
|
+
"properties": {
|
619
|
+
"type": {
|
620
|
+
"const": "integer"
|
621
|
+
},
|
622
|
+
"default": {
|
623
|
+
"type": "integer"
|
624
|
+
},
|
625
|
+
"isIn": {
|
626
|
+
"type": "array",
|
627
|
+
"description": "Is the vlaue in the provided list?",
|
628
|
+
"items": {
|
629
|
+
"oneOf": [
|
630
|
+
{
|
631
|
+
"type": "integer"
|
632
|
+
}
|
633
|
+
]
|
634
|
+
}
|
635
|
+
},
|
636
|
+
"isNotIn": {
|
637
|
+
"type": "array",
|
638
|
+
"description": "Is the value not in the provided list?",
|
639
|
+
"items": {
|
640
|
+
"oneOf": [
|
641
|
+
{
|
642
|
+
"type": "integer"
|
643
|
+
}
|
644
|
+
]
|
645
|
+
}
|
646
|
+
}
|
647
|
+
},
|
648
|
+
"required": [
|
649
|
+
"type"
|
650
|
+
]
|
651
|
+
}
|
652
|
+
]
|
653
|
+
},
|
654
|
+
"Boolean": {
|
655
|
+
"description": "Boolean property options",
|
656
|
+
"properties": {
|
657
|
+
"type": {
|
658
|
+
"const": "boolean"
|
659
|
+
},
|
660
|
+
"default": {
|
661
|
+
"type": "boolean"
|
662
|
+
}
|
663
|
+
},
|
664
|
+
"required": [
|
665
|
+
"type"
|
666
|
+
]
|
667
|
+
},
|
668
|
+
"Date": {
|
669
|
+
"properties": {
|
670
|
+
"type": {
|
671
|
+
"const": "date"
|
672
|
+
},
|
673
|
+
"isFutureDate": {
|
674
|
+
"type": "boolean"
|
675
|
+
},
|
676
|
+
"isPastDate": {
|
677
|
+
"type": "boolean"
|
678
|
+
},
|
679
|
+
"default": {
|
680
|
+
"type": "string"
|
681
|
+
}
|
682
|
+
},
|
683
|
+
"required": [
|
684
|
+
"type"
|
685
|
+
]
|
686
|
+
},
|
687
|
+
"Object": {
|
688
|
+
"properties": {
|
689
|
+
"type": {
|
690
|
+
"const": "object"
|
691
|
+
},
|
692
|
+
"target": {
|
693
|
+
"$ref": "#/definitions/ModelName"
|
694
|
+
},
|
695
|
+
"default": {
|
696
|
+
"type": "object"
|
697
|
+
}
|
698
|
+
},
|
699
|
+
"required": [
|
700
|
+
"type",
|
701
|
+
"target"
|
702
|
+
]
|
703
|
+
},
|
704
|
+
"Array": {
|
705
|
+
"description": "Array property options",
|
706
|
+
"properties": {
|
707
|
+
"type": {
|
708
|
+
"const": "array"
|
709
|
+
},
|
710
|
+
"default": {
|
711
|
+
"type": "array"
|
712
|
+
},
|
713
|
+
"minSize": {
|
714
|
+
"type": "integer"
|
715
|
+
},
|
716
|
+
"maxSize": {
|
717
|
+
"type": "integer"
|
718
|
+
},
|
719
|
+
"items": {
|
720
|
+
"$ref": "#/definitions/Property"
|
721
|
+
},
|
722
|
+
"contain": {
|
723
|
+
"type": "array",
|
724
|
+
"description": "Should the array contain a list of value?"
|
725
|
+
},
|
726
|
+
"notContain": {
|
727
|
+
"type": "array",
|
728
|
+
"description": "Should the array NOT contain a list of value?"
|
729
|
+
}
|
730
|
+
},
|
731
|
+
"required": [
|
732
|
+
"type",
|
733
|
+
"items"
|
734
|
+
]
|
735
|
+
},
|
736
|
+
"NumberFormat": {
|
737
|
+
"description": "Number format such as rate (0-5), percentage (0-100)",
|
738
|
+
"enum": [
|
739
|
+
[
|
740
|
+
"integer",
|
741
|
+
"float",
|
742
|
+
"double",
|
743
|
+
"decimal",
|
744
|
+
"positive-integer",
|
745
|
+
"negative-integer",
|
746
|
+
"non-negative-integer",
|
747
|
+
"non-positive-integer",
|
748
|
+
"percentage",
|
749
|
+
"currency",
|
750
|
+
"rate",
|
751
|
+
"scientific-notation",
|
752
|
+
"hexadecimal",
|
753
|
+
"octal",
|
754
|
+
"binary",
|
755
|
+
"roman-numeral",
|
756
|
+
"prime-number",
|
757
|
+
"natural-number",
|
758
|
+
"odd-number",
|
759
|
+
"even-number",
|
760
|
+
"latitude",
|
761
|
+
"longitude",
|
762
|
+
"timezone-offset",
|
763
|
+
"temperature-celsius",
|
764
|
+
"temperature-fahrenheit",
|
765
|
+
"angle-degree",
|
766
|
+
"angle-radian",
|
767
|
+
"year",
|
768
|
+
"month",
|
769
|
+
"day",
|
770
|
+
"age",
|
771
|
+
"count",
|
772
|
+
"rating",
|
773
|
+
"probability",
|
774
|
+
"weight",
|
775
|
+
"height",
|
776
|
+
"distance",
|
777
|
+
"speed",
|
778
|
+
"time-duration",
|
779
|
+
"voltage",
|
780
|
+
"current",
|
781
|
+
"frequency",
|
782
|
+
"acceleration"
|
783
|
+
]
|
784
|
+
]
|
785
|
+
},
|
786
|
+
"CommonNumber": {
|
787
|
+
"description": "Common number property options",
|
788
|
+
"properties": {
|
789
|
+
"isEven": {
|
790
|
+
"type": "boolean",
|
791
|
+
"description": "Is the number even?"
|
792
|
+
},
|
793
|
+
"isOdd": {
|
794
|
+
"type": "boolean",
|
795
|
+
"description": "Is the number odd?"
|
796
|
+
},
|
797
|
+
"numberFormat": {
|
798
|
+
"$ref": "#/definitions/NumberFormat"
|
799
|
+
},
|
800
|
+
"minimum": {
|
801
|
+
"type": "number",
|
802
|
+
"description": "Minimum allowed value for the number"
|
803
|
+
},
|
804
|
+
"maximum": {
|
805
|
+
"type": "number",
|
806
|
+
"description": "Maximum allowed value for the number"
|
807
|
+
},
|
808
|
+
"moreThanProperty": {
|
809
|
+
"type": "array",
|
810
|
+
"description": "Is the value more than the provided properties' value?",
|
811
|
+
"items": {
|
812
|
+
"$ref": "#/definitions/PropertyName"
|
813
|
+
}
|
814
|
+
},
|
815
|
+
"lessThanProperty": {
|
816
|
+
"type": "array",
|
817
|
+
"description": "Is the value less than the provided properties' value?",
|
818
|
+
"items": {
|
819
|
+
"$ref": "#/definitions/PropertyName"
|
820
|
+
}
|
821
|
+
}
|
822
|
+
}
|
823
|
+
},
|
824
|
+
"StringFormat": {
|
825
|
+
"description": "String format such as email, password, uuid, ip6, ip4 and so more",
|
826
|
+
"enum": [
|
827
|
+
"short",
|
828
|
+
"long",
|
829
|
+
"email",
|
830
|
+
"hostname",
|
831
|
+
"ipv4",
|
832
|
+
"ipv6",
|
833
|
+
"uuid",
|
834
|
+
"url",
|
835
|
+
"uri",
|
836
|
+
"uri-reference",
|
837
|
+
"iri",
|
838
|
+
"iri-reference",
|
839
|
+
"date",
|
840
|
+
"time",
|
841
|
+
"date-time",
|
842
|
+
"regex",
|
843
|
+
"phone-number",
|
844
|
+
"credit-card",
|
845
|
+
"isbn",
|
846
|
+
"issn",
|
847
|
+
"zipcode",
|
848
|
+
"postal-code",
|
849
|
+
"currency",
|
850
|
+
"mac-address",
|
851
|
+
"alphanumeric",
|
852
|
+
"hexadecimal",
|
853
|
+
"base64",
|
854
|
+
"binary",
|
855
|
+
"json",
|
856
|
+
"slug",
|
857
|
+
"username",
|
858
|
+
"password",
|
859
|
+
"country-code",
|
860
|
+
"language-code",
|
861
|
+
"timezone",
|
862
|
+
"html-color",
|
863
|
+
"semver",
|
864
|
+
"domain-name",
|
865
|
+
"subdomain",
|
866
|
+
"file-path",
|
867
|
+
"sha256",
|
868
|
+
"sha512",
|
869
|
+
"md5",
|
870
|
+
"jwt",
|
871
|
+
"object-id"
|
872
|
+
]
|
873
|
+
},
|
874
|
+
"InputType": {
|
875
|
+
"description": "UI input type",
|
876
|
+
"enum": [
|
877
|
+
"text",
|
878
|
+
"textarea",
|
879
|
+
"texteditor",
|
880
|
+
"number",
|
881
|
+
"number-range",
|
882
|
+
"integer",
|
883
|
+
"integer-range",
|
884
|
+
"currency",
|
885
|
+
"percent",
|
886
|
+
"rate",
|
887
|
+
"switch",
|
888
|
+
"select",
|
889
|
+
"autocomplete",
|
890
|
+
"date",
|
891
|
+
"date-time",
|
892
|
+
"checkbox",
|
893
|
+
"checkbox-group",
|
894
|
+
"radio",
|
895
|
+
"radio-group"
|
896
|
+
]
|
897
|
+
},
|
898
|
+
"Icon": {
|
899
|
+
"description": "Google Material Symbols",
|
900
|
+
"enum": [
|
901
|
+
"search",
|
902
|
+
"home",
|
903
|
+
"menu",
|
904
|
+
"close",
|
905
|
+
"settings",
|
906
|
+
"check_circle",
|
907
|
+
"favorite",
|
908
|
+
"add",
|
909
|
+
"delete",
|
910
|
+
"arrow_back",
|
911
|
+
"star",
|
912
|
+
"chevron_right",
|
913
|
+
"logout",
|
914
|
+
"arrow_forward_ios",
|
915
|
+
"add_circle",
|
916
|
+
"cancel",
|
917
|
+
"arrow_back_ios",
|
918
|
+
"arrow_forward",
|
919
|
+
"arrow_drop_down",
|
920
|
+
"more_vert",
|
921
|
+
"check",
|
922
|
+
"check_box",
|
923
|
+
"open_in_new",
|
924
|
+
"toggle_on",
|
925
|
+
"refresh",
|
926
|
+
"check_box_outline_blank",
|
927
|
+
"login",
|
928
|
+
"chevron_left",
|
929
|
+
"radio_button_unchecked",
|
930
|
+
"more_horiz",
|
931
|
+
"download",
|
932
|
+
"apps",
|
933
|
+
"arrow_right_alt",
|
934
|
+
"radio_button_checked",
|
935
|
+
"filter_alt",
|
936
|
+
"remove",
|
937
|
+
"bolt",
|
938
|
+
"arrow_upward",
|
939
|
+
"toggle_off",
|
940
|
+
"filter_list",
|
941
|
+
"delete_forever",
|
942
|
+
"autorenew",
|
943
|
+
"key",
|
944
|
+
"block",
|
945
|
+
"sync",
|
946
|
+
"arrow_downward",
|
947
|
+
"sort",
|
948
|
+
"add_box",
|
949
|
+
"arrow_back_ios_new",
|
950
|
+
"restart_alt",
|
951
|
+
"shopping_cart_checkout",
|
952
|
+
"menu_open",
|
953
|
+
"expand_circle_down",
|
954
|
+
"undo",
|
955
|
+
"backspace",
|
956
|
+
"arrow_circle_right",
|
957
|
+
"done_all",
|
958
|
+
"arrow_right",
|
959
|
+
"do_not_disturb_on",
|
960
|
+
"open_in_full",
|
961
|
+
"manage_search",
|
962
|
+
"double_arrow",
|
963
|
+
"sync_alt",
|
964
|
+
"done_outline",
|
965
|
+
"zoom_in",
|
966
|
+
"drag_indicator",
|
967
|
+
"fullscreen",
|
968
|
+
"ios_share",
|
969
|
+
"keyboard_double_arrow_right",
|
970
|
+
"star_half",
|
971
|
+
"settings_accessibility",
|
972
|
+
"arrow_drop_up",
|
973
|
+
"reply",
|
974
|
+
"exit_to_app",
|
975
|
+
"unfold_more",
|
976
|
+
"cached",
|
977
|
+
"library_add",
|
978
|
+
"terminal",
|
979
|
+
"select_check_box",
|
980
|
+
"change_circle",
|
981
|
+
"disabled_by_default",
|
982
|
+
"swap_horiz",
|
983
|
+
"swap_vert",
|
984
|
+
"close_fullscreen",
|
985
|
+
"app_registration",
|
986
|
+
"dataset",
|
987
|
+
"download_for_offline",
|
988
|
+
"arrow_circle_up",
|
989
|
+
"arrow_circle_left",
|
990
|
+
"minimize",
|
991
|
+
"file_open",
|
992
|
+
"open_with",
|
993
|
+
"add_task",
|
994
|
+
"start",
|
995
|
+
"keyboard_double_arrow_left",
|
996
|
+
"keyboard_double_arrow_down",
|
997
|
+
"create_new_folder",
|
998
|
+
"upload",
|
999
|
+
"forward",
|
1000
|
+
"downloading",
|
1001
|
+
"compare_arrows",
|
1002
|
+
"settings_applications",
|
1003
|
+
"publish",
|
1004
|
+
"redo",
|
1005
|
+
"zoom_out",
|
1006
|
+
"arrow_left",
|
1007
|
+
"token",
|
1008
|
+
"html",
|
1009
|
+
"switch_access_shortcut",
|
1010
|
+
"fullscreen_exit",
|
1011
|
+
"arrow_circle_down",
|
1012
|
+
"sort_by_alpha",
|
1013
|
+
"delete_sweep",
|
1014
|
+
"indeterminate_check_box",
|
1015
|
+
"first_page",
|
1016
|
+
"view_timeline",
|
1017
|
+
"keyboard_double_arrow_up",
|
1018
|
+
"settings_backup_restore",
|
1019
|
+
"sync_problem",
|
1020
|
+
"assistant_navigation",
|
1021
|
+
"arrow_drop_down_circle",
|
1022
|
+
"heart_plus",
|
1023
|
+
"clear_all",
|
1024
|
+
"density_medium",
|
1025
|
+
"expand",
|
1026
|
+
"arrow_outward",
|
1027
|
+
"subdirectory_arrow_right",
|
1028
|
+
"filter_alt_off",
|
1029
|
+
"last_page",
|
1030
|
+
"unfold_less",
|
1031
|
+
"download_done",
|
1032
|
+
"123",
|
1033
|
+
"swipe_left",
|
1034
|
+
"saved_search",
|
1035
|
+
"system_update_alt",
|
1036
|
+
"output",
|
1037
|
+
"search_off",
|
1038
|
+
"place_item",
|
1039
|
+
"javascript",
|
1040
|
+
"swipe_up",
|
1041
|
+
"maximize",
|
1042
|
+
"select_all",
|
1043
|
+
"fit_screen",
|
1044
|
+
"check_small",
|
1045
|
+
"hide_source",
|
1046
|
+
"dynamic_form",
|
1047
|
+
"swipe_right",
|
1048
|
+
"browse_gallery",
|
1049
|
+
"switch_access_shortcut_add",
|
1050
|
+
"density_small",
|
1051
|
+
"css",
|
1052
|
+
"assistant_direction",
|
1053
|
+
"move_up",
|
1054
|
+
"youtube_searched_for",
|
1055
|
+
"data_thresholding",
|
1056
|
+
"swap_horizontal_circle",
|
1057
|
+
"install_mobile",
|
1058
|
+
"abc",
|
1059
|
+
"move_down",
|
1060
|
+
"dataset_linked",
|
1061
|
+
"restore_from_trash",
|
1062
|
+
"browse_activity",
|
1063
|
+
"enable",
|
1064
|
+
"install_desktop",
|
1065
|
+
"keyboard_command_key",
|
1066
|
+
"view_kanban",
|
1067
|
+
"reply_all",
|
1068
|
+
"switch_left",
|
1069
|
+
"compress",
|
1070
|
+
"star_rate",
|
1071
|
+
"swipe_down",
|
1072
|
+
"apps_outage",
|
1073
|
+
"swap_vertical_circle",
|
1074
|
+
"remove_done",
|
1075
|
+
"filter_list_off",
|
1076
|
+
"hide",
|
1077
|
+
"sync_disabled",
|
1078
|
+
"swipe_vertical",
|
1079
|
+
"more_up",
|
1080
|
+
"switch_right",
|
1081
|
+
"keyboard_control_key",
|
1082
|
+
"pinch",
|
1083
|
+
"tab",
|
1084
|
+
"eject",
|
1085
|
+
"key_off",
|
1086
|
+
"php",
|
1087
|
+
"view_cozy",
|
1088
|
+
"subdirectory_arrow_left",
|
1089
|
+
"transcribe",
|
1090
|
+
"do_not_disturb_off",
|
1091
|
+
"send_time_extension",
|
1092
|
+
"width_normal",
|
1093
|
+
"view_comfy_alt",
|
1094
|
+
"heart_minus",
|
1095
|
+
"share_reviews",
|
1096
|
+
"progress_activity",
|
1097
|
+
"cycle",
|
1098
|
+
"width_full",
|
1099
|
+
"unfold_more_double",
|
1100
|
+
"file_download_off",
|
1101
|
+
"view_compact_alt",
|
1102
|
+
"extension_off",
|
1103
|
+
"open_in_new_off",
|
1104
|
+
"check_indeterminate_small",
|
1105
|
+
"more_down",
|
1106
|
+
"width_wide",
|
1107
|
+
"repartition",
|
1108
|
+
"density_large",
|
1109
|
+
"swipe_left_alt",
|
1110
|
+
"swipe_down_alt",
|
1111
|
+
"expand_content",
|
1112
|
+
"swipe_right_alt",
|
1113
|
+
"swipe_up_alt",
|
1114
|
+
"unfold_less_double",
|
1115
|
+
"keyboard_option_key",
|
1116
|
+
"tab_unselected",
|
1117
|
+
"hls",
|
1118
|
+
"hls_off",
|
1119
|
+
"deployed_code",
|
1120
|
+
"expand_all",
|
1121
|
+
"file_upload_off",
|
1122
|
+
"rebase",
|
1123
|
+
"quick_reference_all",
|
1124
|
+
"collapse_all",
|
1125
|
+
"rebase_edit",
|
1126
|
+
"arrow_split",
|
1127
|
+
"acute",
|
1128
|
+
"stat_0",
|
1129
|
+
"stack",
|
1130
|
+
"stacks",
|
1131
|
+
"data_check",
|
1132
|
+
"empty_dashboard",
|
1133
|
+
"prompt_suggestion",
|
1134
|
+
"collapse_content",
|
1135
|
+
"arrow_upward_alt",
|
1136
|
+
"clock_loader_60",
|
1137
|
+
"page_info",
|
1138
|
+
"left_click",
|
1139
|
+
"arrow_downward_alt",
|
1140
|
+
"quick_reference",
|
1141
|
+
"sync_saved_locally",
|
1142
|
+
"captive_portal",
|
1143
|
+
"rule_settings",
|
1144
|
+
"data_alert",
|
1145
|
+
"switches",
|
1146
|
+
"point_scan",
|
1147
|
+
"arrow_insert",
|
1148
|
+
"search_check",
|
1149
|
+
"heart_check",
|
1150
|
+
"linked_services",
|
1151
|
+
"clock_loader_40",
|
1152
|
+
"directory_sync",
|
1153
|
+
"unknown_med",
|
1154
|
+
"question_exchange",
|
1155
|
+
"clock_loader_10",
|
1156
|
+
"expand_circle_right",
|
1157
|
+
"move_item",
|
1158
|
+
"stack_star",
|
1159
|
+
"step",
|
1160
|
+
"data_info_alert",
|
1161
|
+
"side_navigation",
|
1162
|
+
"cards",
|
1163
|
+
"steppers",
|
1164
|
+
"preliminary",
|
1165
|
+
"action_key",
|
1166
|
+
"drag_pan",
|
1167
|
+
"arrow_left_alt",
|
1168
|
+
"bubble",
|
1169
|
+
"stat_3",
|
1170
|
+
"deployed_code_update",
|
1171
|
+
"expand_circle_up",
|
1172
|
+
"new_window",
|
1173
|
+
"sweep",
|
1174
|
+
"clock_loader_80",
|
1175
|
+
"right_panel_open",
|
1176
|
+
"star_rate_half",
|
1177
|
+
"stat_minus_1",
|
1178
|
+
"close_small",
|
1179
|
+
"event_list",
|
1180
|
+
"left_panel_open",
|
1181
|
+
"right_panel_close",
|
1182
|
+
"expansion_panels",
|
1183
|
+
"dialogs",
|
1184
|
+
"patient_list",
|
1185
|
+
"pip",
|
1186
|
+
"resize",
|
1187
|
+
"responsive_layout",
|
1188
|
+
"toolbar",
|
1189
|
+
"clock_loader_90",
|
1190
|
+
"highlight_mouse_cursor",
|
1191
|
+
"chevron_forward",
|
1192
|
+
"share_windows",
|
1193
|
+
"all_match",
|
1194
|
+
"clock_loader_20",
|
1195
|
+
"recenter",
|
1196
|
+
"arrow_range",
|
1197
|
+
"input_circle",
|
1198
|
+
"left_panel_close",
|
1199
|
+
"page_control",
|
1200
|
+
"move_group",
|
1201
|
+
"unknown_5",
|
1202
|
+
"radio_button_partial",
|
1203
|
+
"category_search",
|
1204
|
+
"key_vertical",
|
1205
|
+
"step_over",
|
1206
|
+
"capture",
|
1207
|
+
"settings_heart",
|
1208
|
+
"deployed_code_account",
|
1209
|
+
"stat_2",
|
1210
|
+
"sliders",
|
1211
|
+
"stat_1",
|
1212
|
+
"search_check_2",
|
1213
|
+
"stat_minus_2",
|
1214
|
+
"right_click",
|
1215
|
+
"step_into",
|
1216
|
+
"tab_duplicate",
|
1217
|
+
"drag_click",
|
1218
|
+
"download_2",
|
1219
|
+
"dropdown",
|
1220
|
+
"open_run",
|
1221
|
+
"chronic",
|
1222
|
+
"arrow_and_edge",
|
1223
|
+
"bottom_navigation",
|
1224
|
+
"buttons_alt",
|
1225
|
+
"magnification_small",
|
1226
|
+
"partner_reports",
|
1227
|
+
"stat_minus_3",
|
1228
|
+
"tab_close",
|
1229
|
+
"deployed_code_history",
|
1230
|
+
"chip_extraction",
|
1231
|
+
"magnification_large",
|
1232
|
+
"bottom_panel_open",
|
1233
|
+
"iframe",
|
1234
|
+
"pip_exit",
|
1235
|
+
"arrow_upload_progress",
|
1236
|
+
"chevron_backward",
|
1237
|
+
"file_export",
|
1238
|
+
"stack_off",
|
1239
|
+
"tab_group",
|
1240
|
+
"subheader",
|
1241
|
+
"switch_access_2",
|
1242
|
+
"add_2",
|
1243
|
+
"bottom_drawer",
|
1244
|
+
"shelf_position",
|
1245
|
+
"step_out",
|
1246
|
+
"app_badging",
|
1247
|
+
"arrows_outward",
|
1248
|
+
"go_to_line",
|
1249
|
+
"toast",
|
1250
|
+
"open_in_new_down",
|
1251
|
+
"tabs",
|
1252
|
+
"upload_2",
|
1253
|
+
"arrow_back_2",
|
1254
|
+
"reopen_window",
|
1255
|
+
"switch_access",
|
1256
|
+
"arrow_upload_ready",
|
1257
|
+
"error_med",
|
1258
|
+
"bottom_sheets",
|
1259
|
+
"bubbles",
|
1260
|
+
"modeling",
|
1261
|
+
"amend",
|
1262
|
+
"jump_to_element",
|
1263
|
+
"output_circle",
|
1264
|
+
"deployed_code_alert",
|
1265
|
+
"shelf_auto_hide",
|
1266
|
+
"bottom_panel_close",
|
1267
|
+
"bottom_right_click",
|
1268
|
+
"chips",
|
1269
|
+
"move_selection_left",
|
1270
|
+
"tab_move",
|
1271
|
+
"arrow_or_edge",
|
1272
|
+
"arrow_top_left",
|
1273
|
+
"arrow_top_right",
|
1274
|
+
"back_to_tab",
|
1275
|
+
"ripples",
|
1276
|
+
"arrows_input",
|
1277
|
+
"borg",
|
1278
|
+
"tab_recent",
|
1279
|
+
"move_selection_right",
|
1280
|
+
"tab_new_right",
|
1281
|
+
"multimodal_hand_eye",
|
1282
|
+
"iframe_off",
|
1283
|
+
"position_bottom_left",
|
1284
|
+
"position_bottom_right",
|
1285
|
+
"rotate_auto",
|
1286
|
+
"desktop_landscape",
|
1287
|
+
"filter_arrow_right",
|
1288
|
+
"position_top_right",
|
1289
|
+
"sync_desktop",
|
1290
|
+
"tab_inactive",
|
1291
|
+
"arrows_output",
|
1292
|
+
"file_json",
|
1293
|
+
"float_landscape_2",
|
1294
|
+
"move_selection_up",
|
1295
|
+
"highlight_keyboard_focus",
|
1296
|
+
"tab_close_right",
|
1297
|
+
"bottom_app_bar",
|
1298
|
+
"splitscreen_portrait",
|
1299
|
+
"widget_width",
|
1300
|
+
"highlight_text_cursor",
|
1301
|
+
"splitscreen_landscape",
|
1302
|
+
"tab_close_inactive",
|
1303
|
+
"widget_medium",
|
1304
|
+
"arrow_menu_close",
|
1305
|
+
"desktop_landscape_add",
|
1306
|
+
"fullscreen_portrait",
|
1307
|
+
"tile_small",
|
1308
|
+
"arrow_menu_open",
|
1309
|
+
"desktop_portrait",
|
1310
|
+
"hourglass_arrow_down",
|
1311
|
+
"move_selection_down",
|
1312
|
+
"sync_arrow_down",
|
1313
|
+
"thermostat_arrow_down",
|
1314
|
+
"tile_large",
|
1315
|
+
"widget_small",
|
1316
|
+
"float_portrait_2",
|
1317
|
+
"tile_medium",
|
1318
|
+
"view_apps",
|
1319
|
+
"clock_arrow_up",
|
1320
|
+
"hourglass_arrow_up",
|
1321
|
+
"timer_arrow_down",
|
1322
|
+
"timer_arrow_up",
|
1323
|
+
"clock_arrow_down",
|
1324
|
+
"edit_arrow_down",
|
1325
|
+
"edit_arrow_up",
|
1326
|
+
"sync_arrow_up",
|
1327
|
+
"thermostat_arrow_up",
|
1328
|
+
"person",
|
1329
|
+
"group",
|
1330
|
+
"share",
|
1331
|
+
"thumb_up",
|
1332
|
+
"groups",
|
1333
|
+
"public",
|
1334
|
+
"person_add",
|
1335
|
+
"handshake",
|
1336
|
+
"support_agent",
|
1337
|
+
"face",
|
1338
|
+
"sentiment_satisfied",
|
1339
|
+
"rocket_launch",
|
1340
|
+
"group_add",
|
1341
|
+
"workspace_premium",
|
1342
|
+
"psychology",
|
1343
|
+
"diversity_3",
|
1344
|
+
"emoji_objects",
|
1345
|
+
"travel_explore",
|
1346
|
+
"water_drop",
|
1347
|
+
"eco",
|
1348
|
+
"pets",
|
1349
|
+
"mood",
|
1350
|
+
"sunny",
|
1351
|
+
"sentiment_dissatisfied",
|
1352
|
+
"health_and_safety",
|
1353
|
+
"quiz",
|
1354
|
+
"sentiment_very_satisfied",
|
1355
|
+
"military_tech",
|
1356
|
+
"thumb_down",
|
1357
|
+
"gavel",
|
1358
|
+
"recycling",
|
1359
|
+
"diamond",
|
1360
|
+
"monitor_heart",
|
1361
|
+
"emoji_people",
|
1362
|
+
"diversity_1",
|
1363
|
+
"workspaces",
|
1364
|
+
"vaccines",
|
1365
|
+
"recommend",
|
1366
|
+
"compost",
|
1367
|
+
"forest",
|
1368
|
+
"waving_hand",
|
1369
|
+
"wc",
|
1370
|
+
"person_remove",
|
1371
|
+
"sentiment_neutral",
|
1372
|
+
"psychology_alt",
|
1373
|
+
"sentiment_very_dissatisfied",
|
1374
|
+
"diversity_2",
|
1375
|
+
"medication",
|
1376
|
+
"group_work",
|
1377
|
+
"front_hand",
|
1378
|
+
"cruelty_free",
|
1379
|
+
"man",
|
1380
|
+
"medical_information",
|
1381
|
+
"add_reaction",
|
1382
|
+
"rocket",
|
1383
|
+
"coronavirus",
|
1384
|
+
"female",
|
1385
|
+
"potted_plant",
|
1386
|
+
"rainy",
|
1387
|
+
"emoji_nature",
|
1388
|
+
"cookie",
|
1389
|
+
"person_off",
|
1390
|
+
"connect_without_contact",
|
1391
|
+
"bedtime",
|
1392
|
+
"groups_2",
|
1393
|
+
"woman",
|
1394
|
+
"thumbs_up_down",
|
1395
|
+
"mood_bad",
|
1396
|
+
"communication",
|
1397
|
+
"male",
|
1398
|
+
"solar_power",
|
1399
|
+
"thunderstorm",
|
1400
|
+
"partly_cloudy_day",
|
1401
|
+
"masks",
|
1402
|
+
"sentiment_extremely_dissatisfied",
|
1403
|
+
"heart_broken",
|
1404
|
+
"hive",
|
1405
|
+
"clear_day",
|
1406
|
+
"boy",
|
1407
|
+
"whatshot",
|
1408
|
+
"cloudy_snowing",
|
1409
|
+
"emoji_food_beverage",
|
1410
|
+
"wind_power",
|
1411
|
+
"emoji_transportation",
|
1412
|
+
"face_6",
|
1413
|
+
"elderly",
|
1414
|
+
"reduce_capacity",
|
1415
|
+
"emoji_events",
|
1416
|
+
"face_3",
|
1417
|
+
"groups_3",
|
1418
|
+
"sick",
|
1419
|
+
"skull",
|
1420
|
+
"pregnant_woman",
|
1421
|
+
"face_4",
|
1422
|
+
"bloodtype",
|
1423
|
+
"egg",
|
1424
|
+
"group_remove",
|
1425
|
+
"medication_liquid",
|
1426
|
+
"co2",
|
1427
|
+
"weight",
|
1428
|
+
"follow_the_signs",
|
1429
|
+
"oil_barrel",
|
1430
|
+
"elderly_woman",
|
1431
|
+
"transgender",
|
1432
|
+
"sanitizer",
|
1433
|
+
"clean_hands",
|
1434
|
+
"partner_exchange",
|
1435
|
+
"person_2",
|
1436
|
+
"public_off",
|
1437
|
+
"bring_your_own_ip",
|
1438
|
+
"face_2",
|
1439
|
+
"routine",
|
1440
|
+
"south_america",
|
1441
|
+
"social_distance",
|
1442
|
+
"sign_language",
|
1443
|
+
"sunny_snowing",
|
1444
|
+
"identity_platform",
|
1445
|
+
"emoji_symbols",
|
1446
|
+
"flood",
|
1447
|
+
"face_5",
|
1448
|
+
"garden_cart",
|
1449
|
+
"egg_alt",
|
1450
|
+
"cyclone",
|
1451
|
+
"girl",
|
1452
|
+
"person_4",
|
1453
|
+
"dentistry",
|
1454
|
+
"tsunami",
|
1455
|
+
"group_off",
|
1456
|
+
"severe_cold",
|
1457
|
+
"outdoor_garden",
|
1458
|
+
"partly_cloudy_night",
|
1459
|
+
"snowing",
|
1460
|
+
"person_3",
|
1461
|
+
"tornado",
|
1462
|
+
"safety_divider",
|
1463
|
+
"vaping_rooms",
|
1464
|
+
"foggy",
|
1465
|
+
"landslide",
|
1466
|
+
"woman_2",
|
1467
|
+
"no_adult_content",
|
1468
|
+
"volcano",
|
1469
|
+
"blind",
|
1470
|
+
"man_2",
|
1471
|
+
"6_ft_apart",
|
1472
|
+
"18_up_rating",
|
1473
|
+
"not_accessible",
|
1474
|
+
"vape_free",
|
1475
|
+
"man_4",
|
1476
|
+
"radiology",
|
1477
|
+
"globe",
|
1478
|
+
"cognition",
|
1479
|
+
"rib_cage",
|
1480
|
+
"hand_bones",
|
1481
|
+
"tactic",
|
1482
|
+
"bedtime_off",
|
1483
|
+
"rheumatology",
|
1484
|
+
"psychiatry",
|
1485
|
+
"person_raised_hand",
|
1486
|
+
"communities",
|
1487
|
+
"man_3",
|
1488
|
+
"neurology",
|
1489
|
+
"orthopedics",
|
1490
|
+
"diversity_4",
|
1491
|
+
"eyeglasses",
|
1492
|
+
"strategy",
|
1493
|
+
"social_leaderboard",
|
1494
|
+
"skeleton",
|
1495
|
+
"tibia",
|
1496
|
+
"labs",
|
1497
|
+
"digital_wellbeing",
|
1498
|
+
"humerus",
|
1499
|
+
"foot_bones",
|
1500
|
+
"agender",
|
1501
|
+
"femur",
|
1502
|
+
"tibia_alt",
|
1503
|
+
"footprint",
|
1504
|
+
"femur_alt",
|
1505
|
+
"globe_asia",
|
1506
|
+
"editor_choice",
|
1507
|
+
"crowdsource",
|
1508
|
+
"sentiment_sad",
|
1509
|
+
"vital_signs",
|
1510
|
+
"humerus_alt",
|
1511
|
+
"person_alert",
|
1512
|
+
"nutrition",
|
1513
|
+
"mystery",
|
1514
|
+
"ulna_radius",
|
1515
|
+
"ulna_radius_alt",
|
1516
|
+
"specific_gravity",
|
1517
|
+
"person_check",
|
1518
|
+
"stethoscope",
|
1519
|
+
"breastfeeding",
|
1520
|
+
"chess",
|
1521
|
+
"demography",
|
1522
|
+
"clinical_notes",
|
1523
|
+
"raven",
|
1524
|
+
"conditions",
|
1525
|
+
"sentiment_calm",
|
1526
|
+
"globe_uk",
|
1527
|
+
"sentiment_excited",
|
1528
|
+
"domino_mask",
|
1529
|
+
"cookie_off",
|
1530
|
+
"destruction",
|
1531
|
+
"pill",
|
1532
|
+
"sentiment_stressed",
|
1533
|
+
"cardiology",
|
1534
|
+
"lab_research",
|
1535
|
+
"taunt",
|
1536
|
+
"mountain_flag",
|
1537
|
+
"deceased",
|
1538
|
+
"genetics",
|
1539
|
+
"folded_hands",
|
1540
|
+
"crossword",
|
1541
|
+
"weather_hail",
|
1542
|
+
"earthquake",
|
1543
|
+
"share_off",
|
1544
|
+
"emoticon",
|
1545
|
+
"kid_star",
|
1546
|
+
"weather_mix",
|
1547
|
+
"altitude",
|
1548
|
+
"family_star",
|
1549
|
+
"prescriptions",
|
1550
|
+
"barefoot",
|
1551
|
+
"cardio_load",
|
1552
|
+
"sentiment_frustrated",
|
1553
|
+
"cheer",
|
1554
|
+
"falling",
|
1555
|
+
"home_health",
|
1556
|
+
"glucose",
|
1557
|
+
"guardian",
|
1558
|
+
"playing_cards",
|
1559
|
+
"not_accessible_forward",
|
1560
|
+
"sentiment_content",
|
1561
|
+
"bomb",
|
1562
|
+
"person_cancel",
|
1563
|
+
"cognition_2",
|
1564
|
+
"pulse_alert",
|
1565
|
+
"wrist",
|
1566
|
+
"comic_bubble",
|
1567
|
+
"microbiology",
|
1568
|
+
"lab_panel",
|
1569
|
+
"person_apron",
|
1570
|
+
"helicopter",
|
1571
|
+
"orbit",
|
1572
|
+
"recent_patient",
|
1573
|
+
"comedy_mask",
|
1574
|
+
"ent",
|
1575
|
+
"explosion",
|
1576
|
+
"mist",
|
1577
|
+
"sword_rose",
|
1578
|
+
"blood_pressure",
|
1579
|
+
"snowing_heavy",
|
1580
|
+
"pulmonology",
|
1581
|
+
"sentiment_worried",
|
1582
|
+
"water_bottle",
|
1583
|
+
"metabolism",
|
1584
|
+
"water_lux",
|
1585
|
+
"prayer_times",
|
1586
|
+
"chess_pawn",
|
1587
|
+
"manga",
|
1588
|
+
"rainy_snow",
|
1589
|
+
"simulation",
|
1590
|
+
"siren",
|
1591
|
+
"owl",
|
1592
|
+
"pediatrics",
|
1593
|
+
"dew_point",
|
1594
|
+
"allergy",
|
1595
|
+
"dermatology",
|
1596
|
+
"candle",
|
1597
|
+
"brick",
|
1598
|
+
"infrared",
|
1599
|
+
"nephrology",
|
1600
|
+
"pregnancy",
|
1601
|
+
"rainy_light",
|
1602
|
+
"stethoscope_check",
|
1603
|
+
"syringe",
|
1604
|
+
"allergies",
|
1605
|
+
"body_system",
|
1606
|
+
"globe_book",
|
1607
|
+
"gynecology",
|
1608
|
+
"ophthalmology",
|
1609
|
+
"oxygen_saturation",
|
1610
|
+
"ward",
|
1611
|
+
"humidity_percentage",
|
1612
|
+
"oncology",
|
1613
|
+
"oral_disease",
|
1614
|
+
"poker_chip",
|
1615
|
+
"rainy_heavy",
|
1616
|
+
"symptoms",
|
1617
|
+
"water_ph",
|
1618
|
+
"congenital",
|
1619
|
+
"mixture_med",
|
1620
|
+
"water_do",
|
1621
|
+
"respiratory_rate",
|
1622
|
+
"surgical",
|
1623
|
+
"hematology",
|
1624
|
+
"moving_beds",
|
1625
|
+
"outpatient",
|
1626
|
+
"planet",
|
1627
|
+
"short_stay",
|
1628
|
+
"water_bottle_large",
|
1629
|
+
"crown",
|
1630
|
+
"endocrinology",
|
1631
|
+
"face_shake",
|
1632
|
+
"gastroenterology",
|
1633
|
+
"square_dot",
|
1634
|
+
"stethoscope_arrow",
|
1635
|
+
"water_voc",
|
1636
|
+
"wounds_injuries",
|
1637
|
+
"admin_meds",
|
1638
|
+
"body_fat",
|
1639
|
+
"immunology",
|
1640
|
+
"medical_mask",
|
1641
|
+
"procedure",
|
1642
|
+
"water_ec",
|
1643
|
+
"water_orp",
|
1644
|
+
"face_nod",
|
1645
|
+
"fluid_balance",
|
1646
|
+
"outpatient_med",
|
1647
|
+
"salinity",
|
1648
|
+
"siren_check",
|
1649
|
+
"face_down",
|
1650
|
+
"face_right",
|
1651
|
+
"inpatient",
|
1652
|
+
"pill_off",
|
1653
|
+
"total_dissolved_solids",
|
1654
|
+
"urology",
|
1655
|
+
"fluid",
|
1656
|
+
"fluid_med",
|
1657
|
+
"siren_open",
|
1658
|
+
"siren_question",
|
1659
|
+
"skull_list",
|
1660
|
+
"face_left",
|
1661
|
+
"face_up",
|
1662
|
+
"account_circle",
|
1663
|
+
"info",
|
1664
|
+
"visibility",
|
1665
|
+
"calendar_month",
|
1666
|
+
"schedule",
|
1667
|
+
"warning",
|
1668
|
+
"help",
|
1669
|
+
"language",
|
1670
|
+
"lock",
|
1671
|
+
"error",
|
1672
|
+
"visibility_off",
|
1673
|
+
"verified",
|
1674
|
+
"manage_accounts",
|
1675
|
+
"history",
|
1676
|
+
"task_alt",
|
1677
|
+
"event",
|
1678
|
+
"bookmark",
|
1679
|
+
"calendar_today",
|
1680
|
+
"lightbulb",
|
1681
|
+
"question_mark",
|
1682
|
+
"fingerprint",
|
1683
|
+
"category",
|
1684
|
+
"update",
|
1685
|
+
"priority_high",
|
1686
|
+
"code",
|
1687
|
+
"lock_open",
|
1688
|
+
"build",
|
1689
|
+
"date_range",
|
1690
|
+
"supervisor_account",
|
1691
|
+
"upload_file",
|
1692
|
+
"ads_click",
|
1693
|
+
"event_available",
|
1694
|
+
"power_settings_new",
|
1695
|
+
"touch_app",
|
1696
|
+
"today",
|
1697
|
+
"bug_report",
|
1698
|
+
"pending",
|
1699
|
+
"preview",
|
1700
|
+
"new_releases",
|
1701
|
+
"stars",
|
1702
|
+
"celebration",
|
1703
|
+
"translate",
|
1704
|
+
"account_box",
|
1705
|
+
"how_to_reg",
|
1706
|
+
"alarm",
|
1707
|
+
"edit_calendar",
|
1708
|
+
"edit_square",
|
1709
|
+
"label",
|
1710
|
+
"extension",
|
1711
|
+
"record_voice_over",
|
1712
|
+
"web",
|
1713
|
+
"rate_review",
|
1714
|
+
"event_note",
|
1715
|
+
"hourglass_empty",
|
1716
|
+
"published_with_changes",
|
1717
|
+
"support",
|
1718
|
+
"notification_important",
|
1719
|
+
"accessibility_new",
|
1720
|
+
"help_center",
|
1721
|
+
"bookmarks",
|
1722
|
+
"pan_tool_alt",
|
1723
|
+
"dangerous",
|
1724
|
+
"all_inclusive",
|
1725
|
+
"supervised_user_circle",
|
1726
|
+
"interests",
|
1727
|
+
"collections_bookmark",
|
1728
|
+
"rule",
|
1729
|
+
"priority",
|
1730
|
+
"change_history",
|
1731
|
+
"event_upcoming",
|
1732
|
+
"api",
|
1733
|
+
"build_circle",
|
1734
|
+
"wysiwyg",
|
1735
|
+
"pan_tool",
|
1736
|
+
"hotel_class",
|
1737
|
+
"circle_notifications",
|
1738
|
+
"manage_history",
|
1739
|
+
"web_asset",
|
1740
|
+
"upgrade",
|
1741
|
+
"accessible",
|
1742
|
+
"model_training",
|
1743
|
+
"input",
|
1744
|
+
"bookmark_add",
|
1745
|
+
"lock_reset",
|
1746
|
+
"event_busy",
|
1747
|
+
"more_time",
|
1748
|
+
"flutter_dash",
|
1749
|
+
"backup",
|
1750
|
+
"save_as",
|
1751
|
+
"home_app_logo",
|
1752
|
+
"pageview",
|
1753
|
+
"accessibility",
|
1754
|
+
"alarm_on",
|
1755
|
+
"dynamic_feed",
|
1756
|
+
"label_important",
|
1757
|
+
"approval",
|
1758
|
+
"perm_contact_calendar",
|
1759
|
+
"square_foot",
|
1760
|
+
"history_toggle_off",
|
1761
|
+
"swipe",
|
1762
|
+
"more",
|
1763
|
+
"component_exchange",
|
1764
|
+
"event_repeat",
|
1765
|
+
"bookmark_added",
|
1766
|
+
"app_shortcut",
|
1767
|
+
"unpublished",
|
1768
|
+
"open_in_browser",
|
1769
|
+
"notification_add",
|
1770
|
+
"offline_bolt",
|
1771
|
+
"no_accounts",
|
1772
|
+
"free_cancellation",
|
1773
|
+
"running_with_errors",
|
1774
|
+
"background_replace",
|
1775
|
+
"webhook",
|
1776
|
+
"anchor",
|
1777
|
+
"3d_rotation",
|
1778
|
+
"lock_person",
|
1779
|
+
"lock_clock",
|
1780
|
+
"new_label",
|
1781
|
+
"accessible_forward",
|
1782
|
+
"auto_delete",
|
1783
|
+
"add_alert",
|
1784
|
+
"domain_verification",
|
1785
|
+
"gesture",
|
1786
|
+
"target",
|
1787
|
+
"outbound",
|
1788
|
+
"feedback",
|
1789
|
+
"hand_gesture",
|
1790
|
+
"online_prediction",
|
1791
|
+
"chrome_reader_mode",
|
1792
|
+
"settings_power",
|
1793
|
+
"lightbulb_circle",
|
1794
|
+
"find_replace",
|
1795
|
+
"edit_notifications",
|
1796
|
+
"offline_pin",
|
1797
|
+
"http",
|
1798
|
+
"backup_table",
|
1799
|
+
"ad_units",
|
1800
|
+
"manufacturing",
|
1801
|
+
"wifi_protected_setup",
|
1802
|
+
"alarm_add",
|
1803
|
+
"bookmark_remove",
|
1804
|
+
"pinch_zoom_out",
|
1805
|
+
"on_device_training",
|
1806
|
+
"snooze",
|
1807
|
+
"batch_prediction",
|
1808
|
+
"code_off",
|
1809
|
+
"commit",
|
1810
|
+
"pinch_zoom_in",
|
1811
|
+
"web_traffic",
|
1812
|
+
"hourglass_disabled",
|
1813
|
+
"settings_overscan",
|
1814
|
+
"youtube_activity",
|
1815
|
+
"polymer",
|
1816
|
+
"logo_dev",
|
1817
|
+
"keep",
|
1818
|
+
"voice_over_off",
|
1819
|
+
"time_auto",
|
1820
|
+
"update_disabled",
|
1821
|
+
"alarm_off",
|
1822
|
+
"timer_10_alt_1",
|
1823
|
+
"person_add_disabled",
|
1824
|
+
"code_blocks",
|
1825
|
+
"rounded_corner",
|
1826
|
+
"label_off",
|
1827
|
+
"timer_3_alt_1",
|
1828
|
+
"arrow_selector_tool",
|
1829
|
+
"all_out",
|
1830
|
+
"rsvp",
|
1831
|
+
"web_asset_off",
|
1832
|
+
"pin_invoke",
|
1833
|
+
"pin_end",
|
1834
|
+
"approval_delegation",
|
1835
|
+
"developer_guide",
|
1836
|
+
"contacts_product",
|
1837
|
+
"lists",
|
1838
|
+
"problem",
|
1839
|
+
"license",
|
1840
|
+
"award_star",
|
1841
|
+
"feature_search",
|
1842
|
+
"reminder",
|
1843
|
+
"release_alert",
|
1844
|
+
"sdk",
|
1845
|
+
"user_attributes",
|
1846
|
+
"keep_off",
|
1847
|
+
"flutter",
|
1848
|
+
"browse",
|
1849
|
+
"lock_open_right",
|
1850
|
+
"hourglass",
|
1851
|
+
"calendar_clock",
|
1852
|
+
"select_window",
|
1853
|
+
"visibility_lock",
|
1854
|
+
"data_loss_prevention",
|
1855
|
+
"settings_account_box",
|
1856
|
+
"ad_group",
|
1857
|
+
"pan_zoom",
|
1858
|
+
"search_hands_free",
|
1859
|
+
"ad",
|
1860
|
+
"indeterminate_question_box",
|
1861
|
+
"delete_history",
|
1862
|
+
"info_i",
|
1863
|
+
"keep_public",
|
1864
|
+
"person_edit",
|
1865
|
+
"gesture_select",
|
1866
|
+
"circles_ext",
|
1867
|
+
"shift",
|
1868
|
+
"draft_orders",
|
1869
|
+
"select_window_2",
|
1870
|
+
"account_child_invert",
|
1871
|
+
"add_ad",
|
1872
|
+
"account_child",
|
1873
|
+
"account_circle_off",
|
1874
|
+
"watch_screentime",
|
1875
|
+
"ad_group_off",
|
1876
|
+
"trackpad_input",
|
1877
|
+
"bookmark_manager",
|
1878
|
+
"shadow",
|
1879
|
+
"circles",
|
1880
|
+
"help_clinic",
|
1881
|
+
"search_activity",
|
1882
|
+
"timer_pause",
|
1883
|
+
"water_lock",
|
1884
|
+
"select_window_off",
|
1885
|
+
"history_off",
|
1886
|
+
"shadow_add",
|
1887
|
+
"ad_off",
|
1888
|
+
"unlicense",
|
1889
|
+
"bookmark_flag",
|
1890
|
+
"preview_off",
|
1891
|
+
"scrollable_header",
|
1892
|
+
"touch_long",
|
1893
|
+
"alarm_smart_wake",
|
1894
|
+
"bookmark_star",
|
1895
|
+
"fingerprint_off",
|
1896
|
+
"shift_lock",
|
1897
|
+
"warning_off",
|
1898
|
+
"supervised_user_circle_off",
|
1899
|
+
"timer_play",
|
1900
|
+
"book_ribbon",
|
1901
|
+
"measuring_tape",
|
1902
|
+
"pinboard",
|
1903
|
+
"shadow_minus",
|
1904
|
+
"bookmark_check",
|
1905
|
+
"bookmark_heart",
|
1906
|
+
"domain_verification_off",
|
1907
|
+
"history_2",
|
1908
|
+
"offline_pin_off",
|
1909
|
+
"bookmark_bag",
|
1910
|
+
"hourglass_pause",
|
1911
|
+
"pinboard_unread",
|
1912
|
+
"power_settings_circle",
|
1913
|
+
"hand_gesture_off",
|
1914
|
+
"shift_lock_off",
|
1915
|
+
"touch_triple",
|
1916
|
+
"trackpad_input_3",
|
1917
|
+
"touch_double",
|
1918
|
+
"trackpad_input_2",
|
1919
|
+
"mail",
|
1920
|
+
"call",
|
1921
|
+
"notifications",
|
1922
|
+
"send",
|
1923
|
+
"chat",
|
1924
|
+
"link",
|
1925
|
+
"forum",
|
1926
|
+
"inventory_2",
|
1927
|
+
"chat_bubble",
|
1928
|
+
"phone_in_talk",
|
1929
|
+
"contact_support",
|
1930
|
+
"notifications_active",
|
1931
|
+
"alternate_email",
|
1932
|
+
"sms",
|
1933
|
+
"comment",
|
1934
|
+
"hub",
|
1935
|
+
"person_search",
|
1936
|
+
"import_contacts",
|
1937
|
+
"contacts",
|
1938
|
+
"contact_mail",
|
1939
|
+
"live_help",
|
1940
|
+
"forward_to_inbox",
|
1941
|
+
"reviews",
|
1942
|
+
"mark_email_unread",
|
1943
|
+
"lan",
|
1944
|
+
"hourglass_top",
|
1945
|
+
"mode_comment",
|
1946
|
+
"contact_phone",
|
1947
|
+
"inbox",
|
1948
|
+
"drafts",
|
1949
|
+
"outgoing_mail",
|
1950
|
+
"hourglass_bottom",
|
1951
|
+
"mark_email_read",
|
1952
|
+
"link_off",
|
1953
|
+
"calendar_add_on",
|
1954
|
+
"add_comment",
|
1955
|
+
"g_translate",
|
1956
|
+
"phone_enabled",
|
1957
|
+
"speaker_notes",
|
1958
|
+
"perm_phone_msg",
|
1959
|
+
"co_present",
|
1960
|
+
"notifications_off",
|
1961
|
+
"call_end",
|
1962
|
+
"topic",
|
1963
|
+
"cell_tower",
|
1964
|
+
"mark_chat_unread",
|
1965
|
+
"network_intelligence",
|
1966
|
+
"schedule_send",
|
1967
|
+
"satellite_alt",
|
1968
|
+
"dialpad",
|
1969
|
+
"call_made",
|
1970
|
+
"mark_unread_chat_alt",
|
1971
|
+
"unarchive",
|
1972
|
+
"3p",
|
1973
|
+
"cancel_presentation",
|
1974
|
+
"move_to_inbox",
|
1975
|
+
"mark_as_unread",
|
1976
|
+
"next_plan",
|
1977
|
+
"attach_email",
|
1978
|
+
"phonelink_ring",
|
1979
|
+
"unsubscribe",
|
1980
|
+
"phone_callback",
|
1981
|
+
"present_to_all",
|
1982
|
+
"call_received",
|
1983
|
+
"settings_phone",
|
1984
|
+
"call_split",
|
1985
|
+
"add_call",
|
1986
|
+
"markunread_mailbox",
|
1987
|
+
"all_inbox",
|
1988
|
+
"voice_chat",
|
1989
|
+
"phone_forwarded",
|
1990
|
+
"mail_lock",
|
1991
|
+
"voicemail",
|
1992
|
+
"attribution",
|
1993
|
+
"contact_emergency",
|
1994
|
+
"mark_chat_read",
|
1995
|
+
"duo",
|
1996
|
+
"upcoming",
|
1997
|
+
"phone_disabled",
|
1998
|
+
"swap_calls",
|
1999
|
+
"outbox",
|
2000
|
+
"phonelink_lock",
|
2001
|
+
"picture_in_picture_alt",
|
2002
|
+
"spoke",
|
2003
|
+
"cancel_schedule_send",
|
2004
|
+
"ring_volume",
|
2005
|
+
"quickreply",
|
2006
|
+
"notifications_paused",
|
2007
|
+
"chat_add_on",
|
2008
|
+
"phone_missed",
|
2009
|
+
"comment_bank",
|
2010
|
+
"picture_in_picture",
|
2011
|
+
"send_and_archive",
|
2012
|
+
"phonelink_erase",
|
2013
|
+
"threat_intelligence",
|
2014
|
+
"settings_bluetooth",
|
2015
|
+
"comments_disabled",
|
2016
|
+
"video_chat",
|
2017
|
+
"score",
|
2018
|
+
"pause_presentation",
|
2019
|
+
"speaker_phone",
|
2020
|
+
"call_merge",
|
2021
|
+
"cell_wifi",
|
2022
|
+
"speaker_notes_off",
|
2023
|
+
"auto_read_play",
|
2024
|
+
"mms",
|
2025
|
+
"play_for_work",
|
2026
|
+
"call_missed_outgoing",
|
2027
|
+
"call_missed",
|
2028
|
+
"wifi_channel",
|
2029
|
+
"calendar_apps_script",
|
2030
|
+
"phone_paused",
|
2031
|
+
"rtt",
|
2032
|
+
"auto_read_pause",
|
2033
|
+
"wifi_calling",
|
2034
|
+
"phone_locked",
|
2035
|
+
"chat_apps_script",
|
2036
|
+
"dialer_sip",
|
2037
|
+
"sip",
|
2038
|
+
"nat",
|
2039
|
+
"phone_bluetooth_speaker",
|
2040
|
+
"e911_avatar",
|
2041
|
+
"inbox_customize",
|
2042
|
+
"stacked_email",
|
2043
|
+
"chat_info",
|
2044
|
+
"for_you",
|
2045
|
+
"tooltip",
|
2046
|
+
"business_messages",
|
2047
|
+
"chat_error",
|
2048
|
+
"notifications_unread",
|
2049
|
+
"chat_paste_go",
|
2050
|
+
"thread_unread",
|
2051
|
+
"notification_multiple",
|
2052
|
+
"ods",
|
2053
|
+
"call_quality",
|
2054
|
+
"group_search",
|
2055
|
+
"call_log",
|
2056
|
+
"network_intelligence_history",
|
2057
|
+
"picture_in_picture_small",
|
2058
|
+
"mail_off",
|
2059
|
+
"network_intelligence_update",
|
2060
|
+
"network_manage",
|
2061
|
+
"stacked_inbox",
|
2062
|
+
"outbox_alt",
|
2063
|
+
"tooltip_2",
|
2064
|
+
"network_intel_node",
|
2065
|
+
"picture_in_picture_off",
|
2066
|
+
"wifi_add",
|
2067
|
+
"picture_in_picture_center",
|
2068
|
+
"signal_cellular_add",
|
2069
|
+
"odt",
|
2070
|
+
"phonelink_ring_off",
|
2071
|
+
"picture_in_picture_medium",
|
2072
|
+
"wifi_proxy",
|
2073
|
+
"inbox_text",
|
2074
|
+
"picture_in_picture_large",
|
2075
|
+
"picture_in_picture_mobile",
|
2076
|
+
"chat_paste_go_2",
|
2077
|
+
"edit",
|
2078
|
+
"photo_camera",
|
2079
|
+
"image",
|
2080
|
+
"tune",
|
2081
|
+
"timer",
|
2082
|
+
"picture_as_pdf",
|
2083
|
+
"circle",
|
2084
|
+
"palette",
|
2085
|
+
"add_a_photo",
|
2086
|
+
"photo_library",
|
2087
|
+
"auto_stories",
|
2088
|
+
"add_photo_alternate",
|
2089
|
+
"brush",
|
2090
|
+
"imagesmode",
|
2091
|
+
"nature",
|
2092
|
+
"flash_on",
|
2093
|
+
"wb_sunny",
|
2094
|
+
"camera",
|
2095
|
+
"looks_one",
|
2096
|
+
"straighten",
|
2097
|
+
"landscape",
|
2098
|
+
"timelapse",
|
2099
|
+
"slideshow",
|
2100
|
+
"crop_square",
|
2101
|
+
"rotate_right",
|
2102
|
+
"grid_on",
|
2103
|
+
"aspect_ratio",
|
2104
|
+
"adjust",
|
2105
|
+
"crop_free",
|
2106
|
+
"style",
|
2107
|
+
"brightness_6",
|
2108
|
+
"photo",
|
2109
|
+
"image_search",
|
2110
|
+
"nature_people",
|
2111
|
+
"filter_vintage",
|
2112
|
+
"crop",
|
2113
|
+
"blur_on",
|
2114
|
+
"center_focus_strong",
|
2115
|
+
"compare",
|
2116
|
+
"contrast",
|
2117
|
+
"looks_two",
|
2118
|
+
"flare",
|
2119
|
+
"rotate_left",
|
2120
|
+
"colorize",
|
2121
|
+
"wb_incandescent",
|
2122
|
+
"filter_none",
|
2123
|
+
"wb_twilight",
|
2124
|
+
"filter_drama",
|
2125
|
+
"healing",
|
2126
|
+
"looks_3",
|
2127
|
+
"animation",
|
2128
|
+
"brightness_5",
|
2129
|
+
"invert_colors",
|
2130
|
+
"incomplete_circle",
|
2131
|
+
"opacity",
|
2132
|
+
"broken_image",
|
2133
|
+
"filter_center_focus",
|
2134
|
+
"auto_awesome_motion",
|
2135
|
+
"brightness_4",
|
2136
|
+
"center_focus_weak",
|
2137
|
+
"flip",
|
2138
|
+
"flash_off",
|
2139
|
+
"flip_camera_android",
|
2140
|
+
"web_stories",
|
2141
|
+
"mic_external_on",
|
2142
|
+
"lens_blur",
|
2143
|
+
"no_photography",
|
2144
|
+
"grain",
|
2145
|
+
"details",
|
2146
|
+
"panorama",
|
2147
|
+
"gif_box",
|
2148
|
+
"flaky",
|
2149
|
+
"exposure_plus_1",
|
2150
|
+
"loupe",
|
2151
|
+
"dehaze",
|
2152
|
+
"settings_brightness",
|
2153
|
+
"auto_awesome_mosaic",
|
2154
|
+
"looks_4",
|
2155
|
+
"texture",
|
2156
|
+
"filter_1",
|
2157
|
+
"flip_camera_ios",
|
2158
|
+
"timer_off",
|
2159
|
+
"filter",
|
2160
|
+
"brightness_1",
|
2161
|
+
"transform",
|
2162
|
+
"view_compact",
|
2163
|
+
"hide_image",
|
2164
|
+
"control_point_duplicate",
|
2165
|
+
"brightness_7",
|
2166
|
+
"photo_camera_front",
|
2167
|
+
"photo_album",
|
2168
|
+
"linked_camera",
|
2169
|
+
"view_comfy",
|
2170
|
+
"crop_16_9",
|
2171
|
+
"looks",
|
2172
|
+
"looks_5",
|
2173
|
+
"gif",
|
2174
|
+
"exposure",
|
2175
|
+
"rotate_90_degrees_ccw",
|
2176
|
+
"filter_hdr",
|
2177
|
+
"leak_add",
|
2178
|
+
"hdr_strong",
|
2179
|
+
"brightness_3",
|
2180
|
+
"hdr_auto",
|
2181
|
+
"gradient",
|
2182
|
+
"crop_7_5",
|
2183
|
+
"vrpano",
|
2184
|
+
"crop_portrait",
|
2185
|
+
"motion_photos_auto",
|
2186
|
+
"camera_roll",
|
2187
|
+
"blur_circular",
|
2188
|
+
"rotate_90_degrees_cw",
|
2189
|
+
"photo_size_select_small",
|
2190
|
+
"brightness_2",
|
2191
|
+
"camera_front",
|
2192
|
+
"shutter_speed",
|
2193
|
+
"looks_6",
|
2194
|
+
"flash_auto",
|
2195
|
+
"deblur",
|
2196
|
+
"filter_2",
|
2197
|
+
"crop_landscape",
|
2198
|
+
"filter_tilt_shift",
|
2199
|
+
"monochrome_photos",
|
2200
|
+
"motion_photos_paused",
|
2201
|
+
"night_sight_auto",
|
2202
|
+
"crop_5_4",
|
2203
|
+
"hdr_weak",
|
2204
|
+
"tonality",
|
2205
|
+
"filter_4",
|
2206
|
+
"photo_frame",
|
2207
|
+
"crop_rotate",
|
2208
|
+
"filter_3",
|
2209
|
+
"crop_3_2",
|
2210
|
+
"ev_shadow",
|
2211
|
+
"fluorescent",
|
2212
|
+
"exposure_zero",
|
2213
|
+
"switch_camera",
|
2214
|
+
"photo_size_select_large",
|
2215
|
+
"raw_on",
|
2216
|
+
"macro_off",
|
2217
|
+
"party_mode",
|
2218
|
+
"filter_frames",
|
2219
|
+
"face_retouching_off",
|
2220
|
+
"motion_blur",
|
2221
|
+
"motion_photos_off",
|
2222
|
+
"filter_b_and_w",
|
2223
|
+
"panorama_horizontal",
|
2224
|
+
"blur_linear",
|
2225
|
+
"exposure_neg_1",
|
2226
|
+
"exposure_plus_2",
|
2227
|
+
"photo_camera_back",
|
2228
|
+
"wb_iridescent",
|
2229
|
+
"hdr_on",
|
2230
|
+
"switch_video",
|
2231
|
+
"blur_medium",
|
2232
|
+
"filter_5",
|
2233
|
+
"invert_colors_off",
|
2234
|
+
"panorama_photosphere",
|
2235
|
+
"filter_7",
|
2236
|
+
"burst_mode",
|
2237
|
+
"timer_10",
|
2238
|
+
"grid_off",
|
2239
|
+
"filter_9_plus",
|
2240
|
+
"filter_8",
|
2241
|
+
"blur_short",
|
2242
|
+
"dirty_lens",
|
2243
|
+
"filter_9",
|
2244
|
+
"wb_shade",
|
2245
|
+
"trail_length",
|
2246
|
+
"timer_3",
|
2247
|
+
"filter_6",
|
2248
|
+
"no_flash",
|
2249
|
+
"image_aspect_ratio",
|
2250
|
+
"vignette",
|
2251
|
+
"exposure_neg_2",
|
2252
|
+
"leak_remove",
|
2253
|
+
"blur_off",
|
2254
|
+
"60fps_select",
|
2255
|
+
"perm_camera_mic",
|
2256
|
+
"30fps_select",
|
2257
|
+
"camera_rear",
|
2258
|
+
"trail_length_medium",
|
2259
|
+
"mic_external_off",
|
2260
|
+
"trail_length_short",
|
2261
|
+
"panorama_vertical",
|
2262
|
+
"night_sight_auto_off",
|
2263
|
+
"autofps_select",
|
2264
|
+
"hdr_off",
|
2265
|
+
"hdr_enhanced_select",
|
2266
|
+
"panorama_wide_angle",
|
2267
|
+
"mp",
|
2268
|
+
"hdr_on_select",
|
2269
|
+
"24mp",
|
2270
|
+
"22mp",
|
2271
|
+
"gallery_thumbnail",
|
2272
|
+
"10mp",
|
2273
|
+
"12mp",
|
2274
|
+
"18mp",
|
2275
|
+
"hdr_plus",
|
2276
|
+
"hdr_auto_select",
|
2277
|
+
"wb_auto",
|
2278
|
+
"hevc",
|
2279
|
+
"raw_off",
|
2280
|
+
"9mp",
|
2281
|
+
"13mp",
|
2282
|
+
"5mp",
|
2283
|
+
"19mp",
|
2284
|
+
"20mp",
|
2285
|
+
"7mp",
|
2286
|
+
"15mp",
|
2287
|
+
"23mp",
|
2288
|
+
"3mp",
|
2289
|
+
"hdr_off_select",
|
2290
|
+
"16mp",
|
2291
|
+
"2mp",
|
2292
|
+
"8mp",
|
2293
|
+
"14mp",
|
2294
|
+
"6mp",
|
2295
|
+
"masked_transitions",
|
2296
|
+
"11mp",
|
2297
|
+
"21mp",
|
2298
|
+
"4mp",
|
2299
|
+
"17mp",
|
2300
|
+
"settings_b_roll",
|
2301
|
+
"photo_prints",
|
2302
|
+
"motion_photos_on",
|
2303
|
+
"vr180_create2d",
|
2304
|
+
"settings_photo_camera",
|
2305
|
+
"settings_video_camera",
|
2306
|
+
"planner_banner_ad_pt",
|
2307
|
+
"photo_auto_merge",
|
2308
|
+
"reset_settings",
|
2309
|
+
"unknown_2",
|
2310
|
+
"settings_night_sight",
|
2311
|
+
"settings_timelapse",
|
2312
|
+
"landscape_2",
|
2313
|
+
"50mp",
|
2314
|
+
"crop_9_16",
|
2315
|
+
"settings_panorama",
|
2316
|
+
"motion_mode",
|
2317
|
+
"settings_cinematic_blur",
|
2318
|
+
"transition_dissolve",
|
2319
|
+
"transition_fade",
|
2320
|
+
"transition_slide",
|
2321
|
+
"vr180_create2d_off",
|
2322
|
+
"background_grid_small",
|
2323
|
+
"macro_auto",
|
2324
|
+
"settings_motion_mode",
|
2325
|
+
"transition_push",
|
2326
|
+
"filter_retrolux",
|
2327
|
+
"gif_2",
|
2328
|
+
"high_res",
|
2329
|
+
"settings_slow_motion",
|
2330
|
+
"background_dot_large",
|
2331
|
+
"high_density",
|
2332
|
+
"reset_focus",
|
2333
|
+
"shutter_speed_add",
|
2334
|
+
"texture_add",
|
2335
|
+
"texture_minus",
|
2336
|
+
"background_dot_small",
|
2337
|
+
"shutter_speed_minus",
|
2338
|
+
"view_real_size",
|
2339
|
+
"landscape_2_off",
|
2340
|
+
"low_density",
|
2341
|
+
"motion_play",
|
2342
|
+
"reset_iso",
|
2343
|
+
"contrast_rtl_off",
|
2344
|
+
"reset_brightness",
|
2345
|
+
"transition_chop",
|
2346
|
+
"contrast_circle",
|
2347
|
+
"ev_shadow_add",
|
2348
|
+
"file_png",
|
2349
|
+
"masked_transitions_add",
|
2350
|
+
"ev_shadow_minus",
|
2351
|
+
"hdr_plus_off",
|
2352
|
+
"24fps_select",
|
2353
|
+
"contrast_square",
|
2354
|
+
"reset_shadow",
|
2355
|
+
"reset_shutter_speed",
|
2356
|
+
"reset_white_balance",
|
2357
|
+
"shopping_cart",
|
2358
|
+
"payments",
|
2359
|
+
"shopping_bag",
|
2360
|
+
"monitoring",
|
2361
|
+
"credit_card",
|
2362
|
+
"attach_money",
|
2363
|
+
"receipt_long",
|
2364
|
+
"database",
|
2365
|
+
"trending_up",
|
2366
|
+
"storefront",
|
2367
|
+
"sell",
|
2368
|
+
"account_balance",
|
2369
|
+
"work",
|
2370
|
+
"paid",
|
2371
|
+
"analytics",
|
2372
|
+
"account_balance_wallet",
|
2373
|
+
"query_stats",
|
2374
|
+
"savings",
|
2375
|
+
"store",
|
2376
|
+
"calculate",
|
2377
|
+
"bar_chart",
|
2378
|
+
"qr_code_scanner",
|
2379
|
+
"account_tree",
|
2380
|
+
"add_shopping_cart",
|
2381
|
+
"redeem",
|
2382
|
+
"receipt",
|
2383
|
+
"currency_exchange",
|
2384
|
+
"trending_flat",
|
2385
|
+
"shopping_basket",
|
2386
|
+
"qr_code_2",
|
2387
|
+
"domain",
|
2388
|
+
"precision_manufacturing",
|
2389
|
+
"qr_code",
|
2390
|
+
"leaderboard",
|
2391
|
+
"timeline",
|
2392
|
+
"corporate_fare",
|
2393
|
+
"insert_chart",
|
2394
|
+
"wallet",
|
2395
|
+
"show_chart",
|
2396
|
+
"currency_rupee",
|
2397
|
+
"meeting_room",
|
2398
|
+
"work_history",
|
2399
|
+
"euro",
|
2400
|
+
"credit_score",
|
2401
|
+
"barcode_scanner",
|
2402
|
+
"loyalty",
|
2403
|
+
"pie_chart",
|
2404
|
+
"conversion_path",
|
2405
|
+
"copyright",
|
2406
|
+
"barcode",
|
2407
|
+
"trending_down",
|
2408
|
+
"track_changes",
|
2409
|
+
"price_check",
|
2410
|
+
"schema",
|
2411
|
+
"euro_symbol",
|
2412
|
+
"add_business",
|
2413
|
+
"add_card",
|
2414
|
+
"card_membership",
|
2415
|
+
"currency_bitcoin",
|
2416
|
+
"price_change",
|
2417
|
+
"donut_large",
|
2418
|
+
"production_quantity_limits",
|
2419
|
+
"tenancy",
|
2420
|
+
"data_exploration",
|
2421
|
+
"bubble_chart",
|
2422
|
+
"donut_small",
|
2423
|
+
"contactless",
|
2424
|
+
"money",
|
2425
|
+
"stacked_line_chart",
|
2426
|
+
"stacked_bar_chart",
|
2427
|
+
"money_off",
|
2428
|
+
"toll",
|
2429
|
+
"cases",
|
2430
|
+
"currency_yen",
|
2431
|
+
"area_chart",
|
2432
|
+
"currency_pound",
|
2433
|
+
"atr",
|
2434
|
+
"remove_shopping_cart",
|
2435
|
+
"room_preferences",
|
2436
|
+
"add_chart",
|
2437
|
+
"shop",
|
2438
|
+
"domain_add",
|
2439
|
+
"grouped_bar_chart",
|
2440
|
+
"card_travel",
|
2441
|
+
"scatter_plot",
|
2442
|
+
"legend_toggle",
|
2443
|
+
"mediation",
|
2444
|
+
"credit_card_off",
|
2445
|
+
"ssid_chart",
|
2446
|
+
"candlestick_chart",
|
2447
|
+
"waterfall_chart",
|
2448
|
+
"domain_disabled",
|
2449
|
+
"full_stacked_bar_chart",
|
2450
|
+
"currency_ruble",
|
2451
|
+
"strikethrough_s",
|
2452
|
+
"shop_two",
|
2453
|
+
"atm",
|
2454
|
+
"next_week",
|
2455
|
+
"multiline_chart",
|
2456
|
+
"troubleshoot",
|
2457
|
+
"shoppingmode",
|
2458
|
+
"currency_lira",
|
2459
|
+
"currency_yuan",
|
2460
|
+
"no_meeting_room",
|
2461
|
+
"currency_franc",
|
2462
|
+
"finance_mode",
|
2463
|
+
"search_insights",
|
2464
|
+
"bar_chart_4_bars",
|
2465
|
+
"data_table",
|
2466
|
+
"finance",
|
2467
|
+
"source_environment",
|
2468
|
+
"orders",
|
2469
|
+
"network_node",
|
2470
|
+
"chart_data",
|
2471
|
+
"enterprise",
|
2472
|
+
"bid_landscape",
|
2473
|
+
"family_history",
|
2474
|
+
"podium",
|
2475
|
+
"conveyor_belt",
|
2476
|
+
"contactless_off",
|
2477
|
+
"universal_currency_alt",
|
2478
|
+
"flowsheet",
|
2479
|
+
"planner_review",
|
2480
|
+
"order_approve",
|
2481
|
+
"quick_reorder",
|
2482
|
+
"box",
|
2483
|
+
"checkbook",
|
2484
|
+
"energy",
|
2485
|
+
"universal_currency",
|
2486
|
+
"send_money",
|
2487
|
+
"mintmark",
|
2488
|
+
"mitre",
|
2489
|
+
"flowchart",
|
2490
|
+
"forklift",
|
2491
|
+
"currency_rupee_circle",
|
2492
|
+
"money_bag",
|
2493
|
+
"inactive_order",
|
2494
|
+
"qr_code_2_add",
|
2495
|
+
"trolley",
|
2496
|
+
"credit_card_clock",
|
2497
|
+
"credit_card_heart",
|
2498
|
+
"delivery_truck_bolt",
|
2499
|
+
"front_loader",
|
2500
|
+
"work_alert",
|
2501
|
+
"box_add",
|
2502
|
+
"pallet",
|
2503
|
+
"delivery_truck_speed",
|
2504
|
+
"work_update",
|
2505
|
+
"database_search",
|
2506
|
+
"conversion_path_off",
|
2507
|
+
"order_play",
|
2508
|
+
"barcode_reader",
|
2509
|
+
"bid_landscape_disabled",
|
2510
|
+
"credit_card_gear",
|
2511
|
+
"database_upload",
|
2512
|
+
"enterprise_off",
|
2513
|
+
"graph_2",
|
2514
|
+
"graph_3",
|
2515
|
+
"box_edit",
|
2516
|
+
"cards_star",
|
2517
|
+
"bar_chart_off",
|
2518
|
+
"database_off",
|
2519
|
+
"graph_5",
|
2520
|
+
"graph_4",
|
2521
|
+
"shopping_bag_speed",
|
2522
|
+
"graph_1",
|
2523
|
+
"receipt_long_off",
|
2524
|
+
"graph_6",
|
2525
|
+
"shopping_cart_off",
|
2526
|
+
"upi_pay",
|
2527
|
+
"pin_drop",
|
2528
|
+
"location_on",
|
2529
|
+
"map",
|
2530
|
+
"home_pin",
|
2531
|
+
"explore",
|
2532
|
+
"restaurant",
|
2533
|
+
"flag",
|
2534
|
+
"my_location",
|
2535
|
+
"local_fire_department",
|
2536
|
+
"person_pin_circle",
|
2537
|
+
"local_mall",
|
2538
|
+
"near_me",
|
2539
|
+
"where_to_vote",
|
2540
|
+
"business_center",
|
2541
|
+
"east",
|
2542
|
+
"handyman",
|
2543
|
+
"factory",
|
2544
|
+
"local_library",
|
2545
|
+
"medical_services",
|
2546
|
+
"home_work",
|
2547
|
+
"layers",
|
2548
|
+
"local_activity",
|
2549
|
+
"emergency",
|
2550
|
+
"share_location",
|
2551
|
+
"north_east",
|
2552
|
+
"add_location",
|
2553
|
+
"fastfood",
|
2554
|
+
"navigation",
|
2555
|
+
"warehouse",
|
2556
|
+
"person_pin",
|
2557
|
+
"local_parking",
|
2558
|
+
"home_repair_service",
|
2559
|
+
"local_police",
|
2560
|
+
"local_hospital",
|
2561
|
+
"south",
|
2562
|
+
"zoom_out_map",
|
2563
|
+
"location_searching",
|
2564
|
+
"local_florist",
|
2565
|
+
"crisis_alert",
|
2566
|
+
"location_away",
|
2567
|
+
"park",
|
2568
|
+
"west",
|
2569
|
+
"local_gas_station",
|
2570
|
+
"maps_ugc",
|
2571
|
+
"cleaning_services",
|
2572
|
+
"360",
|
2573
|
+
"local_atm",
|
2574
|
+
"package",
|
2575
|
+
"flag_circle",
|
2576
|
+
"electrical_services",
|
2577
|
+
"north",
|
2578
|
+
"add_location_alt",
|
2579
|
+
"directions",
|
2580
|
+
"fmd_bad",
|
2581
|
+
"theater_comedy",
|
2582
|
+
"location_home",
|
2583
|
+
"local_pizza",
|
2584
|
+
"local_drink",
|
2585
|
+
"alt_route",
|
2586
|
+
"not_listed_location",
|
2587
|
+
"beenhere",
|
2588
|
+
"wine_bar",
|
2589
|
+
"local_post_office",
|
2590
|
+
"signpost",
|
2591
|
+
"local_convenience_store",
|
2592
|
+
"traffic",
|
2593
|
+
"tour",
|
2594
|
+
"trip_origin",
|
2595
|
+
"church",
|
2596
|
+
"local_laundry_service",
|
2597
|
+
"safety_check",
|
2598
|
+
"takeout_dining",
|
2599
|
+
"ev_station",
|
2600
|
+
"moving",
|
2601
|
+
"zoom_in_map",
|
2602
|
+
"pest_control",
|
2603
|
+
"soup_kitchen",
|
2604
|
+
"stadium",
|
2605
|
+
"location_off",
|
2606
|
+
"transfer_within_a_station",
|
2607
|
+
"connecting_airports",
|
2608
|
+
"edit_location",
|
2609
|
+
"wrong_location",
|
2610
|
+
"multiple_stop",
|
2611
|
+
"plumbing",
|
2612
|
+
"mode_of_travel",
|
2613
|
+
"minor_crash",
|
2614
|
+
"south_east",
|
2615
|
+
"add_road",
|
2616
|
+
"local_pharmacy",
|
2617
|
+
"fire_truck",
|
2618
|
+
"castle",
|
2619
|
+
"dry_cleaning",
|
2620
|
+
"set_meal",
|
2621
|
+
"baby_changing_station",
|
2622
|
+
"edit_location_alt",
|
2623
|
+
"north_west",
|
2624
|
+
"layers_clear",
|
2625
|
+
"mosque",
|
2626
|
+
"edit_attributes",
|
2627
|
+
"local_car_wash",
|
2628
|
+
"run_circle",
|
2629
|
+
"transit_enterexit",
|
2630
|
+
"satellite",
|
2631
|
+
"sos",
|
2632
|
+
"edit_road",
|
2633
|
+
"south_west",
|
2634
|
+
"streetview",
|
2635
|
+
"kebab_dining",
|
2636
|
+
"add_home",
|
2637
|
+
"airline_stops",
|
2638
|
+
"fire_hydrant",
|
2639
|
+
"local_see",
|
2640
|
+
"assist_walker",
|
2641
|
+
"remove_road",
|
2642
|
+
"add_home_work",
|
2643
|
+
"no_meals",
|
2644
|
+
"flight_class",
|
2645
|
+
"fort",
|
2646
|
+
"synagogue",
|
2647
|
+
"location_disabled",
|
2648
|
+
"temple_buddhist",
|
2649
|
+
"compass_calibration",
|
2650
|
+
"temple_hindu",
|
2651
|
+
"pest_control_rodent",
|
2652
|
+
"explore_off",
|
2653
|
+
"directions_alt",
|
2654
|
+
"near_me_disabled",
|
2655
|
+
"package_2",
|
2656
|
+
"pergola",
|
2657
|
+
"directions_off",
|
2658
|
+
"things_to_do",
|
2659
|
+
"pet_supplies",
|
2660
|
+
"flag_2",
|
2661
|
+
"share_eta",
|
2662
|
+
"explore_nearby",
|
2663
|
+
"directions_alt_off",
|
2664
|
+
"universal_local",
|
2665
|
+
"file_map",
|
2666
|
+
"flag_check",
|
2667
|
+
"add_triangle",
|
2668
|
+
"moved_location",
|
2669
|
+
"moving_ministry",
|
2670
|
+
"multiple_airports",
|
2671
|
+
"move_location",
|
2672
|
+
"move",
|
2673
|
+
"safety_check_off",
|
2674
|
+
"file_map_stack",
|
2675
|
+
"map_search",
|
2676
|
+
"description",
|
2677
|
+
"content_copy",
|
2678
|
+
"dashboard",
|
2679
|
+
"edit_note",
|
2680
|
+
"menu_book",
|
2681
|
+
"grid_view",
|
2682
|
+
"list",
|
2683
|
+
"folder",
|
2684
|
+
"list_alt",
|
2685
|
+
"inventory",
|
2686
|
+
"folder_open",
|
2687
|
+
"article",
|
2688
|
+
"fact_check",
|
2689
|
+
"attach_file",
|
2690
|
+
"format_list_bulleted",
|
2691
|
+
"assignment",
|
2692
|
+
"task",
|
2693
|
+
"checklist",
|
2694
|
+
"cloud",
|
2695
|
+
"cloud_upload",
|
2696
|
+
"draft",
|
2697
|
+
"summarize",
|
2698
|
+
"draw",
|
2699
|
+
"newspaper",
|
2700
|
+
"file_copy",
|
2701
|
+
"view_list",
|
2702
|
+
"note_add",
|
2703
|
+
"design_services",
|
2704
|
+
"book",
|
2705
|
+
"border_color",
|
2706
|
+
"history_edu",
|
2707
|
+
"format_quote",
|
2708
|
+
"pending_actions",
|
2709
|
+
"post_add",
|
2710
|
+
"request_quote",
|
2711
|
+
"cloud_download",
|
2712
|
+
"drag_handle",
|
2713
|
+
"table",
|
2714
|
+
"contact_page",
|
2715
|
+
"archive",
|
2716
|
+
"space_dashboard",
|
2717
|
+
"content_paste",
|
2718
|
+
"percent",
|
2719
|
+
"attachment",
|
2720
|
+
"assignment_ind",
|
2721
|
+
"format_list_numbered",
|
2722
|
+
"assignment_turned_in",
|
2723
|
+
"tag",
|
2724
|
+
"table_chart",
|
2725
|
+
"text_fields",
|
2726
|
+
"dashboard_customize",
|
2727
|
+
"integration_instructions",
|
2728
|
+
"sticky_note_2",
|
2729
|
+
"format_bold",
|
2730
|
+
"find_in_page",
|
2731
|
+
"reorder",
|
2732
|
+
"text_snippet",
|
2733
|
+
"document_scanner",
|
2734
|
+
"docs",
|
2735
|
+
"checklist_rtl",
|
2736
|
+
"edit_document",
|
2737
|
+
"note_alt",
|
2738
|
+
"cloud_sync",
|
2739
|
+
"cloud_done",
|
2740
|
+
"table_rows",
|
2741
|
+
"perm_media",
|
2742
|
+
"title",
|
2743
|
+
"data_object",
|
2744
|
+
"notes",
|
2745
|
+
"table_view",
|
2746
|
+
"content_cut",
|
2747
|
+
"subject",
|
2748
|
+
"functions",
|
2749
|
+
"content_paste_search",
|
2750
|
+
"format_italic",
|
2751
|
+
"folder_shared",
|
2752
|
+
"format_color_fill",
|
2753
|
+
"horizontal_rule",
|
2754
|
+
"plagiarism",
|
2755
|
+
"file_present",
|
2756
|
+
"cloud_off",
|
2757
|
+
"folder_copy",
|
2758
|
+
"format_paint",
|
2759
|
+
"team_dashboard",
|
2760
|
+
"view_column",
|
2761
|
+
"difference",
|
2762
|
+
"ballot",
|
2763
|
+
"add_link",
|
2764
|
+
"format_align_left",
|
2765
|
+
"view_agenda",
|
2766
|
+
"read_more",
|
2767
|
+
"format_size",
|
2768
|
+
"toc",
|
2769
|
+
"format_underlined",
|
2770
|
+
"vertical_align_top",
|
2771
|
+
"height",
|
2772
|
+
"vertical_align_bottom",
|
2773
|
+
"copy_all",
|
2774
|
+
"view_week",
|
2775
|
+
"format_color_text",
|
2776
|
+
"low_priority",
|
2777
|
+
"drive_folder_upload",
|
2778
|
+
"assignment_late",
|
2779
|
+
"drive_file_move",
|
2780
|
+
"view_module",
|
2781
|
+
"segment",
|
2782
|
+
"assignment_return",
|
2783
|
+
"folder_special",
|
2784
|
+
"format_align_center",
|
2785
|
+
"square",
|
2786
|
+
"polyline",
|
2787
|
+
"calendar_view_month",
|
2788
|
+
"folder_zip",
|
2789
|
+
"breaking_news_alt_1",
|
2790
|
+
"format_align_right",
|
2791
|
+
"grading",
|
2792
|
+
"linear_scale",
|
2793
|
+
"view_headline",
|
2794
|
+
"edit_off",
|
2795
|
+
"view_quilt",
|
2796
|
+
"view_carousel",
|
2797
|
+
"text_increase",
|
2798
|
+
"request_page",
|
2799
|
+
"text_format",
|
2800
|
+
"view_sidebar",
|
2801
|
+
"pages",
|
2802
|
+
"hexagon",
|
2803
|
+
"format_align_justify",
|
2804
|
+
"docs_add_on",
|
2805
|
+
"numbers",
|
2806
|
+
"calendar_view_week",
|
2807
|
+
"format_shapes",
|
2808
|
+
"folder_delete",
|
2809
|
+
"add_to_drive",
|
2810
|
+
"forms_add_on",
|
2811
|
+
"imagesearch_roller",
|
2812
|
+
"video_file",
|
2813
|
+
"calendar_view_day",
|
2814
|
+
"font_download",
|
2815
|
+
"format_list_numbered_rtl",
|
2816
|
+
"join_inner",
|
2817
|
+
"content_paste_go",
|
2818
|
+
"restore_page",
|
2819
|
+
"vertical_split",
|
2820
|
+
"rectangle",
|
2821
|
+
"rule_folder",
|
2822
|
+
"format_color_reset",
|
2823
|
+
"cloud_circle",
|
2824
|
+
"spellcheck",
|
2825
|
+
"view_stream",
|
2826
|
+
"files",
|
2827
|
+
"format_indent_increase",
|
2828
|
+
"data_array",
|
2829
|
+
"counter_1",
|
2830
|
+
"assignment_returned",
|
2831
|
+
"pivot_table_chart",
|
2832
|
+
"text_decrease",
|
2833
|
+
"align_horizontal_left",
|
2834
|
+
"merge_type",
|
2835
|
+
"short_text",
|
2836
|
+
"pentagon",
|
2837
|
+
"space_bar",
|
2838
|
+
"vertical_align_center",
|
2839
|
+
"deselect",
|
2840
|
+
"join_left",
|
2841
|
+
"format_strikethrough",
|
2842
|
+
"view_day",
|
2843
|
+
"flip_to_front",
|
2844
|
+
"shape_line",
|
2845
|
+
"border_all",
|
2846
|
+
"format_line_spacing",
|
2847
|
+
"line_weight",
|
2848
|
+
"horizontal_split",
|
2849
|
+
"join_right",
|
2850
|
+
"format_indent_decrease",
|
2851
|
+
"function",
|
2852
|
+
"subtitles_off",
|
2853
|
+
"align_horizontal_center",
|
2854
|
+
"snippet_folder",
|
2855
|
+
"format_clear",
|
2856
|
+
"align_vertical_bottom",
|
2857
|
+
"glyphs",
|
2858
|
+
"folder_off",
|
2859
|
+
"align_horizontal_right",
|
2860
|
+
"ink_eraser",
|
2861
|
+
"content_paste_off",
|
2862
|
+
"vertical_distribute",
|
2863
|
+
"insert_page_break",
|
2864
|
+
"line_axis",
|
2865
|
+
"horizontal_distribute",
|
2866
|
+
"line_style",
|
2867
|
+
"ink_pen",
|
2868
|
+
"superscript",
|
2869
|
+
"align_vertical_center",
|
2870
|
+
"flip_to_back",
|
2871
|
+
"align_vertical_top",
|
2872
|
+
"clarify",
|
2873
|
+
"newsmode",
|
2874
|
+
"wrap_text",
|
2875
|
+
"margin",
|
2876
|
+
"view_array",
|
2877
|
+
"subscript",
|
2878
|
+
"ink_highlighter",
|
2879
|
+
"counter_2",
|
2880
|
+
"equal",
|
2881
|
+
"border_style",
|
2882
|
+
"border_clear",
|
2883
|
+
"news",
|
2884
|
+
"frame_inspect",
|
2885
|
+
"note_stack",
|
2886
|
+
"amp_stories",
|
2887
|
+
"contract",
|
2888
|
+
"border_outer",
|
2889
|
+
"finance_chip",
|
2890
|
+
"type_specimen",
|
2891
|
+
"text_rotate_vertical",
|
2892
|
+
"padding",
|
2893
|
+
"forms_apps_script",
|
2894
|
+
"counter_3",
|
2895
|
+
"overview",
|
2896
|
+
"contract_edit",
|
2897
|
+
"border_vertical",
|
2898
|
+
"full_coverage",
|
2899
|
+
"text_rotation_none",
|
2900
|
+
"docs_apps_script",
|
2901
|
+
"format_textdirection_l_to_r",
|
2902
|
+
"assignment_add",
|
2903
|
+
"signature",
|
2904
|
+
"join",
|
2905
|
+
"format_overline",
|
2906
|
+
"export_notes",
|
2907
|
+
"border_horizontal",
|
2908
|
+
"font_download_off",
|
2909
|
+
"note_stack_add",
|
2910
|
+
"format_textdirection_r_to_l",
|
2911
|
+
"text_rotation_angleup",
|
2912
|
+
"border_bottom",
|
2913
|
+
"border_left",
|
2914
|
+
"border_top",
|
2915
|
+
"dictionary",
|
2916
|
+
"text_rotation_down",
|
2917
|
+
"border_inner",
|
2918
|
+
"colors",
|
2919
|
+
"format_h1",
|
2920
|
+
"text_rotation_angledown",
|
2921
|
+
"csv",
|
2922
|
+
"text_rotate_up",
|
2923
|
+
"unknown_document",
|
2924
|
+
"lab_profile",
|
2925
|
+
"breaking_news",
|
2926
|
+
"border_right",
|
2927
|
+
"view_column_2",
|
2928
|
+
"file_save",
|
2929
|
+
"counter_4",
|
2930
|
+
"slide_library",
|
2931
|
+
"diagnosis",
|
2932
|
+
"draw_abstract",
|
2933
|
+
"rubric",
|
2934
|
+
"add_notes",
|
2935
|
+
"ink_selection",
|
2936
|
+
"grid_guides",
|
2937
|
+
"automation",
|
2938
|
+
"folder_limited",
|
2939
|
+
"select",
|
2940
|
+
"format_underlined_squiggle",
|
2941
|
+
"book_2",
|
2942
|
+
"format_list_bulleted_add",
|
2943
|
+
"format_ink_highlighter",
|
2944
|
+
"match_case",
|
2945
|
+
"variables",
|
2946
|
+
"format_h2",
|
2947
|
+
"voting_chip",
|
2948
|
+
"format_paragraph",
|
2949
|
+
"process_chart",
|
2950
|
+
"remove_selection",
|
2951
|
+
"reset_image",
|
2952
|
+
"frame_source",
|
2953
|
+
"format_image_left",
|
2954
|
+
"stock_media",
|
2955
|
+
"folder_managed",
|
2956
|
+
"shapes",
|
2957
|
+
"counter_5",
|
2958
|
+
"text_fields_alt",
|
2959
|
+
"asterisk",
|
2960
|
+
"smb_share",
|
2961
|
+
"ink_marker",
|
2962
|
+
"scan_delete",
|
2963
|
+
"table_rows_narrow",
|
2964
|
+
"article_shortcut",
|
2965
|
+
"format_image_right",
|
2966
|
+
"lasso_select",
|
2967
|
+
"regular_expression",
|
2968
|
+
"two_pager",
|
2969
|
+
"cell_merge",
|
2970
|
+
"table_chart_view",
|
2971
|
+
"format_h3",
|
2972
|
+
"custom_typography",
|
2973
|
+
"line_curve",
|
2974
|
+
"format_letter_spacing",
|
2975
|
+
"insert_text",
|
2976
|
+
"sticky_note",
|
2977
|
+
"stylus_laser_pointer",
|
2978
|
+
"book_5",
|
2979
|
+
"format_h6",
|
2980
|
+
"list_alt_add",
|
2981
|
+
"format_h5",
|
2982
|
+
"counter_6",
|
2983
|
+
"drive_export",
|
2984
|
+
"format_h4",
|
2985
|
+
"ungroup",
|
2986
|
+
"scan",
|
2987
|
+
"source_notes",
|
2988
|
+
"book_4",
|
2989
|
+
"contract_delete",
|
2990
|
+
"fit_width",
|
2991
|
+
"line_end_circle",
|
2992
|
+
"location_chip",
|
2993
|
+
"text_ad",
|
2994
|
+
"counter_0",
|
2995
|
+
"ink_highlighter_move",
|
2996
|
+
"list_alt_check",
|
2997
|
+
"counter_7",
|
2998
|
+
"attach_file_add",
|
2999
|
+
"format_letter_spacing_standard",
|
3000
|
+
"text_select_start",
|
3001
|
+
"folder_data",
|
3002
|
+
"folder_supervised",
|
3003
|
+
"format_text_overflow",
|
3004
|
+
"stroke_partial",
|
3005
|
+
"counter_8",
|
3006
|
+
"counter_9",
|
3007
|
+
"decimal_increase",
|
3008
|
+
"line_end_arrow",
|
3009
|
+
"line_start_diamond",
|
3010
|
+
"pen_size_2",
|
3011
|
+
"person_book",
|
3012
|
+
"text_select_move_forward_character",
|
3013
|
+
"variable_add",
|
3014
|
+
"line_start",
|
3015
|
+
"other_admission",
|
3016
|
+
"stroke_full",
|
3017
|
+
"business_chip",
|
3018
|
+
"table_eye",
|
3019
|
+
"pen_size_1",
|
3020
|
+
"thumbnail_bar",
|
3021
|
+
"brand_family",
|
3022
|
+
"draw_collage",
|
3023
|
+
"format_letter_spacing_2",
|
3024
|
+
"line_end",
|
3025
|
+
"line_end_arrow_notch",
|
3026
|
+
"line_start_circle",
|
3027
|
+
"book_4_spark",
|
3028
|
+
"flex_wrap",
|
3029
|
+
"highlighter_size_3",
|
3030
|
+
"markdown",
|
3031
|
+
"variable_insert",
|
3032
|
+
"file_save_off",
|
3033
|
+
"language_spanish",
|
3034
|
+
"pen_size_3",
|
3035
|
+
"pen_size_5",
|
3036
|
+
"text_select_move_down",
|
3037
|
+
"file_copy_off",
|
3038
|
+
"frame_reload",
|
3039
|
+
"align_justify_space_even",
|
3040
|
+
"diagonal_line",
|
3041
|
+
"highlighter_size_5",
|
3042
|
+
"language_chinese_quick",
|
3043
|
+
"match_word",
|
3044
|
+
"text_select_jump_to_beginning",
|
3045
|
+
"top_panel_close",
|
3046
|
+
"folder_code",
|
3047
|
+
"format_letter_spacing_wide",
|
3048
|
+
"language_korean_latin",
|
3049
|
+
"pageless",
|
3050
|
+
"align_items_stretch",
|
3051
|
+
"convert_to_text",
|
3052
|
+
"language_international",
|
3053
|
+
"pen_size_4",
|
3054
|
+
"post",
|
3055
|
+
"stack_hexagon",
|
3056
|
+
"add_row_below",
|
3057
|
+
"dashboard_2",
|
3058
|
+
"format_letter_spacing_wider",
|
3059
|
+
"heap_snapshot_thumbnail",
|
3060
|
+
"ink_eraser_off",
|
3061
|
+
"markdown_copy",
|
3062
|
+
"add_column_right",
|
3063
|
+
"book_3",
|
3064
|
+
"fit_page",
|
3065
|
+
"heap_snapshot_large",
|
3066
|
+
"highlighter_size_1",
|
3067
|
+
"highlighter_size_2",
|
3068
|
+
"language_gb_english",
|
3069
|
+
"letter_switch",
|
3070
|
+
"line_end_square",
|
3071
|
+
"line_start_arrow",
|
3072
|
+
"fit_page_height",
|
3073
|
+
"folder_match",
|
3074
|
+
"heap_snapshot_multiple",
|
3075
|
+
"line_end_diamond",
|
3076
|
+
"text_compare",
|
3077
|
+
"text_select_end",
|
3078
|
+
"text_select_jump_to_end",
|
3079
|
+
"text_select_move_forward_word",
|
3080
|
+
"unknown_7",
|
3081
|
+
"align_justify_space_around",
|
3082
|
+
"align_justify_space_between",
|
3083
|
+
"attach_file_off",
|
3084
|
+
"cloud_alert",
|
3085
|
+
"flex_direction",
|
3086
|
+
"highlighter_size_4",
|
3087
|
+
"language_french",
|
3088
|
+
"page_header",
|
3089
|
+
"text_select_move_up",
|
3090
|
+
"top_panel_open",
|
3091
|
+
"cloud_lock",
|
3092
|
+
"document_search",
|
3093
|
+
"language_japanese_kana",
|
3094
|
+
"line_start_arrow_notch",
|
3095
|
+
"line_start_square",
|
3096
|
+
"slab_serif",
|
3097
|
+
"special_character",
|
3098
|
+
"table_edit",
|
3099
|
+
"text_select_move_back_word",
|
3100
|
+
"tsv",
|
3101
|
+
"two_pager_store",
|
3102
|
+
"eraser_size_1",
|
3103
|
+
"fit_page_width",
|
3104
|
+
"folder_check",
|
3105
|
+
"folder_check_2",
|
3106
|
+
"format_text_clip",
|
3107
|
+
"markdown_paste",
|
3108
|
+
"page_footer",
|
3109
|
+
"serif",
|
3110
|
+
"sheets_rtl",
|
3111
|
+
"titlecase",
|
3112
|
+
"align_center",
|
3113
|
+
"align_self_stretch",
|
3114
|
+
"align_space_between",
|
3115
|
+
"eraser_size_2",
|
3116
|
+
"language_pinyin",
|
3117
|
+
"table_convert",
|
3118
|
+
"variable_remove",
|
3119
|
+
"align_justify_stretch",
|
3120
|
+
"eraser_size_3",
|
3121
|
+
"eraser_size_4",
|
3122
|
+
"eraser_size_5",
|
3123
|
+
"format_quote_off",
|
3124
|
+
"format_text_wrap",
|
3125
|
+
"language_chinese_cangjie",
|
3126
|
+
"language_chinese_dayi",
|
3127
|
+
"script",
|
3128
|
+
"add_row_above",
|
3129
|
+
"align_flex_center",
|
3130
|
+
"align_flex_start",
|
3131
|
+
"align_justify_center",
|
3132
|
+
"align_justify_flex_start",
|
3133
|
+
"align_space_even",
|
3134
|
+
"decimal_decrease",
|
3135
|
+
"flex_no_wrap",
|
3136
|
+
"folder_eye",
|
3137
|
+
"folder_info",
|
3138
|
+
"language_chinese_pinyin",
|
3139
|
+
"language_chinese_wubi",
|
3140
|
+
"language_us",
|
3141
|
+
"text_select_move_back_character",
|
3142
|
+
"add_column_left",
|
3143
|
+
"align_justify_flex_end",
|
3144
|
+
"align_space_around",
|
3145
|
+
"align_start",
|
3146
|
+
"align_stretch",
|
3147
|
+
"book_6",
|
3148
|
+
"language_chinese_array",
|
3149
|
+
"language_us_colemak",
|
3150
|
+
"language_us_dvorak",
|
3151
|
+
"match_case_off",
|
3152
|
+
"text_up",
|
3153
|
+
"uppercase",
|
3154
|
+
"align_end",
|
3155
|
+
"align_flex_end",
|
3156
|
+
"combine_columns",
|
3157
|
+
"format_textdirection_vertical",
|
3158
|
+
"lowercase",
|
3159
|
+
"play_arrow",
|
3160
|
+
"play_circle",
|
3161
|
+
"mic",
|
3162
|
+
"videocam",
|
3163
|
+
"volume_up",
|
3164
|
+
"pause",
|
3165
|
+
"music_note",
|
3166
|
+
"library_books",
|
3167
|
+
"movie",
|
3168
|
+
"speed",
|
3169
|
+
"skip_next",
|
3170
|
+
"replay",
|
3171
|
+
"volume_off",
|
3172
|
+
"pause_circle",
|
3173
|
+
"view_in_ar",
|
3174
|
+
"fiber_manual_record",
|
3175
|
+
"stop",
|
3176
|
+
"stop_circle",
|
3177
|
+
"skip_previous",
|
3178
|
+
"equalizer",
|
3179
|
+
"subscriptions",
|
3180
|
+
"video_library",
|
3181
|
+
"fast_forward",
|
3182
|
+
"playlist_add",
|
3183
|
+
"video_call",
|
3184
|
+
"repeat",
|
3185
|
+
"volume_mute",
|
3186
|
+
"mic_off",
|
3187
|
+
"shuffle",
|
3188
|
+
"hearing",
|
3189
|
+
"podcasts",
|
3190
|
+
"library_music",
|
3191
|
+
"playlist_add_check",
|
3192
|
+
"fast_rewind",
|
3193
|
+
"sound_detection_dog_barking",
|
3194
|
+
"video_camera_front",
|
3195
|
+
"queue_music",
|
3196
|
+
"subtitles",
|
3197
|
+
"volume_down",
|
3198
|
+
"play_pause",
|
3199
|
+
"album",
|
3200
|
+
"discover_tune",
|
3201
|
+
"radio",
|
3202
|
+
"av_timer",
|
3203
|
+
"library_add_check",
|
3204
|
+
"closed_caption",
|
3205
|
+
"videocam_off",
|
3206
|
+
"stream",
|
3207
|
+
"forward_10",
|
3208
|
+
"not_started",
|
3209
|
+
"fiber_new",
|
3210
|
+
"replay_10",
|
3211
|
+
"playlist_play",
|
3212
|
+
"text_to_speech",
|
3213
|
+
"branding_watermark",
|
3214
|
+
"recent_actors",
|
3215
|
+
"interpreter_mode",
|
3216
|
+
"playlist_remove",
|
3217
|
+
"slow_motion_video",
|
3218
|
+
"frame_person",
|
3219
|
+
"playlist_add_check_circle",
|
3220
|
+
"settings_voice",
|
3221
|
+
"video_settings",
|
3222
|
+
"sound_detection_loud_sound",
|
3223
|
+
"audio_file",
|
3224
|
+
"featured_play_list",
|
3225
|
+
"lyrics",
|
3226
|
+
"hd",
|
3227
|
+
"play_lesson",
|
3228
|
+
"high_quality",
|
3229
|
+
"call_to_action",
|
3230
|
+
"repeat_one",
|
3231
|
+
"add_to_queue",
|
3232
|
+
"video_camera_back",
|
3233
|
+
"music_off",
|
3234
|
+
"spatial_audio_off",
|
3235
|
+
"volume_down_alt",
|
3236
|
+
"shuffle_on",
|
3237
|
+
"featured_video",
|
3238
|
+
"hearing_disabled",
|
3239
|
+
"playlist_add_circle",
|
3240
|
+
"replay_5",
|
3241
|
+
"speech_to_text",
|
3242
|
+
"brand_awareness",
|
3243
|
+
"repeat_on",
|
3244
|
+
"queue_play_next",
|
3245
|
+
"spatial_audio",
|
3246
|
+
"explicit",
|
3247
|
+
"art_track",
|
3248
|
+
"airplay",
|
3249
|
+
"forward_30",
|
3250
|
+
"4k",
|
3251
|
+
"forward_5",
|
3252
|
+
"music_video",
|
3253
|
+
"replay_30",
|
3254
|
+
"spatial_tracking",
|
3255
|
+
"control_camera",
|
3256
|
+
"closed_caption_disabled",
|
3257
|
+
"digital_out_of_home",
|
3258
|
+
"voice_selection",
|
3259
|
+
"fiber_smart_record",
|
3260
|
+
"play_disabled",
|
3261
|
+
"video_label",
|
3262
|
+
"repeat_one_on",
|
3263
|
+
"broadcast_on_personal",
|
3264
|
+
"sd",
|
3265
|
+
"surround_sound",
|
3266
|
+
"missed_video_call",
|
3267
|
+
"fiber_pin",
|
3268
|
+
"10k",
|
3269
|
+
"60fps",
|
3270
|
+
"sound_detection_glass_break",
|
3271
|
+
"remove_from_queue",
|
3272
|
+
"broadcast_on_home",
|
3273
|
+
"fiber_dvr",
|
3274
|
+
"instant_mix",
|
3275
|
+
"30fps",
|
3276
|
+
"4k_plus",
|
3277
|
+
"8k",
|
3278
|
+
"video_stable",
|
3279
|
+
"animated_images",
|
3280
|
+
"privacy",
|
3281
|
+
"1k",
|
3282
|
+
"8k_plus",
|
3283
|
+
"adaptive_audio_mic",
|
3284
|
+
"2k",
|
3285
|
+
"7k",
|
3286
|
+
"1k_plus",
|
3287
|
+
"9k_plus",
|
3288
|
+
"ar_on_you",
|
3289
|
+
"5k",
|
3290
|
+
"9k",
|
3291
|
+
"6k",
|
3292
|
+
"2k_plus",
|
3293
|
+
"5k_plus",
|
3294
|
+
"6k_plus",
|
3295
|
+
"3k",
|
3296
|
+
"3k_plus",
|
3297
|
+
"7k_plus",
|
3298
|
+
"resume",
|
3299
|
+
"music_cast",
|
3300
|
+
"genres",
|
3301
|
+
"media_link",
|
3302
|
+
"artist",
|
3303
|
+
"no_sound",
|
3304
|
+
"eye_tracking",
|
3305
|
+
"video_search",
|
3306
|
+
"autoplay",
|
3307
|
+
"hangout_video",
|
3308
|
+
"movie_edit",
|
3309
|
+
"forward_media",
|
3310
|
+
"mic_double",
|
3311
|
+
"video_camera_front_off",
|
3312
|
+
"cinematic_blur",
|
3313
|
+
"autopause",
|
3314
|
+
"adaptive_audio_mic_off",
|
3315
|
+
"audio_description",
|
3316
|
+
"ar_stickers",
|
3317
|
+
"forward_circle",
|
3318
|
+
"hearing_aid",
|
3319
|
+
"replace_image",
|
3320
|
+
"speed_2x",
|
3321
|
+
"select_to_speak",
|
3322
|
+
"movie_info",
|
3323
|
+
"full_hd",
|
3324
|
+
"mic_alert",
|
3325
|
+
"video_camera_back_add",
|
3326
|
+
"2d",
|
3327
|
+
"avc",
|
3328
|
+
"split_scene",
|
3329
|
+
"autostop",
|
3330
|
+
"frame_person_mic",
|
3331
|
+
"hangout_video_off",
|
3332
|
+
"av1",
|
3333
|
+
"speed_1_5",
|
3334
|
+
"closed_caption_add",
|
3335
|
+
"speed_0_5",
|
3336
|
+
"speed_1_2",
|
3337
|
+
"frame_person_off",
|
3338
|
+
"replace_video",
|
3339
|
+
"spatial_speaker",
|
3340
|
+
"speed_0_75",
|
3341
|
+
"speed_1_5x",
|
3342
|
+
"replace_audio",
|
3343
|
+
"sound_sampler",
|
3344
|
+
"speed_0_5x",
|
3345
|
+
"speed_1_2x",
|
3346
|
+
"edit_audio",
|
3347
|
+
"speed_0_25",
|
3348
|
+
"speed_0_2x",
|
3349
|
+
"speed_1_75",
|
3350
|
+
"view_in_ar_off",
|
3351
|
+
"speed_0_7x",
|
3352
|
+
"speed_1_25",
|
3353
|
+
"videocam_alert",
|
3354
|
+
"movie_off",
|
3355
|
+
"hearing_aid_disabled",
|
3356
|
+
"music_note_add",
|
3357
|
+
"speed_1_7x",
|
3358
|
+
"voice_selection_off",
|
3359
|
+
"local_shipping",
|
3360
|
+
"directions_car",
|
3361
|
+
"flight",
|
3362
|
+
"directions_run",
|
3363
|
+
"directions_walk",
|
3364
|
+
"flight_takeoff",
|
3365
|
+
"directions_bus",
|
3366
|
+
"train",
|
3367
|
+
"directions_bike",
|
3368
|
+
"airport_shuttle",
|
3369
|
+
"pedal_bike",
|
3370
|
+
"directions_boat",
|
3371
|
+
"two_wheeler",
|
3372
|
+
"agriculture",
|
3373
|
+
"local_taxi",
|
3374
|
+
"sailing",
|
3375
|
+
"electric_car",
|
3376
|
+
"flight_land",
|
3377
|
+
"hail",
|
3378
|
+
"no_crash",
|
3379
|
+
"commute",
|
3380
|
+
"car_crash",
|
3381
|
+
"motorcycle",
|
3382
|
+
"tram",
|
3383
|
+
"departure_board",
|
3384
|
+
"subway",
|
3385
|
+
"electric_moped",
|
3386
|
+
"turn_right",
|
3387
|
+
"fork_right",
|
3388
|
+
"directions_subway",
|
3389
|
+
"electric_scooter",
|
3390
|
+
"tire_repair",
|
3391
|
+
"electric_bike",
|
3392
|
+
"rv_hookup",
|
3393
|
+
"turn_left",
|
3394
|
+
"bus_alert",
|
3395
|
+
"transportation",
|
3396
|
+
"airlines",
|
3397
|
+
"directions_railway",
|
3398
|
+
"taxi_alert",
|
3399
|
+
"u_turn_left",
|
3400
|
+
"electric_rickshaw",
|
3401
|
+
"turn_slight_right",
|
3402
|
+
"fork_left",
|
3403
|
+
"railway_alert",
|
3404
|
+
"u_turn_right",
|
3405
|
+
"bike_scooter",
|
3406
|
+
"turn_slight_left",
|
3407
|
+
"turn_sharp_right",
|
3408
|
+
"no_transfer",
|
3409
|
+
"snowmobile",
|
3410
|
+
"turn_sharp_left",
|
3411
|
+
"swap_driving_apps_wheel",
|
3412
|
+
"moped",
|
3413
|
+
"swap_driving_apps",
|
3414
|
+
"auto_transmission",
|
3415
|
+
"flyover",
|
3416
|
+
"road",
|
3417
|
+
"auto_towing",
|
3418
|
+
"traffic_jam",
|
3419
|
+
"ambulance",
|
3420
|
+
"car_tag",
|
3421
|
+
"hov",
|
3422
|
+
"speed_camera",
|
3423
|
+
"transit_ticket",
|
3424
|
+
"directions_railway_2",
|
3425
|
+
"bus_railway",
|
3426
|
+
"metro",
|
3427
|
+
"bike_lane",
|
3428
|
+
"unpaved_road",
|
3429
|
+
"bike_dock",
|
3430
|
+
"gondola_lift",
|
3431
|
+
"railway_alert_2",
|
3432
|
+
"scooter",
|
3433
|
+
"funicular",
|
3434
|
+
"monorail",
|
3435
|
+
"trolley_cable_car",
|
3436
|
+
"boat_railway",
|
3437
|
+
"cable_car",
|
3438
|
+
"boat_bus",
|
3439
|
+
"school",
|
3440
|
+
"campaign",
|
3441
|
+
"construction",
|
3442
|
+
"engineering",
|
3443
|
+
"volunteer_activism",
|
3444
|
+
"science",
|
3445
|
+
"sports_esports",
|
3446
|
+
"confirmation_number",
|
3447
|
+
"real_estate_agent",
|
3448
|
+
"cake",
|
3449
|
+
"self_improvement",
|
3450
|
+
"sports_soccer",
|
3451
|
+
"air",
|
3452
|
+
"biotech",
|
3453
|
+
"water",
|
3454
|
+
"hiking",
|
3455
|
+
"architecture",
|
3456
|
+
"sports_score",
|
3457
|
+
"sports_basketball",
|
3458
|
+
"personal_injury",
|
3459
|
+
"waves",
|
3460
|
+
"theaters",
|
3461
|
+
"sports_tennis",
|
3462
|
+
"experiment",
|
3463
|
+
"switch_account",
|
3464
|
+
"nights_stay",
|
3465
|
+
"sports_gymnastics",
|
3466
|
+
"how_to_vote",
|
3467
|
+
"surfing",
|
3468
|
+
"backpack",
|
3469
|
+
"sports_motorsports",
|
3470
|
+
"sports_kabaddi",
|
3471
|
+
"piano",
|
3472
|
+
"sports",
|
3473
|
+
"trophy",
|
3474
|
+
"toys",
|
3475
|
+
"sports_volleyball",
|
3476
|
+
"sports_baseball",
|
3477
|
+
"camping",
|
3478
|
+
"phishing",
|
3479
|
+
"sports_martial_arts",
|
3480
|
+
"swords",
|
3481
|
+
"downhill_skiing",
|
3482
|
+
"scoreboard",
|
3483
|
+
"kayaking",
|
3484
|
+
"sports_football",
|
3485
|
+
"sports_handball",
|
3486
|
+
"skateboarding",
|
3487
|
+
"featured_seasonal_and_gifts",
|
3488
|
+
"sports_golf",
|
3489
|
+
"toys_fan",
|
3490
|
+
"sports_cricket",
|
3491
|
+
"nordic_walking",
|
3492
|
+
"roller_skating",
|
3493
|
+
"scuba_diving",
|
3494
|
+
"kitesurfing",
|
3495
|
+
"rowing",
|
3496
|
+
"storm",
|
3497
|
+
"sports_mma",
|
3498
|
+
"paragliding",
|
3499
|
+
"sports_hockey",
|
3500
|
+
"snowboarding",
|
3501
|
+
"ice_skating",
|
3502
|
+
"snowshoeing",
|
3503
|
+
"family_link",
|
3504
|
+
"rewarded_ads",
|
3505
|
+
"sports_rugby",
|
3506
|
+
"sledding",
|
3507
|
+
"steps",
|
3508
|
+
"sprint",
|
3509
|
+
"ecg_heart",
|
3510
|
+
"ifl",
|
3511
|
+
"piano_off",
|
3512
|
+
"no_backpack",
|
3513
|
+
"health_metrics",
|
3514
|
+
"readiness_score",
|
3515
|
+
"mindfulness",
|
3516
|
+
"toys_and_games",
|
3517
|
+
"exercise",
|
3518
|
+
"service_toolbox",
|
3519
|
+
"person_celebrate",
|
3520
|
+
"person_play",
|
3521
|
+
"laps",
|
3522
|
+
"cake_add",
|
3523
|
+
"sports_and_outdoors",
|
3524
|
+
"floor",
|
3525
|
+
"stress_management",
|
3526
|
+
"pace",
|
3527
|
+
"menstrual_health",
|
3528
|
+
"distance",
|
3529
|
+
"newsstand",
|
3530
|
+
"arrow_warm_up",
|
3531
|
+
"relax",
|
3532
|
+
"avg_pace",
|
3533
|
+
"azm",
|
3534
|
+
"interactive_space",
|
3535
|
+
"elevation",
|
3536
|
+
"onsen",
|
3537
|
+
"arrow_cool_down",
|
3538
|
+
"water_full",
|
3539
|
+
"bath_outdoor",
|
3540
|
+
"avg_time",
|
3541
|
+
"books_movies_and_music",
|
3542
|
+
"bath_private",
|
3543
|
+
"spo2",
|
3544
|
+
"eda",
|
3545
|
+
"water_medium",
|
3546
|
+
"cadence",
|
3547
|
+
"podiatry",
|
3548
|
+
"fertile",
|
3549
|
+
"check_in_out",
|
3550
|
+
"cleaning",
|
3551
|
+
"hr_resting",
|
3552
|
+
"science_off",
|
3553
|
+
"bath_public_large",
|
3554
|
+
"bia",
|
3555
|
+
"sauna",
|
3556
|
+
"glass_cup",
|
3557
|
+
"water_loss",
|
3558
|
+
"sleep_score",
|
3559
|
+
"monitor_weight_loss",
|
3560
|
+
"vo2_max",
|
3561
|
+
"monitor_weight_gain",
|
3562
|
+
"physical_therapy",
|
3563
|
+
"phone_iphone",
|
3564
|
+
"save",
|
3565
|
+
"smartphone",
|
3566
|
+
"keyboard_arrow_down",
|
3567
|
+
"print",
|
3568
|
+
"computer",
|
3569
|
+
"devices",
|
3570
|
+
"desktop_windows",
|
3571
|
+
"dns",
|
3572
|
+
"smart_display",
|
3573
|
+
"keyboard_backspace",
|
3574
|
+
"headphones",
|
3575
|
+
"smart_toy",
|
3576
|
+
"phone_android",
|
3577
|
+
"memory",
|
3578
|
+
"keyboard_arrow_right",
|
3579
|
+
"keyboard",
|
3580
|
+
"keyboard_arrow_up",
|
3581
|
+
"live_tv",
|
3582
|
+
"tv",
|
3583
|
+
"laptop_mac",
|
3584
|
+
"headset_mic",
|
3585
|
+
"device_thermostat",
|
3586
|
+
"balance",
|
3587
|
+
"mouse",
|
3588
|
+
"route",
|
3589
|
+
"point_of_sale",
|
3590
|
+
"watch",
|
3591
|
+
"laptop_chromebook",
|
3592
|
+
"keyboard_arrow_left",
|
3593
|
+
"keyboard_return",
|
3594
|
+
"power",
|
3595
|
+
"laptop_windows",
|
3596
|
+
"developer_board",
|
3597
|
+
"router",
|
3598
|
+
"cast",
|
3599
|
+
"scale",
|
3600
|
+
"display_settings",
|
3601
|
+
"developer_mode",
|
3602
|
+
"book_online",
|
3603
|
+
"fax",
|
3604
|
+
"videogame_asset",
|
3605
|
+
"cast_for_education",
|
3606
|
+
"device_hub",
|
3607
|
+
"straight",
|
3608
|
+
"devices_other",
|
3609
|
+
"screen_search_desktop",
|
3610
|
+
"mobile_friendly",
|
3611
|
+
"desktop_mac",
|
3612
|
+
"settings_input_antenna",
|
3613
|
+
"settings_ethernet",
|
3614
|
+
"monitor",
|
3615
|
+
"send_to_mobile",
|
3616
|
+
"important_devices",
|
3617
|
+
"tablet_mac",
|
3618
|
+
"system_update",
|
3619
|
+
"settings_remote",
|
3620
|
+
"screen_share",
|
3621
|
+
"monitor_weight",
|
3622
|
+
"screen_rotation",
|
3623
|
+
"keyboard_alt",
|
3624
|
+
"merge",
|
3625
|
+
"connected_tv",
|
3626
|
+
"sim_card",
|
3627
|
+
"settings_input_component",
|
3628
|
+
"tablet",
|
3629
|
+
"speaker",
|
3630
|
+
"vibration",
|
3631
|
+
"keyboard_tab",
|
3632
|
+
"power_off",
|
3633
|
+
"screenshot_monitor",
|
3634
|
+
"remember_me",
|
3635
|
+
"security_update_good",
|
3636
|
+
"browser_updated",
|
3637
|
+
"sd_card",
|
3638
|
+
"cast_connected",
|
3639
|
+
"device_unknown",
|
3640
|
+
"tablet_android",
|
3641
|
+
"charging_station",
|
3642
|
+
"phonelink_setup",
|
3643
|
+
"screenshot",
|
3644
|
+
"punch_clock",
|
3645
|
+
"settings_input_hdmi",
|
3646
|
+
"scanner",
|
3647
|
+
"stay_current_portrait",
|
3648
|
+
"tap_and_play",
|
3649
|
+
"keyboard_hide",
|
3650
|
+
"print_disabled",
|
3651
|
+
"security_update_warning",
|
3652
|
+
"keyboard_capslock",
|
3653
|
+
"speaker_group",
|
3654
|
+
"app_blocking",
|
3655
|
+
"mobile_screen_share",
|
3656
|
+
"disc_full",
|
3657
|
+
"aod",
|
3658
|
+
"add_to_home_screen",
|
3659
|
+
"sd_card_alert",
|
3660
|
+
"tty",
|
3661
|
+
"earbuds",
|
3662
|
+
"lift_to_talk",
|
3663
|
+
"perm_device_information",
|
3664
|
+
"stop_screen_share",
|
3665
|
+
"mobile_off",
|
3666
|
+
"headset_off",
|
3667
|
+
"screen_lock_portrait",
|
3668
|
+
"desktop_access_disabled",
|
3669
|
+
"offline_share",
|
3670
|
+
"reset_tv",
|
3671
|
+
"dock",
|
3672
|
+
"headphones_battery",
|
3673
|
+
"adf_scanner",
|
3674
|
+
"roundabout_right",
|
3675
|
+
"settop_component",
|
3676
|
+
"watch_off",
|
3677
|
+
"settings_input_svideo",
|
3678
|
+
"smart_screen",
|
3679
|
+
"robot_2",
|
3680
|
+
"open_in_phone",
|
3681
|
+
"chromecast_device",
|
3682
|
+
"stay_current_landscape",
|
3683
|
+
"settings_cell",
|
3684
|
+
"no_sim",
|
3685
|
+
"earbuds_battery",
|
3686
|
+
"home_max",
|
3687
|
+
"power_input",
|
3688
|
+
"ramp_right",
|
3689
|
+
"screen_lock_landscape",
|
3690
|
+
"roundabout_left",
|
3691
|
+
"stay_primary_portrait",
|
3692
|
+
"stay_primary_landscape",
|
3693
|
+
"tv_off",
|
3694
|
+
"developer_board_off",
|
3695
|
+
"phonelink_off",
|
3696
|
+
"home_mini",
|
3697
|
+
"robot",
|
3698
|
+
"ramp_left",
|
3699
|
+
"screen_lock_rotation",
|
3700
|
+
"videogame_asset_off",
|
3701
|
+
"aod_tablet",
|
3702
|
+
"devices_wearables",
|
3703
|
+
"head_mounted_device",
|
3704
|
+
"host",
|
3705
|
+
"gamepad",
|
3706
|
+
"google_home_devices",
|
3707
|
+
"joystick",
|
3708
|
+
"rear_camera",
|
3709
|
+
"developer_mode_tv",
|
3710
|
+
"jamboard_kiosk",
|
3711
|
+
"tv_options_edit_channels",
|
3712
|
+
"app_promo",
|
3713
|
+
"touchpad_mouse",
|
3714
|
+
"reset_wrench",
|
3715
|
+
"camera_video",
|
3716
|
+
"memory_alt",
|
3717
|
+
"mimo",
|
3718
|
+
"tv_options_input_settings",
|
3719
|
+
"security_key",
|
3720
|
+
"aod_watch",
|
3721
|
+
"lightning_stand",
|
3722
|
+
"hard_drive",
|
3723
|
+
"media_output",
|
3724
|
+
"mimo_disconnect",
|
3725
|
+
"tv_signin",
|
3726
|
+
"devices_off",
|
3727
|
+
"emoji_language",
|
3728
|
+
"fitness_tracker",
|
3729
|
+
"ecg",
|
3730
|
+
"tv_guide",
|
3731
|
+
"tv_remote",
|
3732
|
+
"hard_drive_2",
|
3733
|
+
"stream_apps",
|
3734
|
+
"missing_controller",
|
3735
|
+
"night_sight_max",
|
3736
|
+
"media_output_off",
|
3737
|
+
"p2p",
|
3738
|
+
"touchpad_mouse_off",
|
3739
|
+
"general_device",
|
3740
|
+
"keyboard_tab_rtl",
|
3741
|
+
"watch_vibration",
|
3742
|
+
"add_diamond",
|
3743
|
+
"smart_card_reader",
|
3744
|
+
"assistant_device",
|
3745
|
+
"watch_check",
|
3746
|
+
"hard_disk",
|
3747
|
+
"deskphone",
|
3748
|
+
"desktop_cloud",
|
3749
|
+
"handheld_controller",
|
3750
|
+
"open_jam",
|
3751
|
+
"watch_wake",
|
3752
|
+
"cast_pause",
|
3753
|
+
"cast_warning",
|
3754
|
+
"screenshot_tablet",
|
3755
|
+
"watch_button_press",
|
3756
|
+
"audio_video_receiver",
|
3757
|
+
"pacemaker",
|
3758
|
+
"keyboard_lock",
|
3759
|
+
"server_person",
|
3760
|
+
"tv_displays",
|
3761
|
+
"desktop_cloud_stack",
|
3762
|
+
"laptop_car",
|
3763
|
+
"print_connect",
|
3764
|
+
"lda",
|
3765
|
+
"mouse_lock_off",
|
3766
|
+
"keyboard_lock_off",
|
3767
|
+
"smart_card_reader_off",
|
3768
|
+
"ventilator",
|
3769
|
+
"mouse_lock",
|
3770
|
+
"print_add",
|
3771
|
+
"print_error",
|
3772
|
+
"print_lock",
|
3773
|
+
"tv_next",
|
3774
|
+
"smartphone_camera",
|
3775
|
+
"tablet_camera",
|
3776
|
+
"save_clock",
|
3777
|
+
"dark_mode",
|
3778
|
+
"light_mode",
|
3779
|
+
"wifi",
|
3780
|
+
"signal_cellular_alt",
|
3781
|
+
"password",
|
3782
|
+
"widgets",
|
3783
|
+
"android",
|
3784
|
+
"storage",
|
3785
|
+
"pin",
|
3786
|
+
"battery_full",
|
3787
|
+
"rss_feed",
|
3788
|
+
"wifi_off",
|
3789
|
+
"bluetooth",
|
3790
|
+
"battery_charging_full",
|
3791
|
+
"graphic_eq",
|
3792
|
+
"thermostat",
|
3793
|
+
"dvr",
|
3794
|
+
"nightlight",
|
3795
|
+
"battery_5_bar",
|
3796
|
+
"signal_wifi_4_bar",
|
3797
|
+
"gpp_maybe",
|
3798
|
+
"cable",
|
3799
|
+
"gpp_bad",
|
3800
|
+
"data_usage",
|
3801
|
+
"radar",
|
3802
|
+
"signal_cellular_4_bar",
|
3803
|
+
"battery_4_bar",
|
3804
|
+
"battery_full_alt",
|
3805
|
+
"battery_0_bar",
|
3806
|
+
"cameraswitch",
|
3807
|
+
"wallpaper",
|
3808
|
+
"signal_disconnected",
|
3809
|
+
"flashlight_on",
|
3810
|
+
"network_check",
|
3811
|
+
"battery_6_bar",
|
3812
|
+
"charger",
|
3813
|
+
"wifi_tethering",
|
3814
|
+
"quick_phrases",
|
3815
|
+
"sim_card_download",
|
3816
|
+
"usb",
|
3817
|
+
"splitscreen",
|
3818
|
+
"adb",
|
3819
|
+
"battery_1_bar",
|
3820
|
+
"battery_3_bar",
|
3821
|
+
"network_wifi_3_bar",
|
3822
|
+
"battery_alert",
|
3823
|
+
"battery_low",
|
3824
|
+
"network_wifi",
|
3825
|
+
"bluetooth_searching",
|
3826
|
+
"bluetooth_connected",
|
3827
|
+
"brightness_high",
|
3828
|
+
"5g",
|
3829
|
+
"battery_2_bar",
|
3830
|
+
"wifi_find",
|
3831
|
+
"network_cell",
|
3832
|
+
"nfc",
|
3833
|
+
"pattern",
|
3834
|
+
"bluetooth_disabled",
|
3835
|
+
"signal_wifi_statusbar_not_connected",
|
3836
|
+
"data_saver_on",
|
3837
|
+
"signal_cellular_3_bar",
|
3838
|
+
"signal_wifi_bad",
|
3839
|
+
"network_wifi_2_bar",
|
3840
|
+
"brightness_medium",
|
3841
|
+
"network_wifi_1_bar",
|
3842
|
+
"noise_control_off",
|
3843
|
+
"signal_wifi_off",
|
3844
|
+
"mode_standby",
|
3845
|
+
"brightness_low",
|
3846
|
+
"battery_very_low",
|
3847
|
+
"battery_charging_90",
|
3848
|
+
"signal_wifi_0_bar",
|
3849
|
+
"battery_charging_20",
|
3850
|
+
"battery_saver",
|
3851
|
+
"mobiledata_off",
|
3852
|
+
"battery_charging_80",
|
3853
|
+
"grid_4x4",
|
3854
|
+
"battery_unknown",
|
3855
|
+
"flashlight_off",
|
3856
|
+
"settings_system_daydream",
|
3857
|
+
"signal_wifi_statusbar_null",
|
3858
|
+
"battery_charging_50",
|
3859
|
+
"signal_cellular_2_bar",
|
3860
|
+
"signal_cellular_1_bar",
|
3861
|
+
"screen_rotation_alt",
|
3862
|
+
"badge_critical_battery",
|
3863
|
+
"wifi_lock",
|
3864
|
+
"4g_mobiledata",
|
3865
|
+
"noise_aware",
|
3866
|
+
"do_not_disturb_on_total_silence",
|
3867
|
+
"signal_cellular_connected_no_internet_0_bar",
|
3868
|
+
"battery_charging_60",
|
3869
|
+
"1x_mobiledata",
|
3870
|
+
"nearby_error",
|
3871
|
+
"signal_cellular_0_bar",
|
3872
|
+
"signal_cellular_connected_no_internet_4_bar",
|
3873
|
+
"battery_charging_30",
|
3874
|
+
"network_ping",
|
3875
|
+
"brightness_auto",
|
3876
|
+
"edgesensor_high",
|
3877
|
+
"signal_cellular_nodata",
|
3878
|
+
"wifi_tethering_error",
|
3879
|
+
"devices_fold",
|
3880
|
+
"ios",
|
3881
|
+
"grid_3x3",
|
3882
|
+
"airplanemode_inactive",
|
3883
|
+
"wifi_2_bar",
|
3884
|
+
"lte_mobiledata",
|
3885
|
+
"perm_data_setting",
|
3886
|
+
"signal_cellular_alt_2_bar",
|
3887
|
+
"bluetooth_drive",
|
3888
|
+
"media_bluetooth_on",
|
3889
|
+
"network_locked",
|
3890
|
+
"perm_scan_wifi",
|
3891
|
+
"signal_cellular_off",
|
3892
|
+
"4g_plus_mobiledata",
|
3893
|
+
"wifi_1_bar",
|
3894
|
+
"apk_install",
|
3895
|
+
"signal_cellular_alt_1_bar",
|
3896
|
+
"timer_10_select",
|
3897
|
+
"wifi_tethering_off",
|
3898
|
+
"3g_mobiledata",
|
3899
|
+
"edgesensor_low",
|
3900
|
+
"usb_off",
|
3901
|
+
"signal_cellular_null",
|
3902
|
+
"lte_plus_mobiledata",
|
3903
|
+
"stylus_note",
|
3904
|
+
"grid_goldenratio",
|
3905
|
+
"g_mobiledata",
|
3906
|
+
"noise_control_on",
|
3907
|
+
"portable_wifi_off",
|
3908
|
+
"apk_document",
|
3909
|
+
"media_bluetooth_off",
|
3910
|
+
"timer_3_select",
|
3911
|
+
"e_mobiledata",
|
3912
|
+
"dock_to_left",
|
3913
|
+
"h_mobiledata",
|
3914
|
+
"nearby_off",
|
3915
|
+
"r_mobiledata",
|
3916
|
+
"h_plus_mobiledata",
|
3917
|
+
"screen_record",
|
3918
|
+
"dual_screen",
|
3919
|
+
"brightness_alert",
|
3920
|
+
"stylus",
|
3921
|
+
"bigtop_updates",
|
3922
|
+
"overview_key",
|
3923
|
+
"screenshot_region",
|
3924
|
+
"screenshot_frame",
|
3925
|
+
"contextual_token",
|
3926
|
+
"nearby",
|
3927
|
+
"dock_to_right",
|
3928
|
+
"brightness_empty",
|
3929
|
+
"display_external_input",
|
3930
|
+
"battery_error",
|
3931
|
+
"splitscreen_left",
|
3932
|
+
"splitscreen_right",
|
3933
|
+
"contextual_token_add",
|
3934
|
+
"keyboard_keys",
|
3935
|
+
"network_wifi_3_bar_locked",
|
3936
|
+
"password_2",
|
3937
|
+
"screenshot_keyboard",
|
3938
|
+
"keyboard_external_input",
|
3939
|
+
"battery_status_good",
|
3940
|
+
"magnify_docked",
|
3941
|
+
"magnify_fullscreen",
|
3942
|
+
"screen_rotation_up",
|
3943
|
+
"dock_to_bottom",
|
3944
|
+
"wallpaper_slideshow",
|
3945
|
+
"battery_plus",
|
3946
|
+
"keyboard_off",
|
3947
|
+
"timer_5",
|
3948
|
+
"5g_mobiledata_badge",
|
3949
|
+
"network_wifi_2_bar_locked",
|
3950
|
+
"network_wifi_locked",
|
3951
|
+
"backlight_low",
|
3952
|
+
"keyboard_full",
|
3953
|
+
"splitscreen_vertical_add",
|
3954
|
+
"1x_mobiledata_badge",
|
3955
|
+
"splitscreen_bottom",
|
3956
|
+
"keyboard_capslock_badge",
|
3957
|
+
"keyboard_previous_language",
|
3958
|
+
"splitscreen_add",
|
3959
|
+
"wifi_home",
|
3960
|
+
"backlight_high",
|
3961
|
+
"battery_change",
|
3962
|
+
"e_mobiledata_badge",
|
3963
|
+
"keyboard_onscreen",
|
3964
|
+
"network_wifi_1_bar_locked",
|
3965
|
+
"splitscreen_top",
|
3966
|
+
"wifi_calling_bar_3",
|
3967
|
+
"backlight_high_off",
|
3968
|
+
"devices_fold_2",
|
3969
|
+
"wifi_notification",
|
3970
|
+
"battery_share",
|
3971
|
+
"h_plus_mobiledata_badge",
|
3972
|
+
"timer_5_shutter",
|
3973
|
+
"3g_mobiledata_badge",
|
3974
|
+
"4g_mobiledata_badge",
|
3975
|
+
"g_mobiledata_badge",
|
3976
|
+
"grid_3x3_off",
|
3977
|
+
"h_mobiledata_badge",
|
3978
|
+
"lte_mobiledata_badge",
|
3979
|
+
"lte_plus_mobiledata_badge",
|
3980
|
+
"password_2_off",
|
3981
|
+
"signal_cellular_pause",
|
3982
|
+
"ev_mobiledata_badge",
|
3983
|
+
"screenshot_frame_2",
|
3984
|
+
"wifi_calling_bar_1",
|
3985
|
+
"wifi_calling_bar_2",
|
3986
|
+
"badge",
|
3987
|
+
"verified_user",
|
3988
|
+
"report",
|
3989
|
+
"admin_panel_settings",
|
3990
|
+
"security",
|
3991
|
+
"vpn_key",
|
3992
|
+
"policy",
|
3993
|
+
"shield",
|
3994
|
+
"exclamation",
|
3995
|
+
"assured_workload",
|
3996
|
+
"privacy_tip",
|
3997
|
+
"vpn_lock",
|
3998
|
+
"disabled_visible",
|
3999
|
+
"e911_emergency",
|
4000
|
+
"enhanced_encryption",
|
4001
|
+
"encrypted",
|
4002
|
+
"private_connectivity",
|
4003
|
+
"vpn_key_off",
|
4004
|
+
"add_moderator",
|
4005
|
+
"passkey",
|
4006
|
+
"no_encryption",
|
4007
|
+
"key_visualizer",
|
4008
|
+
"sync_lock",
|
4009
|
+
"wifi_password",
|
4010
|
+
"remove_moderator",
|
4011
|
+
"report_off",
|
4012
|
+
"shield_person",
|
4013
|
+
"shield_lock",
|
4014
|
+
"id_card",
|
4015
|
+
"shield_locked",
|
4016
|
+
"shield_question",
|
4017
|
+
"identity_aware_proxy",
|
4018
|
+
"policy_alert",
|
4019
|
+
"vpn_key_alert",
|
4020
|
+
"encrypted_off",
|
4021
|
+
"encrypted_add",
|
4022
|
+
"encrypted_add_circle",
|
4023
|
+
"encrypted_minus_circle",
|
4024
|
+
"apartment",
|
4025
|
+
"location_city",
|
4026
|
+
"fitness_center",
|
4027
|
+
"lunch_dining",
|
4028
|
+
"spa",
|
4029
|
+
"cottage",
|
4030
|
+
"local_cafe",
|
4031
|
+
"hotel",
|
4032
|
+
"family_restroom",
|
4033
|
+
"beach_access",
|
4034
|
+
"local_bar",
|
4035
|
+
"pool",
|
4036
|
+
"other_houses",
|
4037
|
+
"luggage",
|
4038
|
+
"liquor",
|
4039
|
+
"casino",
|
4040
|
+
"airplane_ticket",
|
4041
|
+
"room_service",
|
4042
|
+
"sports_bar",
|
4043
|
+
"bakery_dining",
|
4044
|
+
"ramen_dining",
|
4045
|
+
"nightlife",
|
4046
|
+
"local_dining",
|
4047
|
+
"holiday_village",
|
4048
|
+
"icecream",
|
4049
|
+
"escalator_warning",
|
4050
|
+
"dinner_dining",
|
4051
|
+
"museum",
|
4052
|
+
"night_shelter",
|
4053
|
+
"festival",
|
4054
|
+
"food_bank",
|
4055
|
+
"attractions",
|
4056
|
+
"golf_course",
|
4057
|
+
"stairs",
|
4058
|
+
"villa",
|
4059
|
+
"smoke_free",
|
4060
|
+
"car_rental",
|
4061
|
+
"smoking_rooms",
|
4062
|
+
"airline_seat_recline_normal",
|
4063
|
+
"elevator",
|
4064
|
+
"gite",
|
4065
|
+
"child_friendly",
|
4066
|
+
"airline_seat_recline_extra",
|
4067
|
+
"breakfast_dining",
|
4068
|
+
"carpenter",
|
4069
|
+
"car_repair",
|
4070
|
+
"cabin",
|
4071
|
+
"brunch_dining",
|
4072
|
+
"do_not_touch",
|
4073
|
+
"no_food",
|
4074
|
+
"houseboat",
|
4075
|
+
"tapas",
|
4076
|
+
"rice_bowl",
|
4077
|
+
"wheelchair_pickup",
|
4078
|
+
"bento",
|
4079
|
+
"travel",
|
4080
|
+
"no_drinks",
|
4081
|
+
"do_not_step",
|
4082
|
+
"airline_seat_flat",
|
4083
|
+
"bungalow",
|
4084
|
+
"escalator",
|
4085
|
+
"airline_seat_individual_suite",
|
4086
|
+
"chalet",
|
4087
|
+
"no_luggage",
|
4088
|
+
"airline_seat_legroom_extra",
|
4089
|
+
"airline_seat_flat_angled",
|
4090
|
+
"airline_seat_legroom_normal",
|
4091
|
+
"airline_seat_legroom_reduced",
|
4092
|
+
"no_stroller",
|
4093
|
+
"personal_places",
|
4094
|
+
"flights_and_hotels",
|
4095
|
+
"trip",
|
4096
|
+
"concierge",
|
4097
|
+
"travel_luggage_and_bags",
|
4098
|
+
"personal_bag",
|
4099
|
+
"stairs_2",
|
4100
|
+
"carry_on_bag_question",
|
4101
|
+
"personal_bag_question",
|
4102
|
+
"checked_bag",
|
4103
|
+
"your_trips",
|
4104
|
+
"carry_on_bag_checked",
|
4105
|
+
"checked_bag_question",
|
4106
|
+
"carry_on_bag",
|
4107
|
+
"personal_bag_off",
|
4108
|
+
"carry_on_bag_inactive",
|
4109
|
+
"house",
|
4110
|
+
"bed",
|
4111
|
+
"ac_unit",
|
4112
|
+
"chair",
|
4113
|
+
"electric_bolt",
|
4114
|
+
"coffee",
|
4115
|
+
"sensors",
|
4116
|
+
"child_care",
|
4117
|
+
"back_hand",
|
4118
|
+
"emergency_home",
|
4119
|
+
"checkroom",
|
4120
|
+
"grass",
|
4121
|
+
"shower",
|
4122
|
+
"mode_fan",
|
4123
|
+
"mop",
|
4124
|
+
"kitchen",
|
4125
|
+
"thermometer",
|
4126
|
+
"styler",
|
4127
|
+
"yard",
|
4128
|
+
"bathtub",
|
4129
|
+
"energy_savings_leaf",
|
4130
|
+
"king_bed",
|
4131
|
+
"roofing",
|
4132
|
+
"valve",
|
4133
|
+
"window",
|
4134
|
+
"cooking",
|
4135
|
+
"garage_home",
|
4136
|
+
"door_front",
|
4137
|
+
"foundation",
|
4138
|
+
"mode_heat",
|
4139
|
+
"light",
|
4140
|
+
"garage",
|
4141
|
+
"outdoor_grill",
|
4142
|
+
"table_restaurant",
|
4143
|
+
"dining",
|
4144
|
+
"sensor_occupied",
|
4145
|
+
"deck",
|
4146
|
+
"weekend",
|
4147
|
+
"coffee_maker",
|
4148
|
+
"highlight",
|
4149
|
+
"humidity_high",
|
4150
|
+
"fireplace",
|
4151
|
+
"flatware",
|
4152
|
+
"humidity_low",
|
4153
|
+
"tv_gen",
|
4154
|
+
"electric_meter",
|
4155
|
+
"mode_night",
|
4156
|
+
"humidity_mid",
|
4157
|
+
"bedroom_parent",
|
4158
|
+
"scene",
|
4159
|
+
"blender",
|
4160
|
+
"chair_alt",
|
4161
|
+
"microwave",
|
4162
|
+
"bedroom_baby",
|
4163
|
+
"oven_gen",
|
4164
|
+
"heat_pump",
|
4165
|
+
"single_bed",
|
4166
|
+
"hardware",
|
4167
|
+
"bathroom",
|
4168
|
+
"hot_tub",
|
4169
|
+
"in_home_mode",
|
4170
|
+
"mode_off_on",
|
4171
|
+
"mode_cool",
|
4172
|
+
"table_bar",
|
4173
|
+
"sprinkler",
|
4174
|
+
"gas_meter",
|
4175
|
+
"crib",
|
4176
|
+
"home_iot_device",
|
4177
|
+
"countertops",
|
4178
|
+
"propane_tank",
|
4179
|
+
"soap",
|
4180
|
+
"outlet",
|
4181
|
+
"living",
|
4182
|
+
"fire_extinguisher",
|
4183
|
+
"matter",
|
4184
|
+
"gate",
|
4185
|
+
"remote_gen",
|
4186
|
+
"detector_smoke",
|
4187
|
+
"sensor_door",
|
4188
|
+
"dishwasher_gen",
|
4189
|
+
"energy_program_saving",
|
4190
|
+
"event_seat",
|
4191
|
+
"airware",
|
4192
|
+
"faucet",
|
4193
|
+
"air_freshener",
|
4194
|
+
"water_damage",
|
4195
|
+
"balcony",
|
4196
|
+
"switch",
|
4197
|
+
"wash",
|
4198
|
+
"camera_indoor",
|
4199
|
+
"house_siding",
|
4200
|
+
"bedroom_child",
|
4201
|
+
"microwave_gen",
|
4202
|
+
"door_sliding",
|
4203
|
+
"iron",
|
4204
|
+
"energy_program_time_used",
|
4205
|
+
"fence",
|
4206
|
+
"desk",
|
4207
|
+
"umbrella",
|
4208
|
+
"water_heater",
|
4209
|
+
"dresser",
|
4210
|
+
"doorbell",
|
4211
|
+
"door_back",
|
4212
|
+
"hvac",
|
4213
|
+
"emergency_heat",
|
4214
|
+
"mode_fan_off",
|
4215
|
+
"air_purifier_gen",
|
4216
|
+
"camera_outdoor",
|
4217
|
+
"emergency_share",
|
4218
|
+
"kettle",
|
4219
|
+
"stroller",
|
4220
|
+
"multicooker",
|
4221
|
+
"curtains",
|
4222
|
+
"sensors_off",
|
4223
|
+
"shield_moon",
|
4224
|
+
"apparel",
|
4225
|
+
"mode_heat_cool",
|
4226
|
+
"emergency_recording",
|
4227
|
+
"thermostat_auto",
|
4228
|
+
"smart_outlet",
|
4229
|
+
"controller_gen",
|
4230
|
+
"blinds",
|
4231
|
+
"roller_shades",
|
4232
|
+
"dry",
|
4233
|
+
"blinds_closed",
|
4234
|
+
"roller_shades_closed",
|
4235
|
+
"propane",
|
4236
|
+
"sensor_window",
|
4237
|
+
"doorbell_3p",
|
4238
|
+
"health_and_beauty",
|
4239
|
+
"thermostat_carbon",
|
4240
|
+
"family_home",
|
4241
|
+
"range_hood",
|
4242
|
+
"tv_with_assistant",
|
4243
|
+
"blanket",
|
4244
|
+
"vertical_shades_closed",
|
4245
|
+
"vertical_shades",
|
4246
|
+
"curtains_closed",
|
4247
|
+
"mode_heat_off",
|
4248
|
+
"grocery",
|
4249
|
+
"mode_cool_off",
|
4250
|
+
"tamper_detection_off",
|
4251
|
+
"light_off",
|
4252
|
+
"skillet",
|
4253
|
+
"thermometer_gain",
|
4254
|
+
"shelves",
|
4255
|
+
"vacuum",
|
4256
|
+
"lightbulb_2",
|
4257
|
+
"garage_door",
|
4258
|
+
"air_purifier",
|
4259
|
+
"household_supplies",
|
4260
|
+
"thermometer_add",
|
4261
|
+
"home_and_garden",
|
4262
|
+
"wall_art",
|
4263
|
+
"home_improvement_and_tools",
|
4264
|
+
"dishwasher",
|
4265
|
+
"oven",
|
4266
|
+
"emergency_heat_2",
|
4267
|
+
"thermometer_loss",
|
4268
|
+
"stockpot",
|
4269
|
+
"fork_spoon",
|
4270
|
+
"hallway",
|
4271
|
+
"thermometer_minus",
|
4272
|
+
"skillet_cooktop",
|
4273
|
+
"emergency_share_off",
|
4274
|
+
"stadia_controller",
|
4275
|
+
"door_open",
|
4276
|
+
"nest_eco_leaf",
|
4277
|
+
"nest_remote_comfort_sensor",
|
4278
|
+
"nest_clock_farsight_analog",
|
4279
|
+
"laundry",
|
4280
|
+
"battery_horiz_075",
|
4281
|
+
"shield_with_heart",
|
4282
|
+
"familiar_face_and_zone",
|
4283
|
+
"temp_preferences_eco",
|
4284
|
+
"tools_power_drill",
|
4285
|
+
"airwave",
|
4286
|
+
"productivity",
|
4287
|
+
"battery_horiz_050",
|
4288
|
+
"nest_display",
|
4289
|
+
"weather_snowy",
|
4290
|
+
"nest_heat_link_gen_3",
|
4291
|
+
"activity_zone",
|
4292
|
+
"nest_remote",
|
4293
|
+
"cleaning_bucket",
|
4294
|
+
"settings_alert",
|
4295
|
+
"home_storage",
|
4296
|
+
"nest_cam_indoor",
|
4297
|
+
"arrows_more_up",
|
4298
|
+
"nest_heat_link_e",
|
4299
|
+
"nest_cam_outdoor",
|
4300
|
+
"nest_multi_room",
|
4301
|
+
"detection_and_zone",
|
4302
|
+
"light_group",
|
4303
|
+
"nest_secure_alarm",
|
4304
|
+
"battery_horiz_000",
|
4305
|
+
"google_wifi",
|
4306
|
+
"tools_pliers_wire_stripper",
|
4307
|
+
"mfg_nest_yale_lock",
|
4308
|
+
"nest_thermostat_gen_3",
|
4309
|
+
"detector_alarm",
|
4310
|
+
"early_on",
|
4311
|
+
"tools_ladder",
|
4312
|
+
"nest_cam_iq_outdoor",
|
4313
|
+
"nest_cam_iq",
|
4314
|
+
"nest_mini",
|
4315
|
+
"floor_lamp",
|
4316
|
+
"home_speaker",
|
4317
|
+
"nest_hello_doorbell",
|
4318
|
+
"nest_clock_farsight_digital",
|
4319
|
+
"nest_display_max",
|
4320
|
+
"nest_audio",
|
4321
|
+
"motion_sensor_active",
|
4322
|
+
"zone_person_urgent",
|
4323
|
+
"home_max_dots",
|
4324
|
+
"nest_wifi_router",
|
4325
|
+
"house_with_shield",
|
4326
|
+
"cool_to_dry",
|
4327
|
+
"nest_farsight_weather",
|
4328
|
+
"chromecast_2",
|
4329
|
+
"shield_with_house",
|
4330
|
+
"battery_profile",
|
4331
|
+
"self_care",
|
4332
|
+
"window_closed",
|
4333
|
+
"heat_pump_balance",
|
4334
|
+
"arming_countdown",
|
4335
|
+
"nest_found_savings",
|
4336
|
+
"detector_status",
|
4337
|
+
"window_open",
|
4338
|
+
"tools_level",
|
4339
|
+
"zone_person_alert",
|
4340
|
+
"detector",
|
4341
|
+
"arrows_more_down",
|
4342
|
+
"nest_thermostat_zirconium_eu",
|
4343
|
+
"nest_cam_wired_stand",
|
4344
|
+
"nest_true_radiant",
|
4345
|
+
"door_sensor",
|
4346
|
+
"nest_cam_floodlight",
|
4347
|
+
"nest_detect",
|
4348
|
+
"climate_mini_split",
|
4349
|
+
"nest_wifi_point",
|
4350
|
+
"nest_doorbell_visitor",
|
4351
|
+
"nest_tag",
|
4352
|
+
"nest_thermostat_sensor",
|
4353
|
+
"detector_co",
|
4354
|
+
"tools_installation_kit",
|
4355
|
+
"nest_connect",
|
4356
|
+
"nest_sunblock",
|
4357
|
+
"nest_thermostat_sensor_eu",
|
4358
|
+
"tools_phillips",
|
4359
|
+
"doorbell_chime",
|
4360
|
+
"nest_thermostat_e_eu",
|
4361
|
+
"table_lamp",
|
4362
|
+
"tools_flat_head",
|
4363
|
+
"detector_battery",
|
4364
|
+
"nest_wake_on_approach",
|
4365
|
+
"motion_sensor_urgent",
|
4366
|
+
"tamper_detection_on",
|
4367
|
+
"nest_wake_on_press",
|
4368
|
+
"motion_sensor_alert",
|
4369
|
+
"window_sensor",
|
4370
|
+
"zone_person_idle",
|
4371
|
+
"sensors_krx",
|
4372
|
+
"nest_cam_magnet_mount",
|
4373
|
+
"nest_cam_stand",
|
4374
|
+
"detector_offline",
|
4375
|
+
"nest_cam_wall_mount",
|
4376
|
+
"wall_lamp",
|
4377
|
+
"motion_sensor_idle",
|
4378
|
+
"nest_thermostat",
|
4379
|
+
"water_pump",
|
4380
|
+
"heat",
|
4381
|
+
"assistant_on_hub",
|
4382
|
+
"google_tv_remote",
|
4383
|
+
"aq",
|
4384
|
+
"nest_protect",
|
4385
|
+
"mode_dual",
|
4386
|
+
"sensors_krx_off",
|
4387
|
+
"aq_indoor",
|
4388
|
+
"on_hub_device",
|
4389
|
+
"humidity_indoor",
|
4390
|
+
"nest_wifi_pro_2",
|
4391
|
+
"nest_wifi_pro",
|
4392
|
+
"farsight_digital",
|
4393
|
+
"view_object_track",
|
4394
|
+
"nest_gale_wifi"
|
4395
|
+
]
|
4396
|
+
}
|
4397
|
+
}
|
4398
|
+
}
|