Datasets:
File size: 396,366 Bytes
723f01e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AddQRCode_GroundTruthA</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Arial:wght@700&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Oswald:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #1a1a2e;
color: #e0e0e0;
padding: 40px 20px;
}
h1 {
text-align: center;
margin-bottom: 8px;
font-size: 28px;
color: #fff;
}
.meta {
text-align: center;
margin-bottom: 40px;
color: #888;
font-size: 14px;
}
.slide-container {
margin: 0 auto 60px auto;
max-width: 100%;
}
.slide-label {
text-align: center;
margin-bottom: 12px;
font-size: 16px;
font-weight: 600;
color: #aaa;
}
.slide-wrapper {
display: flex;
justify-content: center;
overflow-x: auto;
}
.slide {
flex-shrink: 0;
transform-origin: top left;
box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.images-section {
max-width: 1400px;
margin: 60px auto;
}
.images-section h2 {
text-align: center;
margin-bottom: 24px;
color: #fff;
}
.images-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 20px;
}
.image-card {
background: #16213e;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.image-card img {
width: 100%;
height: 200px;
object-fit: contain;
background: #0f0f23;
padding: 8px;
}
.image-label {
padding: 8px 12px;
font-size: 11px;
color: #888;
word-break: break-all;
}
@media (max-width: 1920px) {
.slide {
transform: scale(0.5);
margin-bottom: -25%;
}
.slide-wrapper {
max-height: 600px;
}
}
@media (min-width: 1921px) {
.slide {
transform: scale(0.75);
margin-bottom: -12%;
}
}
</style>
</head>
<body>
<h1>AddQRCode_GroundTruthA</h1>
<div class="meta">10 slide(s)</div>
<div class="slide-container">
<div class="slide-label">Slide 0 — Frame</div>
<div class="slide-wrapper">
<div class="slide" data-slide-id="1:24" style="width: 1920.0px; height: 1080.0px; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
<div data-id="1:25" style="position: absolute; left: 80.0px; top: 376.0px; width: 1000.0px; height: 251.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:26" style="position: absolute; left: 0.0px; top: 0.0px; width: 1000.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 32.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 43.20000076293945px; text-align: left; white-space: nowrap; color: rgba(48,66,88,1.0)">ICLR 2024</div></div>
<div class="ft" data-id="1:27" style="position: absolute; left: 0.0px; top: 59.0px; width: 1000.0px; height: 192.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 64.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: -1.28px; line-height: 64.0px; text-align: left; color: rgba(48,66,88,1.0)">Semi-Supervised Domain Adaptation for Wildfire Detection</div></div>
</div>
<div data-id="1:28" style="position: absolute; left: 80.0px; top: 80.0px; width: 120.0px; height: 120.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: url('images/43c3de2053d9fbee60939901ce612b94c67c634c.png'); background-size: cover; background-position: center; background-repeat: no-repeat;; border-radius: 50%"></div>
<div class="ft" data-id="1:29" style="position: absolute; left: 80.0px; top: 970.0px; width: 968.0px; height: 24.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 18.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 24.30000114440918px; text-align: left; white-space: nowrap; color: rgba(110,120,133,1.0)">JooYoung Jang, Youngseo Cha, Jisu Kim, SooHyung Lee, Geonu Lee, Minkook Cho, Young Hwang, Nojun Kwak</div></div>
<div class="ft" data-id="1:30" style="position: absolute; left: 1698.0px; top: 966.0px; width: 142.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: right; white-space: nowrap; color: rgba(110,120,133,1.0)">May 11, 2024</div></div>
<div data-id="1:31" style="position: absolute; left: 1660.0px; top: 450.0px; width: 180.0px; height: 180.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box">
<div data-id="1:32" style="position: absolute; left: 30.0px; top: 37.499996185302734px; width: 119.99996948242188px; height: 105.00001525878906px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<svg data-id="1:33" style="position: absolute; left: 0.0px; top: 52.500003814697266px; width: 119.99996948242188px; height: 1px; opacity: 1.0; overflow: visible" viewBox="0 0 119.99996948242188 1" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 -8C-4.41828 -8 -8 -4.41828 -8 0C-8 4.41828 -4.41828 8 0 8L0 0L0 -8ZM120 8C124.418 8 128 4.41828 128 0C128 -4.41828 124.418 -8 120 -8L120 0L120 8ZM0 0L0 8L120 8L120 0L120 -8L0 -8L0 0Z" fill="rgba(48,66,88,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:34" style="position: absolute; left: 67.5px; top: 0.0px; width: 52.499969482421875px; height: 105.00001525878906px; opacity: 1.0; overflow: visible" viewBox="0 0 52.499969482421875 105.00001525878906" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M5.65686 -5.65685C2.53266 -8.78105 -2.53266 -8.78105 -5.65685 -5.65686C-8.78105 -2.53266 -8.78105 2.53266 -5.65686 5.65685L0 0L5.65686 -5.65685ZM52.5 52.5L58.1568 58.1569C61.281 55.0327 61.281 49.9674 58.1568 46.8432L52.5 52.5ZM-5.65686 99.3432C-8.78105 102.467 -8.78105 107.533 -5.65685 110.657C-2.53266 113.781 2.53266 113.781 5.65686 110.657L0 105L-5.65686 99.3432ZM0 0L-5.65686 5.65685L46.8431 58.1569L52.5 52.5L58.1568 46.8432L5.65686 -5.65685L0 0ZM52.5 52.5L46.8431 46.8432L-5.65686 99.3432L0 105L5.65686 110.657L58.1568 58.1569L52.5 52.5Z" fill="rgba(48,66,88,1.0)" fill-rule="nonzero"/></svg>
</div>
</div>
</div>
</div>
</div>
<div class="slide-container">
<div class="slide-label">Slide 1 — Frame</div>
<div class="slide-wrapper">
<div class="slide" data-slide-id="1:35" style="width: 1920.0px; height: 1080.0px; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
<div data-id="1:36" style="position: absolute; left: 80.0px; top: 192.0px; width: 543.0px; height: 219.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:37" style="position: absolute; left: 0.0px; top: 0.0px; width: 543.0px; height: 160.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 80.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: -1.6px; line-height: 80.0px; text-align: left; color: rgba(48,66,88,1.0)">Wildfire Statistics</div></div>
<div class="ft" data-id="1:38" style="position: absolute; left: 0.0px; top: 176.0px; width: 543.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 32.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 43.20000076293945px; text-align: left; white-space: nowrap; color: rgba(48,66,88,1.0)">2023 USA & Hawaii Wildfire</div></div>
</div>
<div data-id="1:39" style="position: absolute; left: 1382.0px; top: 0.0px; width: 538.0px; height: 1080.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(242,243,242,1.0); background-image: linear-gradient(rgba(242,243,242,1.0), rgba(242,243,242,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div data-id="1:40" style="position: absolute; left: 0.0px; top: 568.0px; width: 538.0px; height: 512.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: url('images/43c3de2053d9fbee60939901ce612b94c67c634c.png'); background-size: cover; background-position: center; background-repeat: no-repeat;"></div>
</div>
<div data-id="1:41" style="position: absolute; left: 1780.0px; top: 80.0px; width: 60.0px; height: 60.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: url('images/43c3de2053d9fbee60939901ce612b94c67c634c.png'); background-size: cover; background-position: center; background-repeat: no-repeat;; border-radius: 50%"></div>
<div data-id="1:42" style="position: absolute; left: 751.0px; top: 172.0px; width: 567.0px; height: 735.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:43" style="position: absolute; left: 0.0px; top: 0.0px; width: 567.0px; height: 192.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; color: rgba(110,120,133,1.0)">In the USA for 2023: 34.1K fires burned 15.1M acres. The Lahaina, Hawaii wildfire (Aug 2023) caused $4-6B in damages, 115 deaths, destroyed 2K homes across 2.7K acres. Early wildfire detection could prevent such damages.</div></div>
<div data-id="1:44" style="position: absolute; left: 0.0px; top: 264.0px; width: 567.0px; height: 247.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:45" style="position: absolute; left: 0.0px; top: 0.0px; width: 567.0px; height: 55.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 46.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 600; letter-spacing: -2.0px; line-height: 55.20000076293945px; text-align: left; white-space: nowrap; color: rgba(48,66,88,1.0)">Key Statistics</div></div>
<div data-id="1:46" style="position: absolute; left: 0.0px; top: 79.0px; width: 567.0px; height: 72.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:47" style="position: absolute; left: 0.0px; top: 0.0px; width: 60.0px; height: 60.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box">
<div data-id="1:48" style="position: absolute; left: 0.0px; top: 0.0px; width: 60.0px; height: 60.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: url('images/43c3de2053d9fbee60939901ce612b94c67c634c.png'); background-size: cover; background-position: center; background-repeat: no-repeat;"></div>
</div>
<div data-id="1:49" style="position: absolute; left: 84.0px; top: 0.0px; width: 294.0px; height: 72.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:50" style="position: absolute; left: 0.0px; top: 0.0px; width: 294.0px; height: 36.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 600; letter-spacing: 0.0px; line-height: 36.0px; text-align: left; white-space: nowrap; color: rgba(110,120,133,1.0)">34.1K Fires / 15.1M Acres</div></div>
<div data-id="1:51" style="position: absolute; left: 0.0px; top: 40.0px; width: 294.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:52" style="position: absolute; left: 0.0px; top: 0.0px; width: 110.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 19.871794871794872px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 26.826924340337772px; text-align: left; white-space: nowrap; color: rgba(110,120,133,1.0)">USA 2023</div></div>
<div data-id="1:53" style="position: absolute; left: 130.0px; top: 0.0px; width: 164.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:54" style="position: absolute; left: 0.0px; top: 0.0px; width: 54.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 23.71794871794872px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.01923227717734px; text-align: left; white-space: nowrap; color: rgba(172,179,188,1.0)">NIFC</div></div>
<div data-id="1:55" style="position: absolute; left: 58.0px; top: 17.0px; width: 1.9999991655349731px; height: 18.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: matrix(-4.371138828673793e-08, -1.0, 1.0, -4.371138828673793e-08, 0, 0); transform-origin: 0 0; background-color: rgba(172,179,188,1.0); background-image: linear-gradient(rgba(172,179,188,1.0), rgba(172,179,188,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div class="ft" data-id="1:56" style="position: absolute; left: 80.0px; top: 0.0px; width: 84.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; white-space: nowrap; color: rgba(172,179,188,1.0)">Source</div></div>
</div>
</div>
</div>
</div>
<div data-id="1:57" style="position: absolute; left: 0.0px; top: 175.0px; width: 567.0px; height: 72.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:58" style="position: absolute; left: 0.0px; top: 0.0px; width: 60.0px; height: 60.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box">
<div data-id="1:59" style="position: absolute; left: 0.0px; top: 0.0px; width: 60.0px; height: 60.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: url('images/43c3de2053d9fbee60939901ce612b94c67c634c.png'); background-size: cover; background-position: center; background-repeat: no-repeat;"></div>
</div>
<div data-id="1:60" style="position: absolute; left: 84.0px; top: 0.0px; width: 428.0px; height: 72.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:61" style="position: absolute; left: 0.0px; top: 0.0px; width: 428.0px; height: 36.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 600; letter-spacing: 0.0px; line-height: 36.0px; text-align: left; white-space: nowrap; color: rgba(110,120,133,1.0)">$4-6B Damages / 115 Deaths</div></div>
<div data-id="1:62" style="position: absolute; left: 0.0px; top: 40.0px; width: 428.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:63" style="position: absolute; left: 0.0px; top: 0.0px; width: 144.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.414918414918414px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 24.86014103092884px; text-align: left; white-space: nowrap; color: rgba(110,120,133,1.0)">Hawaii 2023</div></div>
<div data-id="1:64" style="position: absolute; left: 164.0px; top: 0.0px; width: 264.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:65" style="position: absolute; left: 0.0px; top: 0.0px; width: 118.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 22.115384615384617px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 29.85577063682752px; text-align: left; white-space: nowrap; color: rgba(172,179,188,1.0)">2K homes</div></div>
<div data-id="1:66" style="position: absolute; left: 122.0px; top: 17.0px; width: 1.9999991655349731px; height: 18.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: matrix(-4.371138828673793e-08, -1.0, 1.0, -4.371138828673793e-08, 0, 0); transform-origin: 0 0; background-color: rgba(172,179,188,1.0); background-image: linear-gradient(rgba(172,179,188,1.0), rgba(172,179,188,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div class="ft" data-id="1:67" style="position: absolute; left: 144.0px; top: 0.0px; width: 120.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; white-space: nowrap; color: rgba(172,179,188,1.0)">2.7K acres</div></div>
</div>
</div>
</div>
</div>
</div>
<div data-id="1:68" style="position: absolute; left: 0.0px; top: 583.0px; width: 567.0px; height: 152.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:69" style="position: absolute; left: 0.0px; top: 0.0px; width: 567.0px; height: 40.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 40.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 600; letter-spacing: -2.0px; line-height: 40.0px; text-align: left; white-space: nowrap; color: rgba(48,66,88,1.0)">Source</div></div>
<div data-id="1:70" style="position: absolute; left: 0.0px; top: 64.0px; width: 452.0px; height: 88.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:71" style="position: absolute; left: 0.0px; top: 0.0px; width: 452.0px; height: 40.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:72" style="position: absolute; left: 0.0px; top: 0.0px; width: 40.0px; height: 40.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-image: url('images/43c3de2053d9fbee60939901ce612b94c67c634c.png'); background-size: cover; background-position: center; background-repeat: no-repeat;">
</div>
<div class="ft" data-id="1:73" style="position: absolute; left: 64.0px; top: 4.0px; width: 388.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; white-space: nowrap; color: rgba(110,120,133,1.0)">National Interagency Fire Center</div></div>
</div>
<div data-id="1:74" style="position: absolute; left: 0.0px; top: 48.0px; width: 210.0px; height: 40.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:75" style="position: absolute; left: 0.0px; top: 0.0px; width: 40.0px; height: 40.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-image: url('images/43c3de2053d9fbee60939901ce612b94c67c634c.png'); background-size: cover; background-position: center; background-repeat: no-repeat;">
</div>
<div class="ft" data-id="1:76" style="position: absolute; left: 64.0px; top: 4.0px; width: 146.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; white-space: nowrap; color: rgba(110,120,133,1.0)">NCEI / NOAA</div></div>
</div>
</div>
</div>
</div>
<div class="ft" data-id="1:77" style="position: absolute; left: 80.0px; top: 80.0px; width: 19.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 32.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 43.20000076293945px; text-align: center; white-space: nowrap; color: rgba(110,120,133,1.0)">2</div></div>
<div class="ft" data-id="1:78" style="position: absolute; left: 80.0px; top: 966.0px; width: 268.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; white-space: nowrap; color: rgba(110,120,133,1.0)">company@email.com</div></div>
<div class="ft" data-id="1:79" style="position: absolute; left: 1576.0px; top: 966.0px; width: 264.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: right; white-space: nowrap; color: rgba(110,120,133,1.0)">@companyusername</div></div>
</div>
</div>
</div>
<div class="slide-container">
<div class="slide-label">Slide 2 — Frame</div>
<div class="slide-wrapper">
<div class="slide" data-slide-id="1:80" style="width: 1920.0px; height: 1080.0px; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
<div data-id="1:81" style="position: absolute; left: 1780.0px; top: 80.0px; width: 60.0px; height: 60.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: url('images/43c3de2053d9fbee60939901ce612b94c67c634c.png'); background-size: cover; background-position: center; background-repeat: no-repeat;; border-radius: 50%"></div>
<div class="ft" data-id="1:82" style="position: absolute; left: 140.0px; top: 60.0px; width: 900.0px; height: 70.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 56.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: -1.12px; line-height: 56.0px; text-align: left; white-space: nowrap; color: rgba(48,66,88,1.0)">Damage caused by wildfires</div></div>
<div class="ft" data-id="1:83" style="position: absolute; left: 80.0px; top: 80.0px; width: 19.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 32.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 43.20000076293945px; text-align: center; white-space: nowrap; color: rgba(110,120,133,1.0)">3</div></div>
<div class="ft" data-id="1:84" style="position: absolute; left: 80.0px; top: 966.0px; width: 268.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; white-space: nowrap; color: rgba(110,120,133,1.0)">company@email.com</div></div>
<div class="ft" data-id="1:85" style="position: absolute; left: 1576.0px; top: 966.0px; width: 264.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: right; white-space: nowrap; color: rgba(110,120,133,1.0)">@companyusername</div></div>
<div class="ft" data-id="1:86" style="position: absolute; left: 140.0px; top: 130.0px; width: 280.0px; height: 24.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 20.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 24.204544067382812px; text-align: left; white-space: nowrap; color: rgba(102,102,102,1.0)">Lahaina, Hawaii, Aug. 8, 2023</div></div>
<div data-id="1:87" style="position: absolute; left: 280.0px; top: 365.0px; width: 200.0px; height: 200.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box">
<svg data-id="1:88" style="position: absolute; left: 5.55555534362793px; top: 22.22222137451172px; width: 188.88888549804688px; height: 177.77777099609375px; opacity: 0.30000001192092896; overflow: visible" viewBox="0 0 188.88888549804688 177.77777099609375" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M94.4444 177.778C146.605 177.778 188.889 137.981 188.889 88.8889C188.889 39.7969 146.605 0 94.4444 0C42.2842 0 0 39.7969 0 88.8889C0 137.981 42.2842 177.778 94.4444 177.778Z" fill="rgba(245,166,35,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:89" style="position: absolute; left: 22.22222137451172px; top: 58.024688720703125px; width: 155.55555725097656px; height: 97.53086853027344px; opacity: 1.0; overflow: visible" viewBox="0 0 155.55555725097656 97.53086853027344" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 97.5309C7.40741 38.2716 22.2222 16.0494 44.4444 30.8642C51.8519 1.23457 62.963 -2.46914 77.7778 19.7531C92.5926 -9.87654 103.704 -6.17284 111.111 30.8642C133.333 8.64197 148.148 30.8642 155.556 97.5309L0 97.5309Z" fill="rgba(245,166,35,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:90" style="position: absolute; left: 38.88888931274414px; top: 80.15873718261719px; width: 127.77777862548828px; height: 75.39682006835938px; opacity: 1.0; overflow: visible" viewBox="0 0 127.77777862548828 75.39682006835938" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 75.3968C7.40741 30.9524 20.3704 14.2857 38.8889 25.3968C46.2963 -0.529101 53.7037 -4.2328 61.1111 14.2857C68.5185 -7.93651 77.7778 -4.2328 88.8889 25.3968C107.407 6.87831 120.37 23.545 127.778 75.3968L0 75.3968Z" fill="rgba(232,133,28,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:91" style="position: absolute; left: 61.11111068725586px; top: 94.44444274902344px; width: 77.77777862548828px; height: 61.11111068725586px; opacity: 1.0; overflow: visible" viewBox="0 0 77.77777862548828 61.11111068725586" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M74.4445 0L3.33333 0C1.49238 0 0 1.49238 0 3.33333L0 57.7778C0 59.6187 1.49238 61.1111 3.33333 61.1111L74.4445 61.1111C76.2854 61.1111 77.7778 59.6187 77.7778 57.7778L77.7778 3.33333C77.7778 1.49238 76.2854 0 74.4445 0Z" fill="rgba(74,144,217,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:92" style="position: absolute; left: 50.0px; top: 61.11111068725586px; width: 100.0px; height: 38.88888931274414px; opacity: 1.0; overflow: visible" viewBox="0 0 100.0 38.88888931274414" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M50 0L0 38.8889L100 38.8889L50 0Z" fill="rgba(58,123,200,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:93" style="position: absolute; left: 72.22222137451172px; top: 105.55555725097656px; width: 20.0px; height: 20.0px; opacity: 1.0; overflow: visible" viewBox="0 0 20.0 20.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M17.7778 0L2.22222 0C0.994923 0 0 0.994923 0 2.22222L0 17.7778C0 19.0051 0.994923 20 2.22222 20L17.7778 20C19.0051 20 20 19.0051 20 17.7778L20 2.22222C20 0.994923 19.0051 0 17.7778 0Z" fill="rgba(44,95,158,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:94" style="position: absolute; left: 107.77777862548828px; top: 105.55555725097656px; width: 20.0px; height: 20.0px; opacity: 1.0; overflow: visible" viewBox="0 0 20.0 20.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M17.7778 0L2.22222 0C0.994923 0 0 0.994923 0 2.22222L0 17.7778C0 19.0051 0.994923 20 2.22222 20L17.7778 20C19.0051 20 20 19.0051 20 17.7778L20 2.22222C20 0.994923 19.0051 0 17.7778 0Z" fill="rgba(44,95,158,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:95" style="position: absolute; left: 88.88888549804688px; top: 127.77777862548828px; width: 22.22222137451172px; height: 27.77777862548828px; opacity: 1.0; overflow: visible" viewBox="0 0 22.22222137451172 27.77777862548828" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M20 0L2.22222 0C0.994923 0 0 0.994923 0 2.22222L0 25.5556C0 26.7829 0.994923 27.7778 2.22222 27.7778L20 27.7778C21.2273 27.7778 22.2222 26.7829 22.2222 25.5556L22.2222 2.22222C22.2222 0.994923 21.2273 0 20 0Z" fill="rgba(44,95,158,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:96" style="position: absolute; left: 155.55555725097656px; top: 100.0px; width: 6.666666507720947px; height: 38.88888931274414px; opacity: 1.0; overflow: visible" viewBox="0 0 6.666666507720947 38.88888931274414" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M6.66667 0L0 0L0 38.8889L6.66667 38.8889L6.66667 0Z" fill="rgba(139,105,20,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:97" style="position: absolute; left: 143.3333282470703px; top: 73.33333587646484px; width: 31.11111068725586px; height: 31.11111068725586px; opacity: 1.0; overflow: visible" viewBox="0 0 31.11111068725586 31.11111068725586" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M15.5556 31.1111C24.1467 31.1111 31.1111 24.1467 31.1111 15.5556C31.1111 6.96446 24.1467 0 15.5556 0C6.96446 0 0 6.96446 0 15.5556C0 24.1467 6.96446 31.1111 15.5556 31.1111Z" fill="rgba(232,133,28,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:98" style="position: absolute; left: 138.88888549804688px; top: 83.33333587646484px; width: 22.22222137451172px; height: 22.22222137451172px; opacity: 1.0; overflow: visible" viewBox="0 0 22.22222137451172 22.22222137451172" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M11.1111 22.2222C17.2476 22.2222 22.2222 17.2476 22.2222 11.1111C22.2222 4.97461 17.2476 0 11.1111 0C4.97461 0 0 4.97461 0 11.1111C0 17.2476 4.97461 22.2222 11.1111 22.2222Z" fill="rgba(245,166,35,1.0)" fill-rule="nonzero"/></svg>
</div>
<div data-id="1:99" style="position: absolute; left: 650.0px; top: 365.0px; width: 200.0px; height: 200.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box">
<svg data-id="1:100" style="position: absolute; left: 27.77777862548828px; top: 83.33333587646484px; width: 144.44444274902344px; height: 83.33333587646484px; opacity: 1.0; overflow: visible" viewBox="0 0 144.44444274902344 83.33333587646484" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M135.556 0L8.88889 0C3.97969 0 0 3.97969 0 8.88889L0 74.4445C0 79.3536 3.97969 83.3333 8.88889 83.3333L135.556 83.3333C140.465 83.3333 144.444 79.3536 144.444 74.4445L144.444 8.88889C144.444 3.97969 140.465 0 135.556 0Z" fill="rgba(76,175,80,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:101" style="position: absolute; left: 33.33333206176758px; top: 88.88888549804688px; width: 133.3333282470703px; height: 72.22222137451172px; opacity: 1.0; overflow: visible" viewBox="0 0 133.3333282470703 72.22222137451172" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M127.778 0L5.55556 0C2.48731 0 0 2.48731 0 5.55556L0 66.6667C0 69.7349 2.48731 72.2222 5.55556 72.2222L127.778 72.2222C130.846 72.2222 133.333 69.7349 133.333 66.6667L133.333 5.55556C133.333 2.48731 130.846 0 127.778 0Z" fill="rgba(102,187,106,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:102" style="position: absolute; left: 16.66666603088379px; top: 61.11111068725586px; width: 144.44444274902344px; height: 83.33333587646484px; opacity: 1.0; overflow: visible" viewBox="0 0 144.44444274902344 83.33333587646484" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M135.556 0L8.88889 0C3.97969 0 0 3.97969 0 8.88889L0 74.4445C0 79.3536 3.97969 83.3333 8.88889 83.3333L135.556 83.3333C140.465 83.3333 144.444 79.3536 144.444 74.4445L144.444 8.88889C144.444 3.97969 140.465 0 135.556 0Z" fill="rgba(102,187,106,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:103" style="position: absolute; left: 22.22222137451172px; top: 66.66666412353516px; width: 133.3333282470703px; height: 72.22222137451172px; opacity: 1.0; overflow: visible" viewBox="0 0 133.3333282470703 72.22222137451172" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M127.778 0L5.55556 0C2.48731 0 0 2.48731 0 5.55556L0 66.6667C0 69.7349 2.48731 72.2222 5.55556 72.2222L127.778 72.2222C130.846 72.2222 133.333 69.7349 133.333 66.6667L133.333 5.55556C133.333 2.48731 130.846 0 127.778 0Z" fill="rgba(129,199,132,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:104" style="position: absolute; left: 64.44444274902344px; top: 77.77777862548828px; width: 48.88888931274414px; height: 48.88888931274414px; opacity: 0.4000000059604645; overflow: visible" viewBox="0 0 48.88888931274414 48.88888931274414" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M24.4444 48.8889C37.9447 48.8889 48.8889 37.9447 48.8889 24.4444C48.8889 10.9442 37.9447 0 24.4444 0C10.9442 0 0 10.9442 0 24.4444C0 37.9447 10.9442 48.8889 24.4444 48.8889Z" fill="rgba(76,175,80,1.0)" fill-rule="nonzero"/></svg>
<div class="ft" data-id="1:105" style="position: absolute; left: 80.0px; top: 80.0px; width: 17.77777862548828px; height: 35.55555725097656px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 28.0px; font-family: 'Arial', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 0.0px; line-height: 32.197265625px; text-align: center; white-space: nowrap; color: rgba(255,255,255,1.0)">$</div></div>
</div>
<div data-id="1:106" style="position: absolute; left: 1020.0px; top: 345.0px; width: 200.0px; height: 220.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box">
<svg data-id="1:107" style="position: absolute; left: 22.22222137451172px; top: 165.0px; width: 155.55555725097656px; height: 48.88888931274414px; opacity: 1.0; overflow: visible" viewBox="0 0 155.55555725097656 48.88888931274414" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M77.7778 48.8889C120.733 48.8889 155.556 37.9447 155.556 24.4444C155.556 10.9441 120.733 0 77.7778 0C34.8223 0 0 10.9441 0 24.4444C0 37.9447 34.8223 48.8889 77.7778 48.8889Z" fill="rgba(129,199,132,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:108" style="position: absolute; left: 38.88888931274414px; top: 168.6666717529297px; width: 122.22222137451172px; height: 29.33333396911621px; opacity: 1.0; overflow: visible" viewBox="0 0 122.22222137451172 29.33333396911621" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M61.1111 29.3333C94.8618 29.3333 122.222 22.7668 122.222 14.6667C122.222 6.56649 94.8618 0 61.1111 0C27.3604 0 0 6.56649 0 14.6667C0 22.7668 27.3604 29.3333 61.1111 29.3333Z" fill="rgba(102,187,106,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:109" style="position: absolute; left: 55.55555725097656px; top: 30.55555534362793px; width: 88.88888549804688px; height: 152.77777099609375px; opacity: 1.0; overflow: visible" viewBox="0 0 88.88888549804688 152.77777099609375" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 152.778L0 42.7778C0 14.2593 14.8148 0 44.4444 0C74.0741 0 88.8889 14.2593 88.8889 42.7778L88.8889 152.778L0 152.778Z" fill="rgba(224,224,224,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:110" style="position: absolute; left: 61.11111068725586px; top: 39.11111068725586px; width: 77.77777862548828px; height: 141.77777099609375px; opacity: 1.0; overflow: visible" viewBox="0 0 77.77777862548828 141.77777099609375" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 141.778L0 37.8889C0 12.6296 12.963 0 38.8889 0C64.8148 0 77.7778 12.6296 77.7778 37.8889L77.7778 141.778L0 141.778Z" fill="rgba(238,238,238,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:111" style="position: absolute; left: 91.11111450195312px; top: 61.11111068725586px; width: 17.77777862548828px; height: 67.22222137451172px; opacity: 1.0; overflow: visible" viewBox="0 0 17.77777862548828 67.22222137451172" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M14.4444 0L3.33333 0C1.49238 0 0 1.64162 0 3.66667L0 63.5556C0 65.5806 1.49238 67.2222 3.33333 67.2222L14.4444 67.2222C16.2854 67.2222 17.7778 65.5806 17.7778 63.5556L17.7778 3.66667C17.7778 1.64162 16.2854 0 14.4444 0Z" fill="rgba(84,110,122,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:112" style="position: absolute; left: 75.55555725097656px; top: 75.77777862548828px; width: 48.88888931274414px; height: 19.55555534362793px; opacity: 1.0; overflow: visible" viewBox="0 0 48.88888931274414 19.55555534362793" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M45.5556 0L3.33333 0C1.49238 0 0 1.64162 0 3.66667L0 15.8889C0 17.9139 1.49238 19.5556 3.33333 19.5556L45.5556 19.5556C47.3965 19.5556 48.8889 17.9139 48.8889 15.8889L48.8889 3.66667C48.8889 1.64162 47.3965 0 45.5556 0Z" fill="rgba(84,110,122,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:113" style="position: absolute; left: 75.55555725097656px; top: 140.55555725097656px; width: 48.88888931274414px; height: 4.888888835906982px; opacity: 1.0; overflow: visible" viewBox="0 0 48.88888931274414 4.888888835906982" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M46.6667 0L2.22222 0C0.994923 0 0 1.09441 0 2.44444C0 3.79447 0.994923 4.88889 2.22222 4.88889L46.6667 4.88889C47.894 4.88889 48.8889 3.79447 48.8889 2.44444C48.8889 1.09441 47.894 0 46.6667 0Z" fill="rgba(189,189,189,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:114" style="position: absolute; left: 81.11111450195312px; top: 152.77777099609375px; width: 37.77777862548828px; height: 4.888888835906982px; opacity: 1.0; overflow: visible" viewBox="0 0 37.77777862548828 4.888888835906982" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M35.5556 0L2.22222 0C0.994923 0 0 1.09441 0 2.44444C0 3.79447 0.994923 4.88889 2.22222 4.88889L35.5556 4.88889C36.7829 4.88889 37.7778 3.79447 37.7778 2.44444C37.7778 1.09441 36.7829 0 35.5556 0Z" fill="rgba(189,189,189,1.0)" fill-rule="nonzero"/></svg>
</div>
<div data-id="1:115" style="position: absolute; left: 1390.0px; top: 365.0px; width: 200.0px; height: 200.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box">
<svg data-id="1:116" style="position: absolute; left: 111.11111450195312px; top: 11.11111068725586px; width: 79.16666412353516px; height: 155.55555725097656px; opacity: 0.800000011920929; overflow: visible" viewBox="0 0 79.16666412353516 155.55555725097656" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0C14.8148 22.2222 29.6296 25.9259 44.4444 11.1111C51.8518 40.7407 62.963 51.8519 77.7778 44.4444C81.4815 74.0741 77.7778 100 66.6667 122.222L66.6667 155.556L0 155.556L0 0Z" fill="rgba(244,67,54,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:117" style="position: absolute; left: 122.22222137451172px; top: 33.33333206176758px; width: 62.5px; height: 133.3333282470703px; opacity: 0.699999988079071; overflow: visible" viewBox="0 0 62.5 133.3333282470703" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0C11.1111 18.5185 24.0741 22.2222 38.8889 11.1111C46.2963 37.037 53.7037 46.2963 61.1111 38.8889C64.8148 64.8148 61.1111 87.037 50 105.556L50 133.333L0 133.333L0 0Z" fill="rgba(255,87,34,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:118" style="position: absolute; left: 133.3333282470703px; top: 55.55555725097656px; width: 50.47618865966797px; height: 111.11111450195312px; opacity: 0.6000000238418579; overflow: visible" viewBox="0 0 50.47618865966797 111.11111450195312" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0C7.40741 14.8148 18.5185 16.6667 33.3333 5.55556C37.037 27.7778 42.5926 37.037 50 33.3333C52.2222 51.8519 46.6667 70.3704 33.3333 88.8889L33.3333 111.111L0 111.111L0 0Z" fill="rgba(255,152,0,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:119" style="position: absolute; left: 44.44444274902344px; top: 88.88888549804688px; width: 33.33333206176758px; height: 77.77777862548828px; opacity: 1.0; overflow: visible" viewBox="0 0 33.33333206176758 77.77777862548828" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 77.7778L16.6667 0L33.3333 77.7778L0 77.7778Z" fill="rgba(56,142,60,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:120" style="position: absolute; left: 38.88888931274414px; top: 100.0px; width: 44.44444274902344px; height: 66.66666412353516px; opacity: 1.0; overflow: visible" viewBox="0 0 44.44444274902344 66.66666412353516" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 66.6667L22.2222 0L44.4444 66.6667L0 66.6667Z" fill="rgba(76,175,80,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:121" style="position: absolute; left: 57.77777862548828px; top: 155.55555725097656px; width: 6.666666507720947px; height: 16.66666603088379px; opacity: 1.0; overflow: visible" viewBox="0 0 6.666666507720947 16.66666603088379" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M6.66667 0L0 0L0 16.6667L6.66667 16.6667L6.66667 0Z" fill="rgba(121,85,72,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:122" style="position: absolute; left: 83.33333587646484px; top: 77.77777862548828px; width: 33.33333206176758px; height: 88.88888549804688px; opacity: 1.0; overflow: visible" viewBox="0 0 33.33333206176758 88.88888549804688" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 88.8889L16.6667 0L33.3333 88.8889L0 88.8889Z" fill="rgba(56,142,60,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:123" style="position: absolute; left: 77.77777862548828px; top: 88.88888549804688px; width: 44.44444274902344px; height: 77.77777862548828px; opacity: 1.0; overflow: visible" viewBox="0 0 44.44444274902344 77.77777862548828" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 77.7778L22.2222 0L44.4444 77.7778L0 77.7778Z" fill="rgba(76,175,80,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:124" style="position: absolute; left: 96.66666412353516px; top: 155.55555725097656px; width: 6.666666507720947px; height: 16.66666603088379px; opacity: 1.0; overflow: visible" viewBox="0 0 6.666666507720947 16.66666603088379" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M6.66667 0L0 0L0 16.6667L6.66667 16.6667L6.66667 0Z" fill="rgba(121,85,72,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:125" style="position: absolute; left: 61.11111068725586px; top: 111.11111450195312px; width: 33.33333206176758px; height: 55.55555725097656px; opacity: 1.0; overflow: visible" viewBox="0 0 33.33333206176758 55.55555725097656" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 55.5556L16.6667 0L33.3333 55.5556L0 55.5556Z" fill="rgba(46,125,50,1.0)" fill-rule="nonzero"/></svg>
</div>
<div class="ft" data-id="1:126" style="position: absolute; left: 290.0px; top: 595.0px; width: 170.0px; height: 44.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 36.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 43.568180084228516px; text-align: center; white-space: nowrap; color: rgba(38,38,38,1.0)">2K homes</div></div>
<div class="ft" data-id="1:127" style="position: absolute; left: 620.0px; top: 595.0px; width: 232.0px; height: 44.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 36.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 43.568180084228516px; text-align: center; white-space: nowrap; color: rgba(38,38,38,1.0)">$ 4 ~ 6 billion</div></div>
<div class="ft" data-id="1:128" style="position: absolute; left: 1030.0px; top: 595.0px; width: 164.0px; height: 44.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 36.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 43.568180084228516px; text-align: center; white-space: nowrap; color: rgba(38,38,38,1.0)">115 death</div></div>
<div class="ft" data-id="1:129" style="position: absolute; left: 1400.0px; top: 595.0px; width: 179.0px; height: 44.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 36.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 43.568180084228516px; text-align: center; white-space: nowrap; color: rgba(38,38,38,1.0)">2.7K acres</div></div>
<div class="ft" data-id="1:130" style="position: absolute; left: 280.0px; top: 695.0px; width: 849.0px; height: 39.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 32.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 38.727272033691406px; text-align: left; white-space: nowrap; color: rgba(51,51,51,1.0)">➜ Early Wildfire Detection could prevent such damages</div></div>
</div>
</div>
</div>
<div class="slide-container">
<div class="slide-label">Slide 3 — Frame</div>
<div class="slide-wrapper">
<div class="slide" data-slide-id="1:131" style="width: 1920.0px; height: 1080.0px; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
<div data-id="1:132" style="position: absolute; left: 1780.0px; top: 80.0px; width: 60.0px; height: 60.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: url('images/43c3de2053d9fbee60939901ce612b94c67c634c.png'); background-size: cover; background-position: center; background-repeat: no-repeat;; border-radius: 50%"></div>
<div data-id="1:133" style="position: absolute; left: 242.0px; top: -215.0px; width: 571.0px; height: 571.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:134" style="position: absolute; left: 228.39950561523438px; top: 228.39996337890625px; width: 114.20000457763672px; height: 114.20000457763672px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border-radius: 50%"></div>
<div data-id="1:135" style="position: absolute; left: 152.26634216308594px; top: 152.2667236328125px; width: 266.4667053222656px; height: 266.4667053222656px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: linear-gradient(rgba(48,66,88,0.800000011920929), rgba(48,66,88,0.800000011920929)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border-radius: 50%"></div>
<div data-id="1:136" style="position: absolute; left: 76.13317108154297px; top: 76.13324737548828px; width: 418.7333679199219px; height: 418.7333679199219px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: linear-gradient(rgba(48,66,88,0.6000000238418579), rgba(48,66,88,0.6000000238418579)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border-radius: 50%"></div>
<div data-id="1:137" style="position: absolute; left: 0.0px; top: 0.0px; width: 571.0px; height: 571.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: linear-gradient(rgba(48,66,88,0.4000000059604645), rgba(48,66,88,0.4000000059604645)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border-radius: 50%"></div>
</div>
<div class="ft" data-id="1:138" style="position: absolute; left: 80.0px; top: 570.0px; width: 591.0px; height: 280.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 128.75894988066824px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: -2.575178997613365px; line-height: 128.75894988066824px; text-align: left; white-space: nowrap; color: rgba(48,66,88,1.0)">The
Problem</div></div>
<div data-id="1:139" style="position: absolute; left: 1165.0px; top: 566.0px; width: 595.0px; height: 292.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:140" style="position: absolute; left: 0.0px; top: 0.0px; width: 595.0px; height: 76.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 32.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 600; letter-spacing: -2.0px; line-height: 38.400001525878906px; text-align: left; color: rgba(48,66,88,1.0)">Why Semi-Supervised Domain Adaptation?</div></div>
<div class="ft" data-id="1:141" style="position: absolute; left: 0.0px; top: 100.0px; width: 595.0px; height: 192.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; color: rgba(110,120,133,1.0)">Domain shift occurs between training & testing environments. Limited number of target domain labeled images are available. We enhance performance by combining state-of-the-art SSL and UDA algorithms for semi-supervised domain adaptation.</div></div>
</div>
<div class="ft" data-id="1:142" style="position: absolute; left: 79.0px; top: 80.0px; width: 21.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 32.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 43.20000076293945px; text-align: center; white-space: nowrap; color: rgba(110,120,133,1.0)">4</div></div>
<div class="ft" data-id="1:143" style="position: absolute; left: 80.0px; top: 966.0px; width: 268.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; white-space: nowrap; color: rgba(110,120,133,1.0)">company@email.com</div></div>
<div class="ft" data-id="1:144" style="position: absolute; left: 1576.0px; top: 966.0px; width: 264.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: right; white-space: nowrap; color: rgba(110,120,133,1.0)">@companyusername</div></div>
</div>
</div>
</div>
<div class="slide-container">
<div class="slide-label">Slide 4 — Frame</div>
<div class="slide-wrapper">
<div class="slide" data-slide-id="1:145" style="width: 1920.0px; height: 1080.0px; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
<div data-id="1:146" style="position: absolute; left: 1780.0px; top: 80.0px; width: 60.0px; height: 60.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: url('images/43c3de2053d9fbee60939901ce612b94c67c634c.png'); background-size: cover; background-position: center; background-repeat: no-repeat;; border-radius: 50%"></div>
<div data-id="1:147" style="position: absolute; left: 857.0px; top: -173.0px; width: 533.0px; height: 533.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<svg data-id="1:148" style="position: absolute; left: 163.9990692138672px; top: 164.0px; width: 205.00003051757812px; height: 205.00003051757812px; opacity: 1.0; overflow: visible" viewBox="0 0 205.00003051757812 205.00003051757812" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M205 102.5L204 102.5C204 158.557 158.557 204 102.5 204L102.5 205L102.5 206C159.661 206 206 159.661 206 102.5L205 102.5ZM102.5 205L102.5 204C46.4431 204 1 158.557 1 102.5L0 102.5L-1 102.5C-1 159.661 45.3385 206 102.5 206L102.5 205ZM0 102.5L1 102.5C1 46.4431 46.4431 1 102.5 1L102.5 0L102.5 -1C45.3385 -1 -1 45.3385 -1 102.5L0 102.5ZM102.5 0L102.5 1C158.557 1 204 46.4431 204 102.5L205 102.5L206 102.5C206 45.3385 159.661 -1 102.5 -1L102.5 0Z" fill="rgba(48,66,88,0.20000000298023224)" fill-rule="nonzero"/></svg>
<div data-id="1:149" style="position: absolute; left: 244.10110473632812px; top: 244.0994110107422px; width: 40.72848129272461px; height: 40.72848129272461px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(239,189,156,1.0); background-image: linear-gradient(rgba(239,189,156,1.0), rgba(239,189,156,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border-radius: 50%"></div>
<svg data-id="1:150" style="position: absolute; left: 81.99989318847656px; top: 82.0000228881836px; width: 369.0000305175781px; height: 369.0000305175781px; opacity: 1.0; overflow: visible" viewBox="0 0 369.0000305175781 369.0000305175781" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M369 184.5L368 184.5C368 285.844 285.844 368 184.5 368L184.5 369L184.5 370C286.949 370 370 286.949 370 184.5L369 184.5ZM184.5 369L184.5 368C83.1558 368 1 285.844 1 184.5L0 184.5L-1 184.5C-1 286.949 82.0512 370 184.5 370L184.5 369ZM0 184.5L1 184.5C1 83.1558 83.1558 1 184.5 1L184.5 0L184.5 -1C82.0512 -1 -1 82.0512 -1 184.5L0 184.5ZM184.5 0L184.5 1C285.844 1 368 83.1558 368 184.5L369 184.5L370 184.5C370 82.0512 286.949 -1 184.5 -1L184.5 0Z" fill="rgba(48,66,88,0.20000000298023224)" fill-rule="nonzero"/></svg>
<svg data-id="1:151" style="position: absolute; left: 0.0px; top: 0.0px; width: 533.0px; height: 533.0px; opacity: 1.0; overflow: visible" viewBox="0 0 533.0 533.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M533 266.5L532 266.5C532 413.132 413.132 532 266.5 532L266.5 533L266.5 534C414.236 534 534 414.236 534 266.5L533 266.5ZM266.5 533L266.5 532C119.868 532 1 413.132 1 266.5L0 266.5L-1 266.5C-1 414.236 118.764 534 266.5 534L266.5 533ZM0 266.5L1 266.5C1 119.868 119.868 1 266.5 1L266.5 0L266.5 -1C118.764 -1 -1 118.764 -1 266.5L0 266.5ZM266.5 0L266.5 1C413.132 1 532 119.868 532 266.5L533 266.5L534 266.5C534 118.764 414.236 -1 266.5 -1L266.5 0Z" fill="rgba(48,66,88,0.20000000298023224)" fill-rule="nonzero"/></svg>
</div>
<div data-id="1:152" style="position: absolute; left: 1548.0px; top: 247.0px; width: 366.0px; height: 366.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<svg data-id="1:153" style="position: absolute; left: 112.6149673461914px; top: 112.6153793334961px; width: 140.76925659179688px; height: 140.76925659179688px; opacity: 1.0; overflow: visible" viewBox="0 0 140.76925659179688 140.76925659179688" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M140.769 70.3846L139.769 70.3846C139.769 108.705 108.705 139.769 70.3846 139.769L70.3846 140.769L70.3846 141.769C109.809 141.769 141.769 109.809 141.769 70.3846L140.769 70.3846ZM70.3846 140.769L70.3846 139.769C32.0646 139.769 1 108.705 1 70.3846L0 70.3846L-1 70.3846C-1 109.809 30.96 141.769 70.3846 141.769L70.3846 140.769ZM0 70.3846L1 70.3846C1 32.0646 32.0646 1 70.3846 1L70.3846 0L70.3846 -1C30.96 -1 -1 30.96 -1 70.3846L0 70.3846ZM70.3846 0L70.3846 1C108.705 1 139.769 32.0646 139.769 70.3846L140.769 70.3846L141.769 70.3846C141.769 30.96 109.809 -1 70.3846 -1L70.3846 0Z" fill="rgba(48,66,88,0.20000000298023224)" fill-rule="nonzero"/></svg>
<div data-id="1:154" style="position: absolute; left: 167.61895751953125px; top: 167.6179962158203px; width: 27.96739959716797px; height: 27.96739959716797px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(239,189,156,1.0); background-image: linear-gradient(rgba(239,189,156,1.0), rgba(239,189,156,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border-radius: 50%"></div>
<svg data-id="1:155" style="position: absolute; left: 56.30778503417969px; top: 56.307708740234375px; width: 253.3846435546875px; height: 253.3846435546875px; opacity: 1.0; overflow: visible" viewBox="0 0 253.3846435546875 253.3846435546875" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M253.385 126.692L252.385 126.692C252.385 196.11 196.11 252.385 126.692 252.385L126.692 253.385L126.692 254.385C197.215 254.385 254.385 197.215 254.385 126.692L253.385 126.692ZM126.692 253.385L126.692 252.385C57.2744 252.385 1 196.11 1 126.692L0 126.692L-1 126.692C-1 197.215 56.1698 254.385 126.692 254.385L126.692 253.385ZM0 126.692L1 126.692C1 57.2744 57.2744 1 126.692 1L126.692 0L126.692 -1C56.1698 -1 -1 56.1698 -1 126.692L0 126.692ZM126.692 0L126.692 1C196.11 1 252.385 57.2744 252.385 126.692L253.385 126.692L254.385 126.692C254.385 56.1698 197.215 -1 126.692 -1L126.692 0Z" fill="rgba(48,66,88,0.20000000298023224)" fill-rule="nonzero"/></svg>
<svg data-id="1:156" style="position: absolute; left: 0.0px; top: 0.0px; width: 366.0px; height: 366.0px; opacity: 1.0; overflow: visible" viewBox="0 0 366.0 366.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M366 183L365 183C365 283.516 283.516 365 183 365L183 366L183 367C284.62 367 367 284.62 367 183L366 183ZM183 366L183 365C82.4842 365 1 283.516 1 183L0 183L-1 183C-1 284.62 81.3796 367 183 367L183 366ZM0 183L1 183C1 82.4842 82.4842 1 183 1L183 0L183 -1C81.3796 -1 -1 81.3796 -1 183L0 183ZM183 0L183 1C283.516 1 365 82.4842 365 183L366 183L367 183C367 81.3796 284.62 -1 183 -1L183 0Z" fill="rgba(48,66,88,0.20000000298023224)" fill-rule="nonzero"/></svg>
</div>
<div data-id="1:157" style="position: absolute; left: 1353.06640625px; top: 64.99951171875px; width: 295.93359375px; height: 295.93359375px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<svg data-id="1:158" style="position: absolute; left: 91.05635070800781px; top: 91.05648803710938px; width: 113.82063293457031px; height: 113.82063293457031px; opacity: 1.0; overflow: visible" viewBox="0 0 113.82063293457031 113.82063293457031" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M113.821 56.9103L112.821 56.9103C112.821 87.7887 87.7887 112.821 56.9103 112.821L56.9103 113.821L56.9103 114.821C88.8933 114.821 114.821 88.8933 114.821 56.9103L113.821 56.9103ZM56.9103 113.821L56.9103 112.821C26.0319 112.821 1 87.7887 1 56.9103L0 56.9103L-1 56.9103C-1 88.8933 24.9273 114.821 56.9103 114.821L56.9103 113.821ZM0 56.9103L1 56.9103C1 26.0319 26.0319 1 56.9103 1L56.9103 0L56.9103 -1C24.9273 -1 -1 24.9273 -1 56.9103L0 56.9103ZM56.9103 0L56.9103 1C87.7887 1 112.821 26.0319 112.821 56.9103L113.821 56.9103L114.821 56.9103C114.821 24.9273 88.8933 -1 56.9103 -1L56.9103 0Z" fill="rgba(48,66,88,0.6000000238418579)" fill-rule="nonzero"/></svg>
<div data-id="1:159" style="position: absolute; left: 135.53004455566406px; top: 135.5294952392578px; width: 22.61336898803711px; height: 22.61336898803711px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border-radius: 50%"></div>
<svg data-id="1:160" style="position: absolute; left: 45.528175354003906px; top: 45.52824401855469px; width: 204.8771209716797px; height: 204.8771209716797px; opacity: 1.0; overflow: visible" viewBox="0 0 204.8771209716797 204.8771209716797" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M204.877 102.439L203.877 102.439C203.877 158.462 158.462 203.877 102.439 203.877L102.439 204.877L102.439 205.877C159.566 205.877 205.877 159.566 205.877 102.439L204.877 102.439ZM102.439 204.877L102.439 203.877C46.4156 203.877 1 158.462 1 102.439L0 102.439L-1 102.439C-1 159.566 45.311 205.877 102.439 205.877L102.439 204.877ZM0 102.439L1 102.439C1 46.4156 46.4156 1 102.439 1L102.439 0L102.439 -1C45.311 -1 -1 45.311 -1 102.439L0 102.439ZM102.439 0L102.439 1C158.462 1 203.877 46.4156 203.877 102.439L204.877 102.439L205.877 102.439C205.877 45.311 159.566 -1 102.439 -1L102.439 0Z" fill="rgba(48,66,88,0.6000000238418579)" fill-rule="nonzero"/></svg>
<svg data-id="1:161" style="position: absolute; left: 0.0px; top: 0.0px; width: 295.93359375px; height: 295.93359375px; opacity: 1.0; overflow: visible" viewBox="0 0 295.93359375 295.93359375" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M295.934 147.967L294.934 147.967C294.934 229.134 229.134 294.934 147.967 294.934L147.967 295.934L147.967 296.934C230.239 296.934 296.934 230.239 296.934 147.967L295.934 147.967ZM147.967 295.934L147.967 294.934C66.7993 294.934 1 229.134 1 147.967L0 147.967L-1 147.967C-1 230.239 65.6947 296.934 147.967 296.934L147.967 295.934ZM0 147.967L1 147.967C1 66.7993 66.7993 1 147.967 1L147.967 0L147.967 -1C65.6947 -1 -1 65.6947 -1 147.967L0 147.967ZM147.967 0L147.967 1C229.134 1 294.934 66.7993 294.934 147.967L295.934 147.967L296.934 147.967C296.934 65.6947 230.239 -1 147.967 -1L147.967 0Z" fill="rgba(48,66,88,0.6000000238418579)" fill-rule="nonzero"/></svg>
</div>
<div class="ft" data-id="1:162" style="position: absolute; left: 80.0px; top: 172.0px; width: 426.0px; height: 200.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 100.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: -2.0px; line-height: 100.0px; text-align: left; white-space: nowrap; color: rgba(48,66,88,1.0)">HPWREN
Dataset</div></div>
<div data-id="1:163" style="position: absolute; left: 80.0px; top: 524.0px; width: 1270.0px; height: 417.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:164" style="position: absolute; left: 0.0px; top: 0.0px; width: 396.6666564941406px; height: 417.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; box-shadow: 0.0px 10.0px 50.0px 0px rgba(34,47,62,0.10000000149011612)">
<div data-id="1:165" style="position: absolute; left: 0.0px; top: 0.0px; width: 396.6666564941406px; height: 3.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:166" style="position: absolute; left: 0.0px; top: 19.0px; width: 396.6666564941406px; height: 398.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:167" style="position: absolute; left: 40.0px; top: 40.0px; width: 316.6666564941406px; height: 110.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 46.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 600; letter-spacing: -2.0px; line-height: 55.20000076293945px; text-align: left; color: rgba(110,120,133,1.0)">Open-source Data</div></div>
<div class="ft" data-id="1:168" style="position: absolute; left: 40.0px; top: 166.0px; width: 316.6666564941406px; height: 192.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; color: rgba(110,120,133,1.0)">Fixed-view cameras from HPWREN in S. California. 101 cameras with high-resolution images. 342 directories, 27,174 total images.</div></div>
</div>
</div>
<div data-id="1:169" style="position: absolute; left: 436.6666564941406px; top: 0.0px; width: 396.6666564941406px; height: 417.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; box-shadow: 0.0px 10.0px 50.0px 0px rgba(34,47,62,0.10000000149011612)">
<div data-id="1:170" style="position: absolute; left: 0.0px; top: 0.0px; width: 396.6666564941406px; height: 3.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:171" style="position: absolute; left: 0.0px; top: 19.0px; width: 396.6666564941406px; height: 398.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:172" style="position: absolute; left: 40.0px; top: 40.0px; width: 316.6666564941406px; height: 110.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 46.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 600; letter-spacing: -2.0px; line-height: 55.20000076293945px; text-align: left; color: rgba(110,120,133,1.0)">Proposed Labels</div></div>
<div class="ft" data-id="1:173" style="position: absolute; left: 40.0px; top: 166.0px; width: 316.6666564941406px; height: 192.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; color: rgba(110,120,133,1.0)">283 scenes labeled (30x more than previous). Source/target domain split with 0.5%, 1.0%, 3.0% protocols for SSDA evaluation.</div></div>
</div>
</div>
<div data-id="1:174" style="position: absolute; left: 873.3333129882812px; top: 0.0px; width: 396.6666564941406px; height: 346.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; box-shadow: 0.0px 10.0px 50.0px 0px rgba(34,47,62,0.10000000149011612)">
<div data-id="1:175" style="position: absolute; left: 0.0px; top: 0.0px; width: 396.6666564941406px; height: 3.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:176" style="position: absolute; left: 0.0px; top: 19.0px; width: 396.6666564941406px; height: 327.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:177" style="position: absolute; left: 40.0px; top: 40.0px; width: 316.6666564941406px; height: 55.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 46.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 600; letter-spacing: -2.0px; line-height: 55.20000076293945px; text-align: left; white-space: nowrap; color: rgba(110,120,133,1.0)">Bbox Labels</div></div>
<div class="ft" data-id="1:178" style="position: absolute; left: 40.0px; top: 111.0px; width: 316.6666564941406px; height: 176.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; color: rgba(110,120,133,1.0)">Various scales of wildfire labeled with bounding boxes. Previous: 9 dirs / 609 images. Proposed: 283 dirs / 2,575 images.</div></div>
</div>
</div>
</div>
<div class="ft" data-id="1:179" style="position: absolute; left: 79.0px; top: 80.0px; width: 21.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 32.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 43.20000076293945px; text-align: center; white-space: nowrap; color: rgba(110,120,133,1.0)">5</div></div>
<div class="ft" data-id="1:180" style="position: absolute; left: 80.0px; top: 966.0px; width: 268.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; white-space: nowrap; color: rgba(110,120,133,1.0)">company@email.com</div></div>
<div class="ft" data-id="1:181" style="position: absolute; left: 1576.0px; top: 966.0px; width: 264.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: right; white-space: nowrap; color: rgba(110,120,133,1.0)">@companyusername</div></div>
</div>
</div>
</div>
<div class="slide-container">
<div class="slide-label">Slide 5 — Frame</div>
<div class="slide-wrapper">
<div class="slide" data-slide-id="1:182" style="width: 1920.0px; height: 1080.0px; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
<div data-id="1:183" style="position: absolute; left: 0.0px; top: 0.0px; width: 552.0px; height: 1080.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(242,243,242,1.0); background-image: linear-gradient(rgba(242,243,242,1.0), rgba(242,243,242,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:184" style="position: absolute; left: 1780.0px; top: 80.0px; width: 60.0px; height: 60.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: url('images/43c3de2053d9fbee60939901ce612b94c67c634c.png'); background-size: cover; background-position: center; background-repeat: no-repeat;; border-radius: 50%"></div>
<div data-id="1:185" style="position: absolute; left: 1324.0px; top: -81.0px; width: 164.99949645996094px; height: 163.09840393066406px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px">
<div data-id="1:186" style="position: absolute; left: 0.0px; top: 0.0px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:187" style="position: absolute; left: 17.83817481994629px; top: 5.684341886080802e-14px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:188" style="position: absolute; left: 35.67634963989258px; top: 5.684341886080802e-14px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:189" style="position: absolute; left: 53.51299285888672px; top: 5.684341886080802e-14px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:190" style="position: absolute; left: 71.35116577148438px; top: 5.684341886080802e-14px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:191" style="position: absolute; left: 89.18933868408203px; top: 5.684341886080802e-14px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:192" style="position: absolute; left: 107.02751922607422px; top: 5.684341886080802e-14px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:193" style="position: absolute; left: 124.86569213867188px; top: 5.684341886080802e-14px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:194" style="position: absolute; left: 142.70233154296875px; top: 5.684341886080802e-14px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:195" style="position: absolute; left: 160.54051208496094px; top: 5.684341886080802e-14px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:196" style="position: absolute; left: -1.8189894035458565e-12px; top: 17.837839126586914px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:197" style="position: absolute; left: 17.83817481994629px; top: 17.837839126586914px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:198" style="position: absolute; left: 35.67634963989258px; top: 17.837839126586914px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:199" style="position: absolute; left: 53.51299285888672px; top: 17.837839126586914px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:200" style="position: absolute; left: 71.35116577148438px; top: 17.837839126586914px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:201" style="position: absolute; left: 89.18933868408203px; top: 17.837839126586914px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:202" style="position: absolute; left: 107.02751922607422px; top: 17.837839126586914px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:203" style="position: absolute; left: 124.86569213867188px; top: 17.837839126586914px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:204" style="position: absolute; left: 142.70233154296875px; top: 17.837839126586914px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:205" style="position: absolute; left: 160.54051208496094px; top: 17.837839126586914px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:206" style="position: absolute; left: -1.8189894035458565e-12px; top: 35.67572784423828px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:207" style="position: absolute; left: 17.83817481994629px; top: 35.67572784423828px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:208" style="position: absolute; left: 35.67634963989258px; top: 35.67572784423828px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:209" style="position: absolute; left: 53.51299285888672px; top: 35.67572784423828px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:210" style="position: absolute; left: 71.35116577148438px; top: 35.67572784423828px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:211" style="position: absolute; left: 89.18933868408203px; top: 35.67572784423828px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:212" style="position: absolute; left: 107.02751922607422px; top: 35.67572784423828px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:213" style="position: absolute; left: 124.86569213867188px; top: 35.67572784423828px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:214" style="position: absolute; left: 142.70233154296875px; top: 35.67572784423828px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:215" style="position: absolute; left: 160.54051208496094px; top: 35.67572784423828px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:216" style="position: absolute; left: -1.8189894035458565e-12px; top: 53.51356506347656px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:217" style="position: absolute; left: 17.83817481994629px; top: 53.51356506347656px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:218" style="position: absolute; left: 35.67634963989258px; top: 53.51356506347656px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:219" style="position: absolute; left: 53.51299285888672px; top: 53.51356506347656px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:220" style="position: absolute; left: 71.35116577148438px; top: 53.51356506347656px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:221" style="position: absolute; left: 89.18933868408203px; top: 53.51356506347656px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:222" style="position: absolute; left: 107.02751922607422px; top: 53.51356506347656px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:223" style="position: absolute; left: 124.86569213867188px; top: 53.51356506347656px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:224" style="position: absolute; left: 142.70233154296875px; top: 53.51356506347656px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:225" style="position: absolute; left: 160.54051208496094px; top: 53.51356506347656px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:226" style="position: absolute; left: -1.8189894035458565e-12px; top: 71.35140991210938px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:227" style="position: absolute; left: 17.83817481994629px; top: 71.35140991210938px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:228" style="position: absolute; left: 35.67634963989258px; top: 71.35140991210938px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:229" style="position: absolute; left: 53.51299285888672px; top: 71.35140991210938px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:230" style="position: absolute; left: 71.35116577148438px; top: 71.35140991210938px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:231" style="position: absolute; left: 89.18933868408203px; top: 71.35140991210938px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:232" style="position: absolute; left: 107.02751922607422px; top: 71.35140991210938px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:233" style="position: absolute; left: 124.86569213867188px; top: 71.35140991210938px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:234" style="position: absolute; left: 142.70233154296875px; top: 71.35140991210938px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:235" style="position: absolute; left: 160.54051208496094px; top: 71.35140991210938px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:236" style="position: absolute; left: -1.8189894035458565e-12px; top: 89.18924713134766px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:237" style="position: absolute; left: 17.83817481994629px; top: 89.18924713134766px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:238" style="position: absolute; left: 35.67634963989258px; top: 89.18924713134766px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:239" style="position: absolute; left: 53.51299285888672px; top: 89.18924713134766px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:240" style="position: absolute; left: 71.35116577148438px; top: 89.18924713134766px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:241" style="position: absolute; left: 89.18933868408203px; top: 89.18924713134766px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:242" style="position: absolute; left: 107.02751922607422px; top: 89.18924713134766px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:243" style="position: absolute; left: 124.86569213867188px; top: 89.18924713134766px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:244" style="position: absolute; left: 142.70233154296875px; top: 89.18924713134766px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:245" style="position: absolute; left: 160.54051208496094px; top: 89.18924713134766px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:246" style="position: absolute; left: -1.8189894035458565e-12px; top: 107.02708435058594px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:247" style="position: absolute; left: -1.8189894035458565e-12px; top: 124.23104095458984px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:248" style="position: absolute; left: -1.8189894035458565e-12px; top: 141.43499755859375px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:249" style="position: absolute; left: -1.8189894035458565e-12px; top: 158.63894653320312px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:250" style="position: absolute; left: 17.83817481994629px; top: 107.02708435058594px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:251" style="position: absolute; left: 17.83817481994629px; top: 124.23104095458984px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:252" style="position: absolute; left: 17.83817481994629px; top: 141.43499755859375px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:253" style="position: absolute; left: 17.83817481994629px; top: 158.63894653320312px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:254" style="position: absolute; left: 35.67634963989258px; top: 107.02708435058594px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:255" style="position: absolute; left: 35.67634963989258px; top: 124.23104095458984px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:256" style="position: absolute; left: 35.67634963989258px; top: 141.43499755859375px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:257" style="position: absolute; left: 35.67634963989258px; top: 158.63894653320312px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:258" style="position: absolute; left: 53.51299285888672px; top: 107.02708435058594px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:259" style="position: absolute; left: 53.51299285888672px; top: 124.23104095458984px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:260" style="position: absolute; left: 53.51299285888672px; top: 141.43499755859375px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:261" style="position: absolute; left: 53.51299285888672px; top: 158.63894653320312px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:262" style="position: absolute; left: 71.35116577148438px; top: 107.02708435058594px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:263" style="position: absolute; left: 71.35116577148438px; top: 124.23104095458984px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:264" style="position: absolute; left: 71.35116577148438px; top: 141.43499755859375px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:265" style="position: absolute; left: 71.35116577148438px; top: 158.63894653320312px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:266" style="position: absolute; left: 89.18933868408203px; top: 107.02708435058594px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:267" style="position: absolute; left: 89.18933868408203px; top: 124.23104095458984px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:268" style="position: absolute; left: 89.18933868408203px; top: 141.43499755859375px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:269" style="position: absolute; left: 89.18933868408203px; top: 158.63894653320312px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:270" style="position: absolute; left: 107.02751922607422px; top: 107.02708435058594px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:271" style="position: absolute; left: 107.02751922607422px; top: 124.23104095458984px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:272" style="position: absolute; left: 107.02751922607422px; top: 141.43499755859375px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:273" style="position: absolute; left: 107.02751922607422px; top: 158.63894653320312px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:274" style="position: absolute; left: 124.86569213867188px; top: 107.02708435058594px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:275" style="position: absolute; left: 124.86569213867188px; top: 124.23104095458984px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:276" style="position: absolute; left: 124.86569213867188px; top: 141.43499755859375px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:277" style="position: absolute; left: 124.86569213867188px; top: 158.63894653320312px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:278" style="position: absolute; left: 142.70233154296875px; top: 107.02708435058594px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:279" style="position: absolute; left: 142.70233154296875px; top: 124.23104095458984px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:280" style="position: absolute; left: 142.70233154296875px; top: 141.43499755859375px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:281" style="position: absolute; left: 142.70233154296875px; top: 158.63894653320312px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:282" style="position: absolute; left: 160.54051208496094px; top: 107.02708435058594px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:283" style="position: absolute; left: 160.54051208496094px; top: 124.23104095458984px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:284" style="position: absolute; left: 160.54051208496094px; top: 141.43499755859375px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:285" style="position: absolute; left: 160.54051208496094px; top: 158.63894653320312px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
</div>
<div data-id="1:286" style="position: absolute; left: 1095.0px; top: 8.0px; width: 164.99949645996094px; height: 163.09840393066406px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px">
<div data-id="1:287" style="position: absolute; left: 0.0px; top: 0.0px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:288" style="position: absolute; left: 17.83817481994629px; top: 5.684341886080802e-14px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:289" style="position: absolute; left: 35.67634963989258px; top: 5.684341886080802e-14px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:290" style="position: absolute; left: 53.51299285888672px; top: 5.684341886080802e-14px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:291" style="position: absolute; left: 71.35116577148438px; top: 5.684341886080802e-14px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:292" style="position: absolute; left: 89.18933868408203px; top: 5.684341886080802e-14px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:293" style="position: absolute; left: 107.02751922607422px; top: 5.684341886080802e-14px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:294" style="position: absolute; left: 124.86569213867188px; top: 5.684341886080802e-14px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:295" style="position: absolute; left: 142.70233154296875px; top: 5.684341886080802e-14px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:296" style="position: absolute; left: 160.54051208496094px; top: 5.684341886080802e-14px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:297" style="position: absolute; left: -1.8189894035458565e-12px; top: 17.837839126586914px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:298" style="position: absolute; left: 17.83817481994629px; top: 17.837839126586914px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:299" style="position: absolute; left: 35.67634963989258px; top: 17.837839126586914px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:300" style="position: absolute; left: 53.51299285888672px; top: 17.837839126586914px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:301" style="position: absolute; left: 71.35116577148438px; top: 17.837839126586914px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:302" style="position: absolute; left: 89.18933868408203px; top: 17.837839126586914px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:303" style="position: absolute; left: 107.02751922607422px; top: 17.837839126586914px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:304" style="position: absolute; left: 124.86569213867188px; top: 17.837839126586914px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:305" style="position: absolute; left: 142.70233154296875px; top: 17.837839126586914px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:306" style="position: absolute; left: 160.54051208496094px; top: 17.837839126586914px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:307" style="position: absolute; left: -1.8189894035458565e-12px; top: 35.67572784423828px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:308" style="position: absolute; left: 17.83817481994629px; top: 35.67572784423828px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:309" style="position: absolute; left: 35.67634963989258px; top: 35.67572784423828px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:310" style="position: absolute; left: 53.51299285888672px; top: 35.67572784423828px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:311" style="position: absolute; left: 71.35116577148438px; top: 35.67572784423828px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:312" style="position: absolute; left: 89.18933868408203px; top: 35.67572784423828px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:313" style="position: absolute; left: 107.02751922607422px; top: 35.67572784423828px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:314" style="position: absolute; left: 124.86569213867188px; top: 35.67572784423828px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:315" style="position: absolute; left: 142.70233154296875px; top: 35.67572784423828px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:316" style="position: absolute; left: 160.54051208496094px; top: 35.67572784423828px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:317" style="position: absolute; left: -1.8189894035458565e-12px; top: 53.51356506347656px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:318" style="position: absolute; left: 17.83817481994629px; top: 53.51356506347656px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:319" style="position: absolute; left: 35.67634963989258px; top: 53.51356506347656px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:320" style="position: absolute; left: 53.51299285888672px; top: 53.51356506347656px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:321" style="position: absolute; left: 71.35116577148438px; top: 53.51356506347656px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:322" style="position: absolute; left: 89.18933868408203px; top: 53.51356506347656px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:323" style="position: absolute; left: 107.02751922607422px; top: 53.51356506347656px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:324" style="position: absolute; left: 124.86569213867188px; top: 53.51356506347656px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:325" style="position: absolute; left: 142.70233154296875px; top: 53.51356506347656px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:326" style="position: absolute; left: 160.54051208496094px; top: 53.51356506347656px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:327" style="position: absolute; left: -1.8189894035458565e-12px; top: 71.35140991210938px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:328" style="position: absolute; left: 17.83817481994629px; top: 71.35140991210938px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:329" style="position: absolute; left: 35.67634963989258px; top: 71.35140991210938px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:330" style="position: absolute; left: 53.51299285888672px; top: 71.35140991210938px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:331" style="position: absolute; left: 71.35116577148438px; top: 71.35140991210938px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:332" style="position: absolute; left: 89.18933868408203px; top: 71.35140991210938px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:333" style="position: absolute; left: 107.02751922607422px; top: 71.35140991210938px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:334" style="position: absolute; left: 124.86569213867188px; top: 71.35140991210938px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:335" style="position: absolute; left: 142.70233154296875px; top: 71.35140991210938px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:336" style="position: absolute; left: 160.54051208496094px; top: 71.35140991210938px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:337" style="position: absolute; left: -1.8189894035458565e-12px; top: 89.18924713134766px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:338" style="position: absolute; left: 17.83817481994629px; top: 89.18924713134766px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:339" style="position: absolute; left: 35.67634963989258px; top: 89.18924713134766px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:340" style="position: absolute; left: 53.51299285888672px; top: 89.18924713134766px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:341" style="position: absolute; left: 71.35116577148438px; top: 89.18924713134766px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:342" style="position: absolute; left: 89.18933868408203px; top: 89.18924713134766px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:343" style="position: absolute; left: 107.02751922607422px; top: 89.18924713134766px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:344" style="position: absolute; left: 124.86569213867188px; top: 89.18924713134766px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:345" style="position: absolute; left: 142.70233154296875px; top: 89.18924713134766px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:346" style="position: absolute; left: 160.54051208496094px; top: 89.18924713134766px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:347" style="position: absolute; left: -1.8189894035458565e-12px; top: 107.02708435058594px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:348" style="position: absolute; left: -1.8189894035458565e-12px; top: 124.23104095458984px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:349" style="position: absolute; left: -1.8189894035458565e-12px; top: 141.43499755859375px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:350" style="position: absolute; left: -1.8189894035458565e-12px; top: 158.63894653320312px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:351" style="position: absolute; left: 17.83817481994629px; top: 107.02708435058594px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:352" style="position: absolute; left: 17.83817481994629px; top: 124.23104095458984px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:353" style="position: absolute; left: 17.83817481994629px; top: 141.43499755859375px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:354" style="position: absolute; left: 17.83817481994629px; top: 158.63894653320312px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:355" style="position: absolute; left: 35.67634963989258px; top: 107.02708435058594px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:356" style="position: absolute; left: 35.67634963989258px; top: 124.23104095458984px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:357" style="position: absolute; left: 35.67634963989258px; top: 141.43499755859375px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:358" style="position: absolute; left: 35.67634963989258px; top: 158.63894653320312px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:359" style="position: absolute; left: 53.51299285888672px; top: 107.02708435058594px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:360" style="position: absolute; left: 53.51299285888672px; top: 124.23104095458984px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:361" style="position: absolute; left: 53.51299285888672px; top: 141.43499755859375px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:362" style="position: absolute; left: 53.51299285888672px; top: 158.63894653320312px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:363" style="position: absolute; left: 71.35116577148438px; top: 107.02708435058594px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:364" style="position: absolute; left: 71.35116577148438px; top: 124.23104095458984px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:365" style="position: absolute; left: 71.35116577148438px; top: 141.43499755859375px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:366" style="position: absolute; left: 71.35116577148438px; top: 158.63894653320312px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:367" style="position: absolute; left: 89.18933868408203px; top: 107.02708435058594px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:368" style="position: absolute; left: 89.18933868408203px; top: 124.23104095458984px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:369" style="position: absolute; left: 89.18933868408203px; top: 141.43499755859375px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:370" style="position: absolute; left: 89.18933868408203px; top: 158.63894653320312px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:371" style="position: absolute; left: 107.02751922607422px; top: 107.02708435058594px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:372" style="position: absolute; left: 107.02751922607422px; top: 124.23104095458984px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:373" style="position: absolute; left: 107.02751922607422px; top: 141.43499755859375px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:374" style="position: absolute; left: 107.02751922607422px; top: 158.63894653320312px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:375" style="position: absolute; left: 124.86569213867188px; top: 107.02708435058594px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:376" style="position: absolute; left: 124.86569213867188px; top: 124.23104095458984px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:377" style="position: absolute; left: 124.86569213867188px; top: 141.43499755859375px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:378" style="position: absolute; left: 124.86569213867188px; top: 158.63894653320312px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:379" style="position: absolute; left: 142.70233154296875px; top: 107.02708435058594px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:380" style="position: absolute; left: 142.70233154296875px; top: 124.23104095458984px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:381" style="position: absolute; left: 142.70233154296875px; top: 141.43499755859375px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:382" style="position: absolute; left: 142.70233154296875px; top: 158.63894653320312px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:383" style="position: absolute; left: 160.54051208496094px; top: 107.02708435058594px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:384" style="position: absolute; left: 160.54051208496094px; top: 124.23104095458984px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:385" style="position: absolute; left: 160.54051208496094px; top: 141.43499755859375px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:386" style="position: absolute; left: 160.54051208496094px; top: 158.63894653320312px; width: 4.459463119506836px; height: 4.459463119506836px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
</div>
<div class="ft" data-id="1:387" style="position: absolute; left: 80.0px; top: 172.0px; width: 537.0px; height: 280.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 140.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: -2.8000000000000003px; line-height: 140.0px; text-align: left; white-space: nowrap; color: rgba(48,66,88,1.0)">LADA
Method</div></div>
<div data-id="1:388" style="position: absolute; left: 1199.0px; top: 430.0px; width: 721.0px; height: 130.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:389" style="position: absolute; left: 721.0px; top: 38.50006103515625px; width: 460.0px; height: 3.0px; background-color: rgba(230,129,62,1.0); opacity: 1.0; transform: matrix(-1.0, -8.742277657347586e-08, 8.742277657347586e-08, -1.0, 0, 0); transform-origin: 0 0"></div>
<div data-id="1:390" style="position: absolute; left: 0.0px; top: 0.0px; width: 196.0px; height: 130.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:391" style="position: absolute; left: 125.0px; top: 0.0px; width: 71.0px; height: 86.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 72.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 600; letter-spacing: -2.0px; line-height: 86.4000015258789px; text-align: right; white-space: nowrap; color: rgba(110,120,133,1.0)">01</div></div>
<div class="ft" data-id="1:392" style="position: absolute; left: 0.0px; top: 98.0px; width: 196.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: right; white-space: nowrap; color: rgba(110,120,133,1.0)">Pseudo Labeling</div></div>
</div>
</div>
<div data-id="1:393" style="position: absolute; left: 687.0px; top: 598.0px; width: 1233.0px; height: 130.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:394" style="position: absolute; left: 1233.0px; top: 34.50006103515625px; width: 671.0px; height: 3.0px; background-color: rgba(230,129,62,1.0); opacity: 1.0; transform: matrix(-1.0, -8.742277657347586e-08, 8.742277657347586e-08, -1.0, 0, 0); transform-origin: 0 0"></div>
<div data-id="1:395" style="position: absolute; left: 0.0px; top: 0.0px; width: 546.0px; height: 130.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:396" style="position: absolute; left: 460.0px; top: 0.0px; width: 86.0px; height: 86.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 72.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 600; letter-spacing: -2.0px; line-height: 86.4000015258789px; text-align: right; white-space: nowrap; color: rgba(110,120,133,1.0)">02</div></div>
<div class="ft" data-id="1:397" style="position: absolute; left: 0.0px; top: 98.0px; width: 546.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: right; white-space: nowrap; color: rgba(110,120,133,1.0)">Translational Variance Features (CoordConv)</div></div>
</div>
</div>
<div data-id="1:398" style="position: absolute; left: 478.0px; top: 766.0px; width: 1442.0px; height: 130.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:399" style="position: absolute; left: 1442.0px; top: 36.50006103515625px; width: 911.0px; height: 3.0px; background-color: rgba(230,129,62,1.0); opacity: 1.0; transform: matrix(-1.0, -8.742277657347586e-08, 8.742277657347586e-08, -1.0, 0, 0); transform-origin: 0 0"></div>
<div data-id="1:400" style="position: absolute; left: 0.0px; top: 0.0px; width: 515.0px; height: 130.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:401" style="position: absolute; left: 427.0px; top: 0.0px; width: 88.0px; height: 86.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 72.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 600; letter-spacing: -2.0px; line-height: 86.4000015258789px; text-align: right; white-space: nowrap; color: rgba(110,120,133,1.0)">03</div></div>
<div class="ft" data-id="1:402" style="position: absolute; left: 0.0px; top: 98.0px; width: 515.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: right; white-space: nowrap; color: rgba(110,120,133,1.0)">Location Aware Domain Adaptation (LADA)</div></div>
</div>
</div>
<div class="ft" data-id="1:403" style="position: absolute; left: 79.0px; top: 80.0px; width: 21.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 32.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 43.20000076293945px; text-align: center; white-space: nowrap; color: rgba(110,120,133,1.0)">6</div></div>
<div class="ft" data-id="1:404" style="position: absolute; left: 80.0px; top: 966.0px; width: 268.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; white-space: nowrap; color: rgba(110,120,133,1.0)">company@email.com</div></div>
<div class="ft" data-id="1:405" style="position: absolute; left: 1576.0px; top: 966.0px; width: 264.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: right; white-space: nowrap; color: rgba(110,120,133,1.0)">@companyusername</div></div>
</div>
</div>
</div>
<div class="slide-container">
<div class="slide-label">Slide 6 — Frame</div>
<div class="slide-wrapper">
<div class="slide" data-slide-id="1:406" style="width: 1920.0px; height: 1080.0px; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
<div data-id="1:407" style="position: absolute; left: 1780.0px; top: 80.0px; width: 60.0px; height: 60.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: url('images/43c3de2053d9fbee60939901ce612b94c67c634c.png'); background-size: cover; background-position: center; background-repeat: no-repeat;; border-radius: 50%"></div>
<div class="ft" data-id="1:408" style="position: absolute; left: 80.0px; top: 172.0px; width: 688.0px; height: 86.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 61.1731843575419px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 600; letter-spacing: -1.6992551210428306px; line-height: 73.40782252547905px; text-align: left; white-space: nowrap; color: rgba(48,66,88,1.0)">Objective Functions</div></div>
<div class="ft" data-id="1:409" style="position: absolute; left: 962.0px; top: 192.0px; width: 95.0px; height: 55.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 46.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 600; letter-spacing: -2.0px; line-height: 55.20000076293945px; text-align: left; white-space: nowrap; color: rgba(48,66,88,1.0)">Loss</div></div>
<div class="ft" data-id="1:410" style="position: absolute; left: 1552.0px; top: 192.0px; width: 248.0px; height: 55.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 46.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 600; letter-spacing: -2.0px; line-height: 55.20000076293945px; text-align: right; white-space: nowrap; color: rgba(48,66,88,1.0)">Description</div></div>
<div data-id="1:411" style="position: absolute; left: 80.0px; top: 290.5px; width: 1720.0px; height: 3.0px; background-color: rgba(48,66,88,1.0); opacity: 1.0"></div>
<div data-id="1:412" style="position: absolute; left: 962.0px; top: 344.0px; width: 840.0px; height: 362.000244140625px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:413" style="position: absolute; left: 0.0px; top: 0.0px; width: 840.0px; height: 68.00007629394531px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:414" style="position: absolute; left: 0.0px; top: 0.0px; width: 840.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:415" style="position: absolute; left: 0.0px; top: 0.0px; width: 190.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; white-space: nowrap; color: rgba(110,120,133,1.0)">Supervised Loss</div></div>
<div class="ft" data-id="1:416" style="position: absolute; left: 547.0px; top: -6.175615574477433e-16px; width: 293.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: right; white-space: nowrap; color: rgba(110,120,133,1.0)">Use labeled source data</div></div>
</div>
<div data-id="1:417" style="position: absolute; left: 0.0px; top: 67.5px; width: 838.0px; height: 1.0px; background-color: rgba(48,66,88,1.0); opacity: 1.0"></div>
</div>
<div data-id="1:418" style="position: absolute; left: 0.0px; top: 110.00007629394531px; width: 840.0px; height: 68.00007629394531px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:419" style="position: absolute; left: 0.0px; top: 0.0px; width: 840.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:420" style="position: absolute; left: 0.0px; top: 0.0px; width: 304.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 19.063545150501675px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 25.73578716520482px; text-align: left; white-space: nowrap; color: rgba(110,120,133,1.0)">Masked Consistency Loss</div></div>
<div class="ft" data-id="1:421" style="position: absolute; left: 348.0px; top: -1.3079815008865125e-15px; width: 492.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.874643874643873px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 25.48077043078677px; text-align: right; white-space: nowrap; color: rgba(110,120,133,1.0)">Align masked & unmasked image output</div></div>
</div>
<div data-id="1:422" style="position: absolute; left: 0.0px; top: 67.5px; width: 838.0px; height: 1.0px; background-color: rgba(48,66,88,1.0); opacity: 1.0"></div>
</div>
<div data-id="1:423" style="position: absolute; left: 0.0px; top: 220.00015258789062px; width: 840.0px; height: 68.00007629394531px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:424" style="position: absolute; left: 0.0px; top: 0.0px; width: 840.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:425" style="position: absolute; left: 0.0px; top: 0.0px; width: 193.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; white-space: nowrap; color: rgba(110,120,133,1.0)">Adversarial Loss</div></div>
<div class="ft" data-id="1:426" style="position: absolute; left: 457.0px; top: -9.298117831235686e-16px; width: 383.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: right; white-space: nowrap; color: rgba(110,120,133,1.0)">Align source and target domain</div></div>
</div>
<div data-id="1:427" style="position: absolute; left: 0.0px; top: 67.5px; width: 838.0px; height: 1.0px; background-color: rgba(48,66,88,1.0); opacity: 1.0"></div>
</div>
<div data-id="1:428" style="position: absolute; left: 0.0px; top: 330.000244140625px; width: 840.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:429" style="position: absolute; left: 0.0px; top: 0.0px; width: 840.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:430" style="position: absolute; left: 0.0px; top: 0.0px; width: 205.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; white-space: nowrap; color: rgba(110,120,133,1.0)">Consistency Loss</div></div>
<div class="ft" data-id="1:431" style="position: absolute; left: 359.0px; top: -1.2698175844150228e-15px; width: 481.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 20.16025641025641px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 27.216347435600735px; text-align: right; white-space: nowrap; color: rgba(110,120,133,1.0)">Align instance & image level predictions</div></div>
</div>
</div>
</div>
<div data-id="1:433" style="position: absolute; left: 80.0px; top: 364.0px; width: 567.0px; height: 207.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:434" style="position: absolute; left: 0.0px; top: 0.0px; width: 433.0px; height: 55.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:435" style="position: absolute; left: 0.0px; top: 7.5px; width: 40.0px; height: 40.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box">
<svg data-id="1:436" style="position: absolute; left: 13.821727752685547px; top: 17.15498924255371px; width: 12.356666564941406px; height: 12.356666564941406px; opacity: 1.0; overflow: visible" viewBox="0 0 12.356666564941406 12.356666564941406" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 10L2.35667 12.3567L6.17833 8.535L10 12.3567L12.3567 10L8.535 6.17833L12.3567 2.35667L10 0L6.17833 3.82167L2.35667 0L0 2.35667L3.82167 6.17833L0 10Z" fill="rgba(48,66,88,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:437" style="position: absolute; left: 5.0px; top: 3.333338499069214px; width: 30.0px; height: 33.333335876464844px; opacity: 1.0; overflow: visible" viewBox="0 0 30.0 33.333335876464844" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M26.6667 3.33333L23.3333 3.33333L23.3333 0L20 0L20 3.33333L10 3.33333L10 0L6.66667 0L6.66667 3.33333L3.33333 3.33333C1.495 3.33333 0 4.82833 0 6.66667L0 30C0 31.8383 1.495 33.3333 3.33333 33.3333L26.6667 33.3333C28.505 33.3333 30 31.8383 30 30L30 6.66667C30 4.82833 28.505 3.33333 26.6667 3.33333ZM26.67 30L3.33333 30L3.33333 10L26.6667 10L26.67 30Z" fill="rgba(48,66,88,1.0)" fill-rule="nonzero"/></svg>
</div>
<div class="ft" data-id="1:438" style="position: absolute; left: 56.0px; top: 0.0px; width: 377.0px; height: 55.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 46.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 600; letter-spacing: -2.0px; line-height: 55.20000076293945px; text-align: left; white-space: nowrap; color: rgba(48,66,88,1.0)">CoordConv Layer</div></div>
</div>
<div class="ft" data-id="1:439" style="position: absolute; left: 0.0px; top: 79.0px; width: 567.0px; height: 128.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; color: rgba(110,120,133,1.0)">Replaced convolution layers in RPN and FPN with coordinate convolution layers to learn translational variance features for location-dependent wildfire patterns.</div></div>
</div>
<div data-id="1:440" style="position: absolute; left: 80.0px; top: 576.0px; width: 567.0px; height: 207.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:441" style="position: absolute; left: 0.0px; top: 0.0px; width: 411.0px; height: 55.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:442" style="position: absolute; left: 0.0px; top: 7.5px; width: 40.0px; height: 40.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box">
<svg data-id="1:443" style="position: absolute; left: 5.0px; top: 3.3333332538604736px; width: 30.0px; height: 33.333335876464844px; opacity: 1.0; overflow: visible" viewBox="0 0 30.0 33.333335876464844" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M26.6667 3.33333L23.3333 3.33333L23.3333 0L20 0L20 3.33333L10 3.33333L10 0L6.66667 0L6.66667 3.33333L3.33333 3.33333C1.495 3.33333 0 4.82833 0 6.66667L0 30C0 31.8383 1.495 33.3333 3.33333 33.3333L26.6667 33.3333C28.505 33.3333 30 31.8383 30 30L30 6.66667C30 4.82833 28.505 3.33333 26.6667 3.33333ZM26.67 30L3.33333 30L3.33333 10L26.6667 10L26.67 30Z" fill="rgba(48,66,88,1.0)" fill-rule="nonzero"/></svg>
<svg data-id="1:444" style="position: absolute; left: 12.154897689819336px; top: 17.154987335205078px; width: 15.690000534057617px; height: 11.86833381652832px; opacity: 1.0; overflow: visible" viewBox="0 0 15.690000534057617 11.86833381652832" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M6.17833 11.8683L15.69 2.35667L13.3333 0L6.17833 7.155L2.35667 3.33333L0 5.69L6.17833 11.8683Z" fill="rgba(48,66,88,1.0)" fill-rule="nonzero"/></svg>
</div>
<div class="ft" data-id="1:445" style="position: absolute; left: 56.0px; top: 0.0px; width: 355.0px; height: 55.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 46.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 600; letter-spacing: -2.0px; line-height: 55.20000076293945px; text-align: left; white-space: nowrap; color: rgba(48,66,88,1.0)">Pseudo Labeling</div></div>
</div>
<div class="ft" data-id="1:446" style="position: absolute; left: 0.0px; top: 79.0px; width: 567.0px; height: 128.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; color: rgba(110,120,133,1.0)">Generate pseudo labels for both confident foreground and background images. Reduces false positive predictions especially for 0.5% and 1.0% protocols.</div></div>
</div>
<div class="ft" data-id="1:447" style="position: absolute; left: 80.0px; top: 80.0px; width: 18.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 32.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 43.20000076293945px; text-align: center; white-space: nowrap; color: rgba(110,120,133,1.0)">7</div></div>
<div class="ft" data-id="1:448" style="position: absolute; left: 80.0px; top: 966.0px; width: 268.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; white-space: nowrap; color: rgba(110,120,133,1.0)">company@email.com</div></div>
<div class="ft" data-id="1:449" style="position: absolute; left: 1576.0px; top: 966.0px; width: 264.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: right; white-space: nowrap; color: rgba(110,120,133,1.0)">@companyusername</div></div>
</div>
</div>
</div>
<div class="slide-container">
<div class="slide-label">Slide 7 — Frame</div>
<div class="slide-wrapper">
<div class="slide" data-slide-id="1:450" style="width: 1920.0px; height: 1080.0px; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
<div data-id="1:451" style="position: absolute; left: 743.0px; top: 0.0px; width: 1177.0px; height: 1080.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(242,243,242,1.0); background-image: linear-gradient(rgba(242,243,242,1.0), rgba(242,243,242,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:452" style="position: absolute; left: 1780.0px; top: 80.0px; width: 60.0px; height: 60.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: url('images/43c3de2053d9fbee60939901ce612b94c67c634c.png'); background-size: cover; background-position: center; background-repeat: no-repeat;; border-radius: 50%"></div>
<div class="ft" data-id="1:453" style="position: absolute; left: 80.0px; top: 364.0px; width: 567.0px; height: 64.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; color: rgba(110,120,133,1.0)">Ablation study and SSDA results showing mAP / mAP@0.5 across protocols.</div></div>
<div data-id="1:454" style="position: absolute; left: 80.0px; top: 548.0px; width: 168.0px; height: 168.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:455" style="position: absolute; left: 199.0px; top: 637.0px; width: 168.0px; height: 168.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border-radius: 50%"></div>
<div data-id="1:456" style="position: absolute; left: 288.0px; top: 716.0px; width: 168.0px; height: 168.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; border: 3.0px solid rgba(172,179,188,1.0);"></div>
<div class="ft" data-id="1:457" style="position: absolute; left: 80.0px; top: 172.0px; width: 253.0px; height: 86.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 72.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 600; letter-spacing: -2.0px; line-height: 86.4000015258789px; text-align: left; white-space: nowrap; color: rgba(48,66,88,1.0)">Results</div></div>
<div class="ft" data-id="1:458" style="position: absolute; left: 79.0px; top: 80.0px; width: 21.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 32.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 43.20000076293945px; text-align: center; white-space: nowrap; color: rgba(110,120,133,1.0)">8</div></div>
<div class="ft" data-id="1:459" style="position: absolute; left: 80.0px; top: 966.0px; width: 268.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; white-space: nowrap; color: rgba(110,120,133,1.0)">company@email.com</div></div>
<div class="ft" data-id="1:460" style="position: absolute; left: 1576.0px; top: 966.0px; width: 264.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: right; white-space: nowrap; color: rgba(110,120,133,1.0)">@companyusername</div></div>
<div data-id="1:461" style="position: absolute; left: 0.0px; top: 0.0px; width: 196.0px; height: 40.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(242,234,216,1.0); background-image: linear-gradient(rgba(242,234,216,1.0), rgba(242,234,216,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
</div>
<div data-id="1:463" style="position: absolute; left: 820.0px; top: 300.0px; width: 1061.0px; height: 337.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; border-radius: 8.0px; background-color: rgba(255,249,239,1.0); background-image: linear-gradient(rgba(255,249,239,1.0), rgba(255,249,239,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div data-id="1:464" style="position: absolute; left: 0.0px; top: 0.0px; width: 1061.0px; height: 67.4000015258789px; opacity: 1.0; overflow: hidden; box-sizing: border-box">
<div data-id="1:465" style="position: absolute; left: 0.0px; top: 0.0px; width: 212.1999969482422px; height: 67.4000015258789px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(242,234,216,1.0); background-image: linear-gradient(rgba(242,234,216,1.0), rgba(242,234,216,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:466" style="position: absolute; left: 16.0px; top: 22.700000762939453px; width: 180.1999969482422px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(38,38,38,1.0)">Type</div></div>
</div>
<div data-id="1:467" style="position: absolute; left: 212.1999969482422px; top: 0.0px; width: 212.1999969482422px; height: 67.4000015258789px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(242,234,216,1.0); background-image: linear-gradient(rgba(242,234,216,1.0), rgba(242,234,216,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:468" style="position: absolute; left: 16.0px; top: 22.700000762939453px; width: 180.1999969482422px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(38,38,38,1.0)">Methods</div></div>
</div>
<div data-id="1:469" style="position: absolute; left: 424.3999938964844px; top: 0.0px; width: 212.1999969482422px; height: 67.4000015258789px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(242,234,216,1.0); background-image: linear-gradient(rgba(242,234,216,1.0), rgba(242,234,216,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:470" style="position: absolute; left: 16.0px; top: 22.700000762939453px; width: 180.1999969482422px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(38,38,38,1.0)">0.5%</div></div>
</div>
<div data-id="1:471" style="position: absolute; left: 636.5999755859375px; top: 0.0px; width: 212.19998168945312px; height: 67.4000015258789px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(242,234,216,1.0); background-image: linear-gradient(rgba(242,234,216,1.0), rgba(242,234,216,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:472" style="position: absolute; left: 16.0px; top: 22.700000762939453px; width: 180.19998168945312px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(38,38,38,1.0)">1.0%</div></div>
</div>
<div data-id="1:473" style="position: absolute; left: 848.7999267578125px; top: 0.0px; width: 212.19998168945312px; height: 67.4000015258789px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(242,234,216,1.0); background-image: linear-gradient(rgba(242,234,216,1.0), rgba(242,234,216,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:474" style="position: absolute; left: 16.0px; top: 22.700000762939453px; width: 180.19998168945312px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(38,38,38,1.0)">3.0%</div></div>
</div>
</div>
<div data-id="1:475" style="position: absolute; left: 0.0px; top: 67.4000015258789px; width: 1061.0px; height: 67.4000015258789px; opacity: 1.0; overflow: hidden; box-sizing: border-box">
<div data-id="1:476" style="position: absolute; left: 0.0px; top: 0.0px; width: 212.1999969482422px; height: 67.4000015258789px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(255,249,239,1.0); background-image: linear-gradient(rgba(255,249,239,1.0), rgba(255,249,239,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:477" style="position: absolute; left: 16.0px; top: 22.700000762939453px; width: 180.1999969482422px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(51,51,51,1.0)">Source-only</div></div>
</div>
<div data-id="1:478" style="position: absolute; left: 212.1999969482422px; top: 0.0px; width: 212.1999969482422px; height: 67.4000015258789px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(255,249,239,1.0); background-image: linear-gradient(rgba(255,249,239,1.0), rgba(255,249,239,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:479" style="position: absolute; left: 16.0px; top: 22.700000762939453px; width: 180.1999969482422px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(51,51,51,1.0)">SADA</div></div>
</div>
<div data-id="1:480" style="position: absolute; left: 424.3999938964844px; top: 0.0px; width: 212.1999969482422px; height: 67.4000015258789px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(255,249,239,1.0); background-image: linear-gradient(rgba(255,249,239,1.0), rgba(255,249,239,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:481" style="position: absolute; left: 16.0px; top: 22.700000762939453px; width: 180.1999969482422px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(51,51,51,1.0)">6.9/21.9</div></div>
</div>
<div data-id="1:482" style="position: absolute; left: 636.5999755859375px; top: 0.0px; width: 212.19998168945312px; height: 67.4000015258789px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(255,249,239,1.0); background-image: linear-gradient(rgba(255,249,239,1.0), rgba(255,249,239,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:483" style="position: absolute; left: 16.0px; top: 22.700000762939453px; width: 180.19998168945312px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(51,51,51,1.0)">9.7/28.7</div></div>
</div>
<div data-id="1:484" style="position: absolute; left: 848.7999267578125px; top: 0.0px; width: 212.19998168945312px; height: 67.4000015258789px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(255,249,239,1.0); background-image: linear-gradient(rgba(255,249,239,1.0), rgba(255,249,239,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:485" style="position: absolute; left: 16.0px; top: 22.700000762939453px; width: 180.19998168945312px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(51,51,51,1.0)">17.8/48.0</div></div>
</div>
</div>
<div data-id="1:486" style="position: absolute; left: 0.0px; top: 134.8000030517578px; width: 1061.0px; height: 67.4000015258789px; opacity: 1.0; overflow: hidden; box-sizing: border-box">
<div data-id="1:487" style="position: absolute; left: 0.0px; top: 0.0px; width: 212.1999969482422px; height: 67.4000015258789px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(255,249,239,1.0); background-image: linear-gradient(rgba(255,249,239,1.0), rgba(255,249,239,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:488" style="position: absolute; left: 16.0px; top: 22.700000762939453px; width: 180.1999969482422px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(51,51,51,1.0)">Source-only</div></div>
</div>
<div data-id="1:489" style="position: absolute; left: 212.1999969482422px; top: 0.0px; width: 212.1999969482422px; height: 67.4000015258789px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(255,249,239,1.0); background-image: linear-gradient(rgba(255,249,239,1.0), rgba(255,249,239,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:490" style="position: absolute; left: 16.0px; top: 22.700000762939453px; width: 180.1999969482422px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(51,51,51,1.0)">LADA</div></div>
</div>
<div data-id="1:491" style="position: absolute; left: 424.3999938964844px; top: 0.0px; width: 212.1999969482422px; height: 67.4000015258789px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(255,249,239,1.0); background-image: linear-gradient(rgba(255,249,239,1.0), rgba(255,249,239,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:492" style="position: absolute; left: 16.0px; top: 22.700000762939453px; width: 180.1999969482422px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(51,51,51,1.0)">7.9/24.0</div></div>
</div>
<div data-id="1:493" style="position: absolute; left: 636.5999755859375px; top: 0.0px; width: 212.19998168945312px; height: 67.4000015258789px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(255,249,239,1.0); background-image: linear-gradient(rgba(255,249,239,1.0), rgba(255,249,239,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:494" style="position: absolute; left: 16.0px; top: 22.700000762939453px; width: 180.19998168945312px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(51,51,51,1.0)">10.2/31.5</div></div>
</div>
<div data-id="1:495" style="position: absolute; left: 848.7999267578125px; top: 0.0px; width: 212.19998168945312px; height: 67.4000015258789px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(255,249,239,1.0); background-image: linear-gradient(rgba(255,249,239,1.0), rgba(255,249,239,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:496" style="position: absolute; left: 16.0px; top: 22.700000762939453px; width: 180.19998168945312px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(51,51,51,1.0)">18.8/48.4</div></div>
</div>
</div>
<div data-id="1:497" style="position: absolute; left: 0.0px; top: 202.20001220703125px; width: 1061.0px; height: 67.40000915527344px; opacity: 1.0; overflow: hidden; box-sizing: border-box">
<div data-id="1:498" style="position: absolute; left: 0.0px; top: 0.0px; width: 212.1999969482422px; height: 67.40000915527344px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(255,249,239,1.0); background-image: linear-gradient(rgba(255,249,239,1.0), rgba(255,249,239,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:499" style="position: absolute; left: 16.0px; top: 22.70000457763672px; width: 180.1999969482422px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(51,51,51,1.0)">SSDA</div></div>
</div>
<div data-id="1:500" style="position: absolute; left: 212.1999969482422px; top: 0.0px; width: 212.1999969482422px; height: 67.40000915527344px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(255,249,239,1.0); background-image: linear-gradient(rgba(255,249,239,1.0), rgba(255,249,239,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:501" style="position: absolute; left: 16.0px; top: 22.70000457763672px; width: 180.1999969482422px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(51,51,51,1.0)">SADA</div></div>
</div>
<div data-id="1:502" style="position: absolute; left: 424.3999938964844px; top: 0.0px; width: 212.1999969482422px; height: 67.40000915527344px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(255,249,239,1.0); background-image: linear-gradient(rgba(255,249,239,1.0), rgba(255,249,239,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:503" style="position: absolute; left: 16.0px; top: 22.70000457763672px; width: 180.1999969482422px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(51,51,51,1.0)">9.7/27.3</div></div>
</div>
<div data-id="1:504" style="position: absolute; left: 636.5999755859375px; top: 0.0px; width: 212.19998168945312px; height: 67.40000915527344px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(255,249,239,1.0); background-image: linear-gradient(rgba(255,249,239,1.0), rgba(255,249,239,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:505" style="position: absolute; left: 16.0px; top: 22.70000457763672px; width: 180.19998168945312px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(51,51,51,1.0)">12.3/34.9</div></div>
</div>
<div data-id="1:506" style="position: absolute; left: 848.7999267578125px; top: 0.0px; width: 212.19998168945312px; height: 67.40000915527344px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(255,249,239,1.0); background-image: linear-gradient(rgba(255,249,239,1.0), rgba(255,249,239,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:507" style="position: absolute; left: 16.0px; top: 22.70000457763672px; width: 180.19998168945312px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(51,51,51,1.0)">20.4/53.0</div></div>
</div>
</div>
<div data-id="1:508" style="position: absolute; left: 0.0px; top: 269.60003662109375px; width: 1061.0px; height: 67.40000915527344px; opacity: 1.0; overflow: hidden; box-sizing: border-box">
<div data-id="1:509" style="position: absolute; left: 0.0px; top: 0.0px; width: 212.1999969482422px; height: 67.40000915527344px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(255,249,239,1.0); background-image: linear-gradient(rgba(255,249,239,1.0), rgba(255,249,239,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:510" style="position: absolute; left: 16.0px; top: 22.70000457763672px; width: 180.1999969482422px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(51,51,51,1.0)">SSDA</div></div>
</div>
<div data-id="1:511" style="position: absolute; left: 212.1999969482422px; top: 0.0px; width: 212.1999969482422px; height: 67.40000915527344px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(255,249,239,1.0); background-image: linear-gradient(rgba(255,249,239,1.0), rgba(255,249,239,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:512" style="position: absolute; left: 16.0px; top: 22.70000457763672px; width: 180.1999969482422px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(51,51,51,1.0)">LADA</div></div>
</div>
<div data-id="1:513" style="position: absolute; left: 424.3999938964844px; top: 0.0px; width: 212.1999969482422px; height: 67.40000915527344px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(255,249,239,1.0); background-image: linear-gradient(rgba(255,249,239,1.0), rgba(255,249,239,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:514" style="position: absolute; left: 16.0px; top: 22.70000457763672px; width: 180.1999969482422px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(51,51,51,1.0)">10.0/29.1</div></div>
</div>
<div data-id="1:515" style="position: absolute; left: 636.5999755859375px; top: 0.0px; width: 212.19998168945312px; height: 67.40000915527344px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(255,249,239,1.0); background-image: linear-gradient(rgba(255,249,239,1.0), rgba(255,249,239,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:516" style="position: absolute; left: 16.0px; top: 22.70000457763672px; width: 180.19998168945312px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(51,51,51,1.0)">14.0/38.0</div></div>
</div>
<div data-id="1:517" style="position: absolute; left: 848.7999267578125px; top: 0.0px; width: 212.19998168945312px; height: 67.40000915527344px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(255,249,239,1.0); background-image: linear-gradient(rgba(255,249,239,1.0), rgba(255,249,239,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border: 1.0px solid rgba(216,209,191,1.0);">
<div class="ft" data-id="1:518" style="position: absolute; left: 16.0px; top: 22.70000457763672px; width: 180.19998168945312px; height: 22.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 18.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 21.784090042114258px; text-align: center; white-space: nowrap; color: rgba(51,51,51,1.0)">20.9/52.3</div></div>
</div>
</div>
</div>
<div class="ft" data-id="1:519" style="position: absolute; left: 820.0px; top: 250.0px; width: 407.0px; height: 34.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 28.0px; font-family: 'Inter', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 33.8863639831543px; text-align: center; white-space: nowrap; color: rgba(51,51,51,1.0)">SSDA Result (mAP / mAP@0.5)</div></div>
</div>
</div>
</div>
<div class="slide-container">
<div class="slide-label">Slide 8 — Frame</div>
<div class="slide-wrapper">
<div class="slide" data-slide-id="1:520" style="width: 1920.0px; height: 1080.0px; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
<div data-id="1:521" style="position: absolute; left: 0.0px; top: 378.0px; width: 220.64102172851562px; height: 218.09841918945312px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px">
<div data-id="1:522" style="position: absolute; left: 0.0px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:523" style="position: absolute; left: 23.853178024291992px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:524" style="position: absolute; left: 47.707664489746094px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:525" style="position: absolute; left: 71.5582275390625px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:526" style="position: absolute; left: 95.41271209716797px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:527" style="position: absolute; left: 119.2658920288086px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:528" style="position: absolute; left: 143.11907958984375px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:529" style="position: absolute; left: 166.97225952148438px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:530" style="position: absolute; left: 190.82412719726562px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:531" style="position: absolute; left: 214.67730712890625px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:532" style="position: absolute; left: 0.0px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:533" style="position: absolute; left: 23.853178024291992px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:534" style="position: absolute; left: 47.707664489746094px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:535" style="position: absolute; left: 71.5582275390625px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:536" style="position: absolute; left: 95.41271209716797px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:537" style="position: absolute; left: 119.2658920288086px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:538" style="position: absolute; left: 143.11907958984375px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:539" style="position: absolute; left: 166.97225952148438px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:540" style="position: absolute; left: 190.82412719726562px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:541" style="position: absolute; left: 214.67730712890625px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:542" style="position: absolute; left: 0.0px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:543" style="position: absolute; left: 23.853178024291992px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:544" style="position: absolute; left: 47.707664489746094px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:545" style="position: absolute; left: 71.5582275390625px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:546" style="position: absolute; left: 95.41271209716797px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:547" style="position: absolute; left: 119.2658920288086px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:548" style="position: absolute; left: 143.11907958984375px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:549" style="position: absolute; left: 166.97225952148438px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:550" style="position: absolute; left: 190.82412719726562px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:551" style="position: absolute; left: 214.67730712890625px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:552" style="position: absolute; left: 0.0px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:553" style="position: absolute; left: 23.853178024291992px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:554" style="position: absolute; left: 47.707664489746094px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:555" style="position: absolute; left: 71.5582275390625px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:556" style="position: absolute; left: 95.41271209716797px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:557" style="position: absolute; left: 119.2658920288086px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:558" style="position: absolute; left: 143.11907958984375px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:559" style="position: absolute; left: 166.97225952148438px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:560" style="position: absolute; left: 190.82412719726562px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:561" style="position: absolute; left: 214.67730712890625px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:562" style="position: absolute; left: 0.0px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:563" style="position: absolute; left: 23.853178024291992px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:564" style="position: absolute; left: 47.707664489746094px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:565" style="position: absolute; left: 71.5582275390625px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:566" style="position: absolute; left: 95.41271209716797px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:567" style="position: absolute; left: 119.2658920288086px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:568" style="position: absolute; left: 143.11907958984375px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:569" style="position: absolute; left: 166.97225952148438px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:570" style="position: absolute; left: 190.82412719726562px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:571" style="position: absolute; left: 214.67730712890625px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:572" style="position: absolute; left: 0.0px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:573" style="position: absolute; left: 23.853178024291992px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:574" style="position: absolute; left: 47.707664489746094px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:575" style="position: absolute; left: 71.5582275390625px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:576" style="position: absolute; left: 95.41271209716797px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:577" style="position: absolute; left: 119.2658920288086px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:578" style="position: absolute; left: 143.11907958984375px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:579" style="position: absolute; left: 166.97225952148438px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:580" style="position: absolute; left: 190.82412719726562px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:581" style="position: absolute; left: 214.67730712890625px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:582" style="position: absolute; left: 0.0px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:583" style="position: absolute; left: 0.0px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:584" style="position: absolute; left: 0.0px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:585" style="position: absolute; left: 0.0px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:586" style="position: absolute; left: 23.853178024291992px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:587" style="position: absolute; left: 23.853178024291992px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:588" style="position: absolute; left: 23.853178024291992px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:589" style="position: absolute; left: 23.853178024291992px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:590" style="position: absolute; left: 47.707664489746094px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:591" style="position: absolute; left: 47.707664489746094px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:592" style="position: absolute; left: 47.707664489746094px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:593" style="position: absolute; left: 47.707664489746094px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:594" style="position: absolute; left: 71.5582275390625px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:595" style="position: absolute; left: 71.5582275390625px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:596" style="position: absolute; left: 71.5582275390625px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:597" style="position: absolute; left: 71.5582275390625px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:598" style="position: absolute; left: 95.41271209716797px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:599" style="position: absolute; left: 95.41271209716797px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:600" style="position: absolute; left: 95.41271209716797px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:601" style="position: absolute; left: 95.41271209716797px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:602" style="position: absolute; left: 119.2658920288086px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:603" style="position: absolute; left: 119.2658920288086px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:604" style="position: absolute; left: 119.2658920288086px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:605" style="position: absolute; left: 119.2658920288086px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:606" style="position: absolute; left: 143.11907958984375px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:607" style="position: absolute; left: 143.11907958984375px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:608" style="position: absolute; left: 143.11907958984375px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:609" style="position: absolute; left: 143.11907958984375px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:610" style="position: absolute; left: 166.97225952148438px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:611" style="position: absolute; left: 166.97225952148438px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:612" style="position: absolute; left: 166.97225952148438px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:613" style="position: absolute; left: 166.97225952148438px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:614" style="position: absolute; left: 190.82412719726562px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:615" style="position: absolute; left: 190.82412719726562px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:616" style="position: absolute; left: 190.82412719726562px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:617" style="position: absolute; left: 190.82412719726562px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:618" style="position: absolute; left: 214.67730712890625px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:619" style="position: absolute; left: 214.67730712890625px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:620" style="position: absolute; left: 214.67730712890625px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:621" style="position: absolute; left: 214.67730712890625px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(230,129,62,1.0); background-image: linear-gradient(rgba(230,129,62,1.0), rgba(230,129,62,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
</div>
<div data-id="1:622" style="position: absolute; left: 525.0px; top: 752.0px; width: 220.64102172851562px; height: 218.09841918945312px; opacity: 0.4000000059604645; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px">
<div data-id="1:623" style="position: absolute; left: 0.0px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:624" style="position: absolute; left: 23.853178024291992px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:625" style="position: absolute; left: 47.707664489746094px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:626" style="position: absolute; left: 71.5582275390625px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:627" style="position: absolute; left: 95.41271209716797px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:628" style="position: absolute; left: 119.2658920288086px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:629" style="position: absolute; left: 143.11907958984375px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:630" style="position: absolute; left: 166.97225952148438px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:631" style="position: absolute; left: 190.82412719726562px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:632" style="position: absolute; left: 214.67730712890625px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:633" style="position: absolute; left: 0.0px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:634" style="position: absolute; left: 23.853178024291992px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:635" style="position: absolute; left: 47.707664489746094px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:636" style="position: absolute; left: 71.5582275390625px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:637" style="position: absolute; left: 95.41271209716797px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:638" style="position: absolute; left: 119.2658920288086px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:639" style="position: absolute; left: 143.11907958984375px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:640" style="position: absolute; left: 166.97225952148438px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:641" style="position: absolute; left: 190.82412719726562px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:642" style="position: absolute; left: 214.67730712890625px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:643" style="position: absolute; left: 0.0px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:644" style="position: absolute; left: 23.853178024291992px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:645" style="position: absolute; left: 47.707664489746094px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:646" style="position: absolute; left: 71.5582275390625px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:647" style="position: absolute; left: 95.41271209716797px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:648" style="position: absolute; left: 119.2658920288086px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:649" style="position: absolute; left: 143.11907958984375px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:650" style="position: absolute; left: 166.97225952148438px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:651" style="position: absolute; left: 190.82412719726562px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:652" style="position: absolute; left: 214.67730712890625px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:653" style="position: absolute; left: 0.0px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:654" style="position: absolute; left: 23.853178024291992px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:655" style="position: absolute; left: 47.707664489746094px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:656" style="position: absolute; left: 71.5582275390625px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:657" style="position: absolute; left: 95.41271209716797px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:658" style="position: absolute; left: 119.2658920288086px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:659" style="position: absolute; left: 143.11907958984375px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:660" style="position: absolute; left: 166.97225952148438px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:661" style="position: absolute; left: 190.82412719726562px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:662" style="position: absolute; left: 214.67730712890625px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:663" style="position: absolute; left: 0.0px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:664" style="position: absolute; left: 23.853178024291992px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:665" style="position: absolute; left: 47.707664489746094px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:666" style="position: absolute; left: 71.5582275390625px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:667" style="position: absolute; left: 95.41271209716797px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:668" style="position: absolute; left: 119.2658920288086px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:669" style="position: absolute; left: 143.11907958984375px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:670" style="position: absolute; left: 166.97225952148438px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:671" style="position: absolute; left: 190.82412719726562px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:672" style="position: absolute; left: 214.67730712890625px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:673" style="position: absolute; left: 0.0px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:674" style="position: absolute; left: 23.853178024291992px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:675" style="position: absolute; left: 47.707664489746094px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:676" style="position: absolute; left: 71.5582275390625px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:677" style="position: absolute; left: 95.41271209716797px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:678" style="position: absolute; left: 119.2658920288086px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:679" style="position: absolute; left: 143.11907958984375px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:680" style="position: absolute; left: 166.97225952148438px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:681" style="position: absolute; left: 190.82412719726562px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:682" style="position: absolute; left: 214.67730712890625px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:683" style="position: absolute; left: 0.0px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:684" style="position: absolute; left: 0.0px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:685" style="position: absolute; left: 0.0px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:686" style="position: absolute; left: 0.0px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:687" style="position: absolute; left: 23.853178024291992px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:688" style="position: absolute; left: 23.853178024291992px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:689" style="position: absolute; left: 23.853178024291992px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:690" style="position: absolute; left: 23.853178024291992px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:691" style="position: absolute; left: 47.707664489746094px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:692" style="position: absolute; left: 47.707664489746094px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:693" style="position: absolute; left: 47.707664489746094px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:694" style="position: absolute; left: 47.707664489746094px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:695" style="position: absolute; left: 71.5582275390625px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:696" style="position: absolute; left: 71.5582275390625px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:697" style="position: absolute; left: 71.5582275390625px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:698" style="position: absolute; left: 71.5582275390625px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:699" style="position: absolute; left: 95.41271209716797px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:700" style="position: absolute; left: 95.41271209716797px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:701" style="position: absolute; left: 95.41271209716797px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:702" style="position: absolute; left: 95.41271209716797px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:703" style="position: absolute; left: 119.2658920288086px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:704" style="position: absolute; left: 119.2658920288086px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:705" style="position: absolute; left: 119.2658920288086px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:706" style="position: absolute; left: 119.2658920288086px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:707" style="position: absolute; left: 143.11907958984375px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:708" style="position: absolute; left: 143.11907958984375px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:709" style="position: absolute; left: 143.11907958984375px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:710" style="position: absolute; left: 143.11907958984375px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:711" style="position: absolute; left: 166.97225952148438px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:712" style="position: absolute; left: 166.97225952148438px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:713" style="position: absolute; left: 166.97225952148438px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:714" style="position: absolute; left: 166.97225952148438px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:715" style="position: absolute; left: 190.82412719726562px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:716" style="position: absolute; left: 190.82412719726562px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:717" style="position: absolute; left: 190.82412719726562px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:718" style="position: absolute; left: 190.82412719726562px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:719" style="position: absolute; left: 214.67730712890625px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:720" style="position: absolute; left: 214.67730712890625px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:721" style="position: absolute; left: 214.67730712890625px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:722" style="position: absolute; left: 214.67730712890625px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
</div>
<div data-id="1:723" style="position: absolute; left: 822.0px; top: 514.0px; width: 220.64102172851562px; height: 218.09841918945312px; opacity: 0.4000000059604645; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px">
<div data-id="1:724" style="position: absolute; left: 0.0px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:725" style="position: absolute; left: 23.853178024291992px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:726" style="position: absolute; left: 47.707664489746094px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:727" style="position: absolute; left: 71.5582275390625px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:728" style="position: absolute; left: 95.41271209716797px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:729" style="position: absolute; left: 119.2658920288086px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:730" style="position: absolute; left: 143.11907958984375px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:731" style="position: absolute; left: 166.97225952148438px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:732" style="position: absolute; left: 190.82412719726562px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:733" style="position: absolute; left: 214.67730712890625px; top: 0.0px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:734" style="position: absolute; left: 0.0px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:735" style="position: absolute; left: 23.853178024291992px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:736" style="position: absolute; left: 47.707664489746094px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:737" style="position: absolute; left: 71.5582275390625px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:738" style="position: absolute; left: 95.41271209716797px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:739" style="position: absolute; left: 119.2658920288086px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:740" style="position: absolute; left: 143.11907958984375px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:741" style="position: absolute; left: 166.97225952148438px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:742" style="position: absolute; left: 190.82412719726562px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:743" style="position: absolute; left: 214.67730712890625px; top: 23.853097915649414px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:744" style="position: absolute; left: 0.0px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:745" style="position: absolute; left: 23.853178024291992px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:746" style="position: absolute; left: 47.707664489746094px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:747" style="position: absolute; left: 71.5582275390625px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:748" style="position: absolute; left: 95.41271209716797px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:749" style="position: absolute; left: 119.2658920288086px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:750" style="position: absolute; left: 143.11907958984375px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:751" style="position: absolute; left: 166.97225952148438px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:752" style="position: absolute; left: 190.82412719726562px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:753" style="position: absolute; left: 214.67730712890625px; top: 47.706275939941406px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:754" style="position: absolute; left: 0.0px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:755" style="position: absolute; left: 23.853178024291992px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:756" style="position: absolute; left: 47.707664489746094px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:757" style="position: absolute; left: 71.5582275390625px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:758" style="position: absolute; left: 95.41271209716797px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:759" style="position: absolute; left: 119.2658920288086px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:760" style="position: absolute; left: 143.11907958984375px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:761" style="position: absolute; left: 166.97225952148438px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:762" style="position: absolute; left: 190.82412719726562px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:763" style="position: absolute; left: 214.67730712890625px; top: 71.55937194824219px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:764" style="position: absolute; left: 0.0px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:765" style="position: absolute; left: 23.853178024291992px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:766" style="position: absolute; left: 47.707664489746094px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:767" style="position: absolute; left: 71.5582275390625px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:768" style="position: absolute; left: 95.41271209716797px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:769" style="position: absolute; left: 119.2658920288086px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:770" style="position: absolute; left: 143.11907958984375px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:771" style="position: absolute; left: 166.97225952148438px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:772" style="position: absolute; left: 190.82412719726562px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:773" style="position: absolute; left: 214.67730712890625px; top: 95.41251373291016px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:774" style="position: absolute; left: 0.0px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:775" style="position: absolute; left: 23.853178024291992px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:776" style="position: absolute; left: 47.707664489746094px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:777" style="position: absolute; left: 71.5582275390625px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:778" style="position: absolute; left: 95.41271209716797px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:779" style="position: absolute; left: 119.2658920288086px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:780" style="position: absolute; left: 143.11907958984375px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:781" style="position: absolute; left: 166.97225952148438px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:782" style="position: absolute; left: 190.82412719726562px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:783" style="position: absolute; left: 214.67730712890625px; top: 119.26560974121094px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:784" style="position: absolute; left: 0.0px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:785" style="position: absolute; left: 0.0px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:786" style="position: absolute; left: 0.0px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:787" style="position: absolute; left: 0.0px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:788" style="position: absolute; left: 23.853178024291992px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:789" style="position: absolute; left: 23.853178024291992px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:790" style="position: absolute; left: 23.853178024291992px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:791" style="position: absolute; left: 23.853178024291992px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:792" style="position: absolute; left: 47.707664489746094px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:793" style="position: absolute; left: 47.707664489746094px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:794" style="position: absolute; left: 47.707664489746094px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:795" style="position: absolute; left: 47.707664489746094px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:796" style="position: absolute; left: 71.5582275390625px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:797" style="position: absolute; left: 71.5582275390625px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:798" style="position: absolute; left: 71.5582275390625px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:799" style="position: absolute; left: 71.5582275390625px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:800" style="position: absolute; left: 95.41271209716797px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:801" style="position: absolute; left: 95.41271209716797px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:802" style="position: absolute; left: 95.41271209716797px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:803" style="position: absolute; left: 95.41271209716797px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:804" style="position: absolute; left: 119.2658920288086px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:805" style="position: absolute; left: 119.2658920288086px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:806" style="position: absolute; left: 119.2658920288086px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:807" style="position: absolute; left: 119.2658920288086px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:808" style="position: absolute; left: 143.11907958984375px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:809" style="position: absolute; left: 143.11907958984375px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:810" style="position: absolute; left: 143.11907958984375px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:811" style="position: absolute; left: 143.11907958984375px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:812" style="position: absolute; left: 166.97225952148438px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:813" style="position: absolute; left: 166.97225952148438px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:814" style="position: absolute; left: 166.97225952148438px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:815" style="position: absolute; left: 166.97225952148438px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:816" style="position: absolute; left: 190.82412719726562px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:817" style="position: absolute; left: 190.82412719726562px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:818" style="position: absolute; left: 190.82412719726562px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:819" style="position: absolute; left: 190.82412719726562px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:820" style="position: absolute; left: 214.67730712890625px; top: 143.11874389648438px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:821" style="position: absolute; left: 214.67730712890625px; top: 166.12420654296875px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:822" style="position: absolute; left: 214.67730712890625px; top: 189.12966918945312px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:823" style="position: absolute; left: 214.67730712890625px; top: 212.1351318359375px; width: 5.963282108306885px; height: 5.963282108306885px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 1.3440860509872437px; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
</div>
<div class="ft" data-id="1:824" style="position: absolute; left: 80.0px; top: 172.0px; width: 789.0px; height: 140.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 140.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: -2.8000000000000003px; line-height: 140.0px; text-align: left; white-space: nowrap; color: rgba(48,66,88,1.0)">Conclusion</div></div>
<div data-id="1:825" style="position: absolute; left: 1135.0px; top: 10.0px; width: 785.0px; height: 258.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(172,179,188,1.0); background-image: linear-gradient(rgba(172,179,188,1.0), rgba(172,179,188,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div class="ft" data-id="1:826" style="position: absolute; left: 80.0px; top: 65.0px; width: 379.0px; height: 55.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 46.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 600; letter-spacing: -2.0px; line-height: 55.20000076293945px; text-align: left; white-space: nowrap; color: rgba(255,255,255,1.0)">SSDA Benchmark</div></div>
<div class="ft" data-id="1:827" style="position: absolute; left: 80.0px; top: 136.0px; width: 625.0px; height: 72.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; color: rgba(242,243,242,1.0)">Proposed Semi-supervised Domain Adaptation benchmark for Object Detection with wildfire dataset.</div></div>
</div>
<div data-id="1:828" style="position: absolute; left: 1135.0px; top: 546.0px; width: 785.0px; height: 258.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(89,104,121,1.0); background-image: linear-gradient(rgba(89,104,121,1.0), rgba(89,104,121,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div class="ft" data-id="1:829" style="position: absolute; left: 80.0px; top: 65.0px; width: 263.0px; height: 40.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 40.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 600; letter-spacing: -2.0px; line-height: 40.0px; text-align: left; white-space: nowrap; color: rgba(255,255,255,1.0)">LADA Baseline</div></div>
<div class="ft" data-id="1:830" style="position: absolute; left: 80.0px; top: 121.0px; width: 625.0px; height: 72.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; color: rgba(242,243,242,1.0)">Suggested robust baseline named LADA combining pseudo labeling, CoordConv, and multiple losses.</div></div>
</div>
<div data-id="1:831" style="position: absolute; left: 1135.0px; top: 812.0px; width: 785.0px; height: 258.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(48,66,88,1.0); background-image: linear-gradient(rgba(48,66,88,1.0), rgba(48,66,88,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div class="ft" data-id="1:832" style="position: absolute; left: 80.0px; top: 65.0px; width: 342.0px; height: 40.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 40.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 600; letter-spacing: -2.0px; line-height: 40.0px; text-align: left; white-space: nowrap; color: rgba(255,255,255,1.0)">Label Contribution</div></div>
<div class="ft" data-id="1:833" style="position: absolute; left: 80.0px; top: 121.0px; width: 625.0px; height: 72.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; color: rgba(242,243,242,1.0)">Proposed labels covering 283 scenes (30x more than previous), significantly improving detection performance.</div></div>
</div>
<div data-id="1:834" style="position: absolute; left: 1135.0px; top: 278.0px; width: 785.0px; height: 258.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(110,120,133,1.0); background-image: linear-gradient(rgba(110,120,133,1.0), rgba(110,120,133,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div class="ft" data-id="1:835" style="position: absolute; left: 80.0px; top: 65.0px; width: 245.0px; height: 40.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 40.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 600; letter-spacing: -2.0px; line-height: 40.0px; text-align: left; white-space: nowrap; color: rgba(255,255,255,1.0)">Performance</div></div>
<div class="ft" data-id="1:836" style="position: absolute; left: 80.0px; top: 121.0px; width: 625.0px; height: 72.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(3.469446951953614e-18rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; color: rgba(242,243,242,1.0)">LADA outperformed SOTA Scale Aware Domain Adaptation across all SSDA protocols in mAP.</div></div>
</div>
<div class="ft" data-id="1:837" style="position: absolute; left: 79.0px; top: 80.0px; width: 21.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 32.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 43.20000076293945px; text-align: center; white-space: nowrap; color: rgba(110,120,133,1.0)">9</div></div>
<div class="ft" data-id="1:838" style="position: absolute; left: 80.0px; top: 966.0px; width: 268.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; white-space: nowrap; color: rgba(110,120,133,1.0)">company@email.com</div></div>
</div>
</div>
</div>
<div class="slide-container">
<div class="slide-label">Slide 9 — Frame</div>
<div class="slide-wrapper">
<div class="slide" data-slide-id="1:839" style="width: 1920.0px; height: 1080.0px; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
<div data-id="1:840" style="position: absolute; left: 80.0px; top: 272.0px; width: 1000.0px; height: 188.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:841" style="position: absolute; left: 0.0px; top: 0.0px; width: 1000.0px; height: 140.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 140.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: -2.8000000000000003px; line-height: 140.0px; text-align: left; white-space: nowrap; color: rgba(48,66,88,1.0)">Thank You</div></div>
<div class="ft" data-id="1:842" style="position: absolute; left: 0.0px; top: 156.0px; width: 1000.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; white-space: nowrap; color: rgba(110,120,133,1.0)">Semi-Supervised Domain Adaptation for Wildfire Detection — ICLR 2024</div></div>
</div>
<div data-id="1:843" style="position: absolute; left: 0.0px; top: 596.0px; width: 1920.0px; height: 484.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(242,243,242,1.0); background-image: linear-gradient(rgba(242,243,242,1.0), rgba(242,243,242,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:844" style="position: absolute; left: 320.0px; top: 786.0px; width: 386.0px; height: 103.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:845" style="position: absolute; left: 0.0px; top: 0.0px; width: 342.0px; height: 55.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 46.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 600; letter-spacing: -2.0px; line-height: 55.20000076293945px; text-align: left; white-space: nowrap; color: rgba(48,66,88,1.0)">JooYoung Jang</div></div>
<div class="ft" data-id="1:846" style="position: absolute; left: 0.0px; top: 71.0px; width: 386.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 32.400001525878906px; text-align: left; white-space: nowrap; color: rgba(110,120,133,1.0)">et al. — Seoul National University</div></div>
</div>
<div data-id="1:847" style="position: absolute; left: 80.0px; top: 738.0px; width: 200.0px; height: 200.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: url('images/43c3de2053d9fbee60939901ce612b94c67c634c.png'); background-size: cover; background-position: center; background-repeat: no-repeat;; border-radius: 50%"></div>
<div class="ft" data-id="1:848" style="position: absolute; left: 74.0px; top: 80.0px; width: 31.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 32.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 43.20000076293945px; text-align: center; white-space: nowrap; color: rgba(110,120,133,1.0)">10</div></div>
<div data-id="1:849" style="position: absolute; left: 1412.0px; top: 634.0px; width: 303.0px; height: 303.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: url('images/3aa5ccaff877d1135931a4fa5580618adf22289b.png'); background-size: cover; background-position: center; background-repeat: no-repeat;"></div>
<div class="ft" data-id="1:850" style="position: absolute; left: 1425.0px; top: 938.0px; width: 278.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 32.0px; font-family: 'Poppins', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: 0.0px; line-height: 43.20000076293945px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">BloomBerry/LADA</div></div>
</div>
</div>
</div>
<div class="images-section"><h2>Images</h2><div class="images-grid">
<div class="image-card">
<img src="images/3aa5ccaff877d1135931a4fa5580618adf22289b.png" alt="3aa5ccaff877d1135931a4fa5580618adf22289b">
<div class="image-label">3aa5ccaff877d1135931a4fa5580618adf22289b.png</div>
</div>
<div class="image-card">
<img src="images/43c3de2053d9fbee60939901ce612b94c67c634c.png" alt="43c3de2053d9fbee60939901ce612b94c67c634c">
<div class="image-label">43c3de2053d9fbee60939901ce612b94c67c634c.png</div>
</div>
</div></div>
<script>
// Shrink-to-fit: when a custom font fails to load and the fallback is wider/taller, the rendered text overflows the Figma bbox. The shrink is SLACK-AWARE — each text is allowed to overflow into the empty space between it and its nearest neighbor in the overflow direction. Figma sizes text containers tightly around the original font's glyph extent, but the surrounding layout often leaves visual breathing room (e.g. 56px gaps between nav labels). Squeezing every label into its tight bbox makes them look weak; letting them grow into the gap keeps the design closer to the source while still preventing actual overlap.
(function() {
// Per-element "how far can I overflow before hitting a neighbor" computed once. Position-fixed: depends only on bbox layout, not on font shrink state.
var slackCache = new WeakMap();
function computeSlack(container) {
if (slackCache.has(container)) return slackCache.get(container);
var slide = container.closest('.slide');
var er = container.getBoundingClientRect();
var sliderc = slide ? slide.getBoundingClientRect() : null;
var leftS = Infinity, rightS = Infinity, topS = Infinity, botS = Infinity;
if (slide) {
// Collide against other text labels only — overlapping decorative shapes/backgrounds is usually fine and often intentional. Text-on-text is what creates unreadable layouts.
slide.querySelectorAll('.ft').forEach(function(other) {
if (other === container || container.contains(other) || other.contains(container)) return;
var or = other.getBoundingClientRect();
var vertOverlap = or.top < er.bottom - 0.5 && or.bottom > er.top + 0.5;
var horzOverlap = or.left < er.right - 0.5 && or.right > er.left + 0.5;
if (vertOverlap) {
if (or.left >= er.right - 0.5) rightS = Math.min(rightS, or.left - er.right);
if (or.right <= er.left + 0.5) leftS = Math.min(leftS, er.left - or.right);
}
if (horzOverlap) {
if (or.top >= er.bottom - 0.5) botS = Math.min(botS, or.top - er.bottom);
if (or.bottom <= er.top + 0.5) topS = Math.min(topS, er.top - or.bottom);
}
});
}
if (sliderc) {
leftS = Math.min(leftS, Math.max(0, er.left - sliderc.left));
rightS = Math.min(rightS, Math.max(0, sliderc.right - er.right));
topS = Math.min(topS, Math.max(0, er.top - sliderc.top));
botS = Math.min(botS, Math.max(0, sliderc.bottom - er.bottom));
}
var scale = er.width / (container.clientWidth || 1); // rendered-px → layout-px
var toLayout = function(v) { return v === Infinity ? 99999 : Math.max(0, v / (scale || 1)); };
var s = { left: toLayout(leftS), right: toLayout(rightS), top: toLayout(topS), bottom: toLayout(botS) };
slackCache.set(container, s);
return s;
}
function fitOne(container) {
var inner = container.firstElementChild;
if (!inner) return;
var cw = container.clientWidth, ch = container.clientHeight;
if (!cw || !ch) return;
if (inner.dataset.origFs) {
inner.style.fontSize = inner.dataset.origFs;
if (inner.dataset.origLs) inner.style.letterSpacing = inner.dataset.origLs;
if (inner.dataset.origLh) inner.style.lineHeight = inner.dataset.origLh;
} else {
inner.dataset.origFs = getComputedStyle(inner).fontSize;
inner.dataset.origLs = getComputedStyle(inner).letterSpacing;
inner.dataset.origLh = getComputedStyle(inner).lineHeight;
}
var origFs = parseFloat(inner.dataset.origFs);
var origLs = parseFloat(inner.dataset.origLs) || 0;
var origLh = parseFloat(inner.dataset.origLh) || 0;
// Single-line text (white-space: nowrap, or no <br> in the source) only needs to fit its WIDTH — the fallback font's natural line-box (ascender + descender) is usually a few px taller than the Figma bbox even at the correct font, and that's expected, not an overflow to fix.
var isSingleLine = getComputedStyle(inner).whiteSpace === 'nowrap' || !/<br/i.test(inner.innerHTML);
var slack = computeSlack(container);
var align = getComputedStyle(inner).textAlign;
// Effective allowed width: bbox + slack on the side(s) the text actually overflows toward, per text-align.
var allowedW;
if (align === 'right' || align === 'end') allowedW = cw + slack.left;
else if (align === 'center') allowedW = cw + 2 * Math.min(slack.left, slack.right);
else allowedW = cw + slack.right; // left / start / justify
var allowedH = ch + slack.bottom; // text typically grows downward when wrapping
var fs = origFs;
for (var iter = 0; iter < 8; iter++) {
var iw = inner.scrollWidth, ih = inner.scrollHeight;
var rw = iw > allowedW + 0.5 ? allowedW / iw : 1;
var rh = (!isSingleLine && ih > allowedH + 0.5) ? allowedH / ih : 1;
var r = Math.min(rw, rh);
if (r > 0.998) break;
var newFs = Math.max(6, fs * r);
if (newFs >= fs - 0.05) break;
fs = newFs;
inner.style.fontSize = fs + 'px';
// Scale letter-spacing AND line-height proportionally so they shrink with font-size — otherwise the absolute-px values dominate at small sizes.
if (origLs) inner.style.letterSpacing = (origLs * fs / origFs) + 'px';
if (origLh) inner.style.lineHeight = (origLh * fs / origFs) + 'px';
}
}
function fitAll() { document.querySelectorAll('.ft').forEach(fitOne); }
if (document.fonts && document.fonts.ready) {
document.fonts.ready.then(fitAll);
} else {
window.addEventListener('load', fitAll);
}
var t;
window.addEventListener('resize', function() { clearTimeout(t); t = setTimeout(fitAll, 150); });
})();
</script>
</body>
</html>
|