File size: 327,396 Bytes
ada5d02 | 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 | {"file_name": "images/BOUSTH_Stage1_Im0.JPG", "objects": {"bbox": [[0.3122665, 0.1566015, 0.069963, 0.105337], [0.3337225, 0.412219, 0.051539, 0.080758], [0.2856805, 0.43012700000000004, 0.056437, 0.088834], [0.49370349999999996, 0.14536549999999998, 0.069963, 0.105337], [0.5445425, 0.27914300000000003, 0.058069, 0.082514], [0.3500465, 0.32479, 0.051539, 0.080758], [0.590485, 0.4385535, 0.049674, 0.067767], [0.713853, 0.6218400000000001, 0.064832, 0.10323], [0.552938, 0.62184, 0.033116, 0.086376], [0.3731345, 0.5663625, 0.042211, 0.067065], [0.8787309999999999, 0.740871, 0.082556, 0.096208]], "categories": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im1.JPG", "objects": {"bbox": [[0.190298, 0.7373595, 0.10681, 0.167837], [0.1037785, 0.780548, 0.110541, 0.180126], [0.2325095, 0.6049855000000001, 0.092351, 0.141503], [0.181203, 0.258427, 0.125, 0.205056], [0.42490700000000003, 0.3570925, 0.091884, 0.110955], [0.49883400000000006, 0.272121, 0.134562, 0.20611], [0.5911845, 0.5235255, 0.109841, 0.152739], [0.6672104999999999, 0.8405895, 0.099347, 0.122191]], "categories": [0, 0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im10.JPG", "objects": {"bbox": [[0.33931900000000004, 0.00035100000000001796, 0.378498, 0.311096], [0.21058799999999997, 0.1372895, 0.345382, 0.420295], [0.20755650000000003, 0.5688205, 0.232509, 0.261587], [0.43563450000000004, 0.5948035, 0.333955, 0.364817]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im108.JPG", "objects": {"bbox": [[0.6124065, 0.3409415, 0.038013, 0.054775], [0.6058775, 0.0007020000000000012, 0.056203, 0.060042], [0.6646460000000001, 0.072683, 0.047108, 0.05934], [0.7691235, 0.09339900000000001, 0.042211, 0.051966], [0.487173, 0.44627799999999995, 0.03195, 0.04073], [0.6289640000000001, 0.418539, 0.03195, 0.04073]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im109.JPG", "objects": {"bbox": [[0.6147385, 0.4111655, 0.038713, 0.050211], [0.6294305, 0.49297749999999996, 0.028685, 0.031601], [0.6107745, 0.04915750000000001, 0.057603, 0.087781], [0.666045, 0.146067, 0.048974, 0.05302], [0.7793840000000001, 0.16608099999999998, 0.034282, 0.055478]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im11.JPG", "objects": {"bbox": [[0.1511195, 0.0003509999999999902, 0.367071, 0.293188], [0.40088650000000003, 0.34550600000000004, 0.287547, 0.388694], [0.172342, 0.349017, 0.220382, 0.199438]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im12.JPG", "objects": {"bbox": [[0.30457100000000004, 0.008075499999999985, 0.36264, 0.458919], [0.1956625, 0.370436, 0.340019, 0.38764], [0.4708485, 0.7591295, 0.317631, 0.236657], [0.22481399999999996, 0.7682589999999999, 0.241604, 0.213834]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im13.JPG", "objects": {"bbox": [[0.7087215, 0.3602535, 0.230877, 0.353581], [0.37080250000000003, 0.25948099999999996, 0.301073, 0.48139], [0.184235, 0.016151500000000013, 0.301772, 0.472261], [0.00023350000000001148, 0.8507725, 0.130597, 0.141503]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im14.JPG", "objects": {"bbox": [[0.351213, 0.04985999999999996, 0.288246, 0.57198], [0.12103500000000002, 0.626405, 0.229478, 0.32514], [0.003031999999999993, 0.586728, 0.1257, 0.406952]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im15.JPG", "objects": {"bbox": [[0.5069965, 0.49297749999999996, 0.252799, 0.379213], [0.7560635, 0.8441015, 0.243937, 0.155899], [0.026353000000000015, 0.0024585000000000024, 0.264692, 0.296699]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im16.JPG", "objects": {"bbox": [[0.316698, 0.13483099999999998, 0.240672, 0.405548], [0.49883349999999993, 0.5733845, 0.440765, 0.426615]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im17.JPG", "objects": {"bbox": [[0.10984100000000002, 0.1688905, 0.49417, 0.642205]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im18.JPG", "objects": {"bbox": [[0.0002334999999999976, 0.0003505000000000036, 0.286381, 0.254565], [0.39948700000000004, 0.0691715, 0.26166, 0.340941], [0.49883350000000004, 0.548455, 0.080457, 0.114466], [0.780084, 0.9129215, 0.219916, 0.087079]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im19.JPG", "objects": {"bbox": [[0.2129195, 0.0003509999999999902, 0.345149, 0.397472]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im2.JPG", "objects": {"bbox": [[0.36473849999999997, 0.282303, 0.285215, 0.455056], [0.559002, 0.8426965, 0.227146, 0.157303]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im20.JPG", "objects": {"bbox": [[0.19029849999999998, 0.0003505000000000036, 0.532649, 0.328301], [0.1963625, 0.4023880000000001, 0.336287, 0.41573]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im21.JPG", "objects": {"bbox": [[0.34445000000000003, 0.22893249999999998, 0.378498, 0.461025], [0.16254649999999998, 0.41573050000000006, 0.336287, 0.450843], [0.09258399999999999, 0.7556185, 0.204524, 0.242275]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im22.JPG", "objects": {"bbox": [[0.42490700000000003, 0.15414299999999997, 0.364272, 0.492626], [0.46781749999999994, 0.00035149999999999765, 0.188899, 0.089185]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im23.JPG", "objects": {"bbox": [[0.23834, 0.3525285, 0.228778, 0.379213], [0.46338650000000003, 0.08075900000000003, 0.317397, 0.487008], [0.6019125000000001, 0.0003510000000000041, 0.214319, 0.06566]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im24.JPG", "objects": {"bbox": [[0.2775185, 0.24262650000000002, 0.459655, 0.680829], [0.8584419999999999, 0.23560400000000004, 0.141558, 0.582514]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im25.JPG", "objects": {"bbox": [[0.34981399999999996, 0.2798455, 0.40555, 0.494031], [0.2112875, 0.0003510000000000041, 0.284515, 0.22507]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im26.JPG", "objects": {"bbox": [[0.26166100000000003, 0.773877, 0.091884, 0.128862], [0.567398, 0.821981, 0.091884, 0.128862], [0.624767, 0.688553, 0.085588, 0.116924], [0.2737875, 0.6481745, 0.078591, 0.104635], [0.5585355, 0.4266155, 0.078591, 0.104635], [0.5097945, 0.31144649999999996, 0.072295, 0.110955], [0.2947765, 0.4547055, 0.052705, 0.083567], [0.4379665, 0.29424150000000004, 0.052705, 0.083567], [0.383862, 0.295997, 0.064366, 0.101826]], "categories": [0, 0, 0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im27.JPG", "objects": {"bbox": [[0.503965, 0.13728900000000002, 0.283582, 0.435042], [0.27751899999999996, 0.5459970000000001, 0.27472, 0.352528]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im28.JPG", "objects": {"bbox": [[0.576259, 0.5653094999999999, 0.104478, 0.142907], [0.12360099999999999, 0.5962080000000001, 0.120802, 0.149228], [0.499767, 0.7127815, 0.104478, 0.142907], [0.522388, 0.22717749999999998, 0.09375, 0.130969], [0.46851699999999996, 0.0702245, 0.09375, 0.130969], [0.181204, 0.197332, 0.072994, 0.112008], [0.16278, 0.464888, 0.072994, 0.112008]], "categories": [0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im29.JPG", "objects": {"bbox": [[0.414412, 0.641152, 0.10681, 0.15309], [0.428171, 0.8149580000000001, 0.134562, 0.18434], [0.8990205, 0.7619385000000001, 0.100979, 0.183989], [0.7999065, 0.142556, 0.100513, 0.172402], [0.6893655, 0.009128999999999998, 0.100513, 0.172402], [0.388759, 0.346208, 0.079058, 0.132022], [0.48833950000000004, 0.04740100000000001, 0.108209, 0.180478]], "categories": [0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im3.JPG", "objects": {"bbox": [[0.49113850000000003, 0.49859549999999997, 0.183535, 0.352177]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im30.JPG", "objects": {"bbox": [[0.6070435000000001, 0.38869400000000004, 0.128731, 0.183638], [0.3316235, 0.23911549999999998, 0.076959, 0.130267], [0.172341, 0.19627799999999995, 0.128498, 0.216292], [0.07299449999999999, 0.21769649999999996, 0.096315, 0.110955], [0.20382499999999998, 0.42380650000000003, 0.057136, 0.088483]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im31.JPG", "objects": {"bbox": [[0.470149, 0.6141145, 0.21222, 0.328301], [0.33768600000000004, 0.28792149999999994, 0.171642, 0.307935], [0.06996250000000001, 0.007022499999999987, 0.276119, 0.371489], [0.020989000000000008, 0.197331, 0.152052, 0.279846]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im32.JPG", "objects": {"bbox": [[0.25723, 0.16783749999999997, 0.416744, 0.609199], [0.2805505, 0.0035115000000000007, 0.050373, 0.063553]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im33.JPG", "objects": {"bbox": [[0.28428149999999996, 0.22120799999999996, 0.417677, 0.605688], [0.1595145, 0.0003510000000000041, 0.219683, 0.11552]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im34.JPG", "objects": {"bbox": [[0.6536845, 0.22542099999999998, 0.290345, 0.652388], [0.08278949999999999, 0.0003509999999999902, 0.483675, 0.742978], [0.05946800000000002, 0.544944, 0.312034, 0.422402]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im35.JPG", "objects": {"bbox": [[0.257929, 0.24157300000000004, 0.378498, 0.601124]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im36.JPG", "objects": {"bbox": [[0.311334, 0.24262649999999997, 0.331856, 0.462079]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im37.JPG", "objects": {"bbox": [[0.3670709999999999, 0.23911549999999998, 0.465718, 0.607093]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im38.JPG", "objects": {"bbox": [[0.20475749999999998, 0.21664299999999997, 0.486707, 0.640098]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im39.JPG", "objects": {"bbox": [[0.44006599999999996, 0.447682, 0.312966, 0.436096], [0.2849815, 0.0003515000000000046, 0.312267, 0.381671], [0.0023320000000000007, 0.002458000000000002, 0.133862, 0.19382], [0.5611005, 0.9118679999999999, 0.131063, 0.088132]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im4.JPG", "objects": {"bbox": [[0.6529855, 0.5575845, 0.128731, 0.168539], [0.5340484999999999, 0.14290749999999997, 0.151353, 0.243329], [0.8500465, 0.08391800000000002, 0.149953, 0.254916], [0.647621, 0.7464885, 0.125, 0.195927], [0.5634330000000001, 0.8202245, 0.138526, 0.179775]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im40.JPG", "objects": {"bbox": [[0.251166, 0.13834249999999998, 0.33792, 0.455407], [0.5235540000000001, 0.3728935, 0.271688, 0.385183]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im41.JPG", "objects": {"bbox": [[0.2534985, 0.0930475, 0.306203, 0.431531], [0.4829755, 0.32303400000000004, 0.265625, 0.348666]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im42.JPG", "objects": {"bbox": [[0.4055500000000001, 0.10428399999999999, 0.376866, 0.39993]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im43.JPG", "objects": {"bbox": [[0.201492, 0.497542, 0.08209, 0.099368], [0.2616605, 0.559691, 0.069263, 0.079354], [0.48367499999999997, 0.276685, 0.08209, 0.113062]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im44.JPG", "objects": {"bbox": [[0.340718, 0.184691, 0.070662, 0.091994], [0.5622665, 0.281601, 0.065765, 0.08111]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im45.JPG", "objects": {"bbox": [[0.10611, 0.129213, 0.15555, 0.18118], [0.5979475, 0.2665025, 0.115205, 0.165379], [0.5265855, 0.316011, 0.063899, 0.081812], [0.170709, 0.559691, 0.073694, 0.09059], [0.461987, 0.7183995, 0.065998, 0.086025]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im46.JPG", "objects": {"bbox": [[0.2558305, 0.5326544999999999, 0.140625, 0.151685], [0.405551, 0.4736659999999999, 0.250466, 0.314958]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im47.JPG", "objects": {"bbox": [[0.309935, 0.39220450000000007, 0.283582, 0.371489]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im48.JPG", "objects": {"bbox": [[0.21222000000000002, 0.736306, 0.118004, 0.139396], [0.24300349999999998, 0.6197335, 0.080457, 0.091643], [0.180504, 0.36165749999999997, 0.116604, 0.152739], [0.4204755, 0.3219805, 0.097015, 0.141503], [0.5235545, 0.6910115, 0.082789, 0.143961], [0.6161385, 0.49508399999999997, 0.108209, 0.108848], [0.678638, 0.425913, 0.104478, 0.10323], [0.6604475000000001, 0.2787925, 0.113573, 0.122191]], "categories": [0, 0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im49.JPG", "objects": {"bbox": [[0.22038300000000002, 0.6660815, 0.114272, 0.138343], [0.24370349999999996, 0.538273, 0.081157, 0.100772], [0.177472, 0.2981045, 0.120336, 0.157303], [0.40555050000000004, 0.24016849999999998, 0.105177, 0.140449], [0.5258860000000001, 0.6116575, 0.093284, 0.143961], [0.617537, 0.39993, 0.108442, 0.100772], [0.6627795, 0.330758, 0.118937, 0.104284], [0.6438895, 0.18469049999999998, 0.130131, 0.127107]], "categories": [0, 0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im5.JPG", "objects": {"bbox": [[0.4776125, 0.30723349999999994, 0.215951, 0.376053], [0.366371, 0.402388, 0.112174, 0.213834], [0.0002334999999999976, 0.4069525, 0.157649, 0.349719], [0.690532, 0.656952, 0.182836, 0.23139]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im50.JPG", "objects": {"bbox": [[0.3565765, 0.4782305, 0.042211, 0.042837], [0.496502, 0.504213, 0.04291, 0.047402], [0.5072295, 0.4617275, 0.035215, 0.045997], [0.5013995, 0.4034405, 0.041045, 0.056531], [0.375933, 0.398877, 0.031716, 0.04073]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im51.JPG", "objects": {"bbox": [[0.35284499999999996, 0.525632, 0.041278, 0.04073], [0.489505, 0.5519665, 0.040812, 0.048455], [0.49743450000000006, 0.454003, 0.040345, 0.053722], [0.5030315000000001, 0.5077244999999999, 0.032649, 0.045295], [0.3701025, 0.44487350000000003, 0.031483, 0.038975]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im52.JPG", "objects": {"bbox": [[0.5123595, 0.472612, 0.035215, 0.057584], [0.3866605, 0.359199, 0.037547, 0.04986], [0.4678175, 0.219803, 0.039879, 0.060042], [0.5002329999999999, 0.2707165, 0.04431, 0.045295], [0.422808, 0.45786499999999997, 0.032416, 0.041784], [0.5272859999999999, 0.32514, 0.027052, 0.02493]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im53.JPG", "objects": {"bbox": [[0.19636199999999998, 0.500702, 0.093284, 0.114466], [0.394123, 0.173455, 0.089552, 0.133778], [0.47458, 0.275281, 0.092584, 0.12816], [0.5340484999999999, 0.4146775, 0.061101, 0.074789], [0.49720099999999995, 0.7556175, 0.093284, 0.132725], [0.28894600000000004, 0.7271770000000001, 0.072062, 0.10323]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im54.JPG", "objects": {"bbox": [[0.2866135, 0.7580755, 0.080457, 0.098315], [0.22644550000000002, 0.654846, 0.100047, 0.13132], [0.3264925, 0.1169245, 0.088853, 0.157303], [0.417444, 0.119031, 0.067864, 0.147472], [0.58139, 0.222261, 0.08209, 0.13132], [0.5979475, 0.4838485, 0.057369, 0.094101], [0.052704999999999995, 0.5561794999999999, 0.114272, 0.131671]], "categories": [0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im55.JPG", "objects": {"bbox": [[0.2919775, 0.21664350000000002, 0.194729, 0.284059], [0.4911375, 0.1530905, 0.160215, 0.302317], [0.887593, 0.3205755, 0.111474, 0.316011]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im56.JPG", "objects": {"bbox": [[0.3288245, 0.8665735, 0.105877, 0.129213], [0.252799, 0.7566715, 0.13083, 0.154143], [0.044309, 0.6467695, 0.114506, 0.162219], [0.3535445, 0.06811749999999998, 0.121035, 0.179073], [0.46944949999999996, 0.05231800000000002, 0.102379, 0.185744], [0.682369, 0.16889049999999997, 0.123368, 0.170997], [0.7185170000000001, 0.5052675, 0.079524, 0.129213]], "categories": [0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im57.JPG", "objects": {"bbox": [[0.03381550000000001, 0.173455, 0.222015, 0.313904], [0.2595615, 0.139396, 0.165345, 0.327598], [0.6560170000000001, 0.36938150000000003, 0.209188, 0.311447]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im58.JPG", "objects": {"bbox": [[0.312267, 0.40449450000000003, 0.205924, 0.305829], [0.524254, 0.33672699999999994, 0.182136, 0.33743], [0.9244405, 0.5256315, 0.074627, 0.277739]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im59.JPG", "objects": {"bbox": [[0.44612849999999993, 0.42029550000000004, 0.262593, 0.293539], [0.379898, 0.010532999999999987, 0.220382, 0.305478], [0.2646925, 0.200491, 0.068563, 0.08743]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im6.JPG", "objects": {"bbox": [[0.14365650000000002, 0.016152000000000027, 0.227845, 0.366924], [0.0510725, 0.1271065, 0.098647, 0.157303], [0.3542445, 0.40449450000000003, 0.170009, 0.214185], [0.561101, 0.769312, 0.195662, 0.205056]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im60.JPG", "objects": {"bbox": [[0.4491605000000001, 0.34550600000000004, 0.276819, 0.404494]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im61.JPG", "objects": {"bbox": [[0.33325550000000004, 0.17450799999999997, 0.276819, 0.383076], [0.220382, 0.010533500000000001, 0.261894, 0.379213], [0.757463, 0.656952, 0.241604, 0.338834]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im62.JPG", "objects": {"bbox": [[0.30923500000000004, 0.2222615, 0.267724, 0.437149]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im63.JPG", "objects": {"bbox": [[0.30013999999999996, 0.2345505, 0.392024, 0.655899]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im64.JPG", "objects": {"bbox": [[0.30690300000000004, 0.11341300000000001, 0.271688, 0.432584], [0.46408600000000005, 0.606039, 0.229478, 0.380618]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im65.JPG", "objects": {"bbox": [[0.25419749999999997, 0.024929499999999993, 0.342351, 0.530197], [0.4708485, 0.5200134999999999, 0.252799, 0.349017], [0.072994, 0.5438905, 0.625, 0.454003]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im66.JPG", "objects": {"bbox": [[0.4263064999999999, 0.3174155, 0.322761, 0.381671]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im67.JPG", "objects": {"bbox": [[0.1620805, 0.7166429999999999, 0.145289, 0.221208], [0.30667, 0.29389, 0.090252, 0.141854], [0.340018, 0.43574450000000003, 0.083256, 0.120435], [0.4589555, 0.009129499999999999, 0.122901, 0.125351], [0.5375465, 0.14045000000000002, 0.083955, 0.151334], [0.710821, 0.37464899999999995, 0.13153, 0.104284]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im68.JPG", "objects": {"bbox": [[0.06646400000000001, 0.472963, 0.161614, 0.21559], [0.14109149999999998, 0.7011935, 0.142257, 0.207163], [0.46898350000000005, 0.19346850000000002, 0.129431, 0.297051], [0.33069, 0.009129499999999999, 0.211754, 0.211025], [0.7686569999999999, 0.6007725, 0.18097, 0.187149]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im69.JPG", "objects": {"bbox": [[0.36637149999999996, 0.591292, 0.047575, 0.099368], [0.415345, 0.38764000000000004, 0.04431, 0.071278], [0.4326025, 0.45786550000000004, 0.042677, 0.070225], [0.49113850000000003, 0.23209249999999998, 0.045709, 0.075843], [0.5284515, 0.3149575, 0.041045, 0.070225]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im7.JPG", "objects": {"bbox": [[0.366371, 0.3785115, 0.182836, 0.370435], [0.9584885, 0.32303400000000004, 0.041511, 0.265098], [0.90042, 0.619733, 0.09958, 0.132374]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im70.JPG", "objects": {"bbox": [[0.5960825, 0.680126, 0.139925, 0.241222], [0.6014459999999999, 0.47787900000000005, 0.150886, 0.145014], [0.659048, 0.292837, 0.176306, 0.203652], [0.47131550000000005, 0.07478950000000001, 0.127099, 0.232093], [0.22178199999999998, 0.21804749999999998, 0.126866, 0.159059], [0.14715499999999998, 0.2998595, 0.147854, 0.199087]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im71.JPG", "objects": {"bbox": [[0.31599849999999996, 0.16362400000000005, 0.327425, 0.583216], [0.4542915, 0.0003510000000000006, 0.156483, 0.036868], [0.2810165, 0.007022500000000001, 0.138293, 0.143961]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im72.JPG", "objects": {"bbox": [[0.2094215, 0.580758, 0.076959, 0.086728], [0.264692, 0.4708565, 0.072994, 0.085323], [0.477845, 0.6790725, 0.04431, 0.078301], [0.4855415, 0.420295, 0.069263, 0.086728], [0.4349345, 0.394663, 0.049207, 0.060744]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im73.JPG", "objects": {"bbox": [[0.022154500000000008, 0.648525, 0.137593, 0.156952], [0.135495, 0.42731699999999995, 0.104244, 0.167486], [0.5384789999999999, 0.367627, 0.139226, 0.154494], [0.4442625, 0.2938905, 0.105877, 0.133427], [0.5268185000000001, 0.8521770000000001, 0.079991, 0.129916]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im74.JPG", "objects": {"bbox": [[0.0002329999999999971, 0.6063904999999999, 0.08722, 0.280899], [0.529851, 0.442767, 0.253498, 0.292486], [0.39598849999999997, 0.3254915, 0.212453, 0.262289]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im75.JPG", "objects": {"bbox": [[0.40228500000000006, 0.11341299999999999, 0.227146, 0.301264]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im76.JPG", "objects": {"bbox": [[0.46431950000000005, 0.188553, 0.141091, 0.279846]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im77.JPG", "objects": {"bbox": [[0.234375, 0.21559050000000002, 0.409748, 0.481039]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im78.JPG", "objects": {"bbox": [[0.3353545, 0.24824399999999996, 0.381063, 0.533708], [0.9372665, 0.6239469999999999, 0.062733, 0.370084]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im79.JPG", "objects": {"bbox": [[0.434002, 0.4778795, 0.104478, 0.140449], [0.43167, 0.254214, 0.103778, 0.10639], [0.4186105, 0.1299155, 0.105177, 0.137289], [0.49113750000000006, 0.05723349999999999, 0.092351, 0.137289], [0.683069, 0.05723299999999999, 0.059002, 0.12184], [0.7546645, 0.2401685, 0.108675, 0.143961], [0.5967819999999999, 0.5948035, 0.051306, 0.122893]], "categories": [0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im8.JPG", "objects": {"bbox": [[0.470849, 0.20856750000000002, 0.16861, 0.226475], [0.44076550000000003, 0.4543535, 0.177705, 0.264045], [0.3271925, 0.5459970000000001, 0.188899, 0.266152], [0.639459, 0.9051965, 0.084188, 0.094101]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im80.JPG", "objects": {"bbox": [[0.42397399999999996, 0.5807585, 0.041278, 0.115871], [0.267024, 0.4202955, 0.118004, 0.134831], [0.31203349999999996, 0.20751400000000003, 0.115905, 0.101826], [0.316698, 0.061798000000000006, 0.104944, 0.154846], [0.4013525, 0.016152, 0.100513, 0.141854], [0.5904845, 0.08883399999999998, 0.065299, 0.126756], [0.6254665, 0.30091300000000004, 0.108209, 0.152388]], "categories": [0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im81.JPG", "objects": {"bbox": [[0.40065249999999997, 0.3865875, 0.252099, 0.333567]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im82.JPG", "objects": {"bbox": [[0.0881535, 0.011587499999999973, 0.839785, 0.988413], [0.5641325, 0.0003515000000000046, 0.426073, 0.417837]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im83.JPG", "objects": {"bbox": [[0.12779850000000004, 0.22366550000000002, 0.623601, 0.702247], [0.48647399999999996, 0.10182600000000003, 0.305504, 0.40625]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im84.JPG", "objects": {"bbox": [[0.26772399999999996, 0.13693850000000007, 0.53125, 0.727177]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im85.JPG", "objects": {"bbox": [[0.269356, 0.03160099999999999, 0.51236, 0.83111], [0.42164199999999996, 0.798455, 0.270756, 0.195576]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im86.JPG", "objects": {"bbox": [[0.28638050000000004, 0.00035050000000003134, 0.622201, 0.870787], [0.644123, 0.7468395, 0.352146, 0.247191]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im87.JPG", "objects": {"bbox": [[0.26935649999999994, 0.008075999999999972, 0.613573, 0.87816], [0.6100749999999999, 0.7784409999999999, 0.370802, 0.213132]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im88.JPG", "objects": {"bbox": [[0.32905799999999996, 0.2342, 0.345382, 0.395716], [0.159748, 0.43434000000000006, 0.146922, 0.250702]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im89.JPG", "objects": {"bbox": [[0.28638050000000004, 0.1990875, 0.344683, 0.401685], [0.116138, 0.39220450000000007, 0.15695, 0.235253]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im9.JPG", "objects": {"bbox": [[0.28428149999999996, 0.0003515000000000046, 0.447761, 0.593399], [0.628965, 0.6004214999999999, 0.338386, 0.304775]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im90.JPG", "objects": {"bbox": [[0.4752799999999999, 0.039676499999999976, 0.281716, 0.427669]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im91.JPG", "objects": {"bbox": [[0.29967299999999997, 0.04564549999999995, 0.392724, 0.791433], [0.207789, 0.9378505, 0.14319, 0.058287]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im92.JPG", "objects": {"bbox": [[0.200793, 0.07584250000000003, 0.538946, 0.782303]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/DSC_2509.JPG", "objects": {"bbox": [[0.333022, 0.6077954999999999, 0.094916, 0.194171], [0.3229945, 0.502458, 0.086287, 0.107444], [0.49253749999999996, 0.20259850000000001, 0.076959, 0.107795], [0.6923969999999999, 0.30302, 0.107976, 0.128862], [0.663713, 0.6253510000000001, 0.163946, 0.236306], [0.238106, 0.30934, 0.051306, 0.071278], [0.376632, 0.237711, 0.063666, 0.063202]], "categories": [0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2510.JPG", "objects": {"bbox": [[0.29640900000000003, 0.3465595, 0.3743, 0.503511]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2511.JPG", "objects": {"bbox": [[0.4083485, 0.10744350000000003, 0.361707, 0.620787], [0.221082, 0.5445925, 0.253498, 0.324087], [0.6760729999999999, 0.7984555, 0.278218, 0.201545]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2512.JPG", "objects": {"bbox": [[0.3353545, 0.31390450000000003, 0.266091, 0.369733], [0.1434235, 0.0003509999999999902, 0.295243, 0.188202], [0.0002329999999999971, 0.0003515000000000046, 0.147854, 0.293539]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2513.JPG", "objects": {"bbox": [[0.571129, 0.0010529999999999984, 0.198228, 0.158006], [0.47784550000000003, 0.139045, 0.288479, 0.458216], [0.28708, 0.32900300000000005, 0.357976, 0.488062], [0.8083020000000001, 0.8149580000000001, 0.191698, 0.185042]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2514.JPG", "objects": {"bbox": [[0.47061499999999995, 0.10182550000000001, 0.217118, 0.369031], [0.39365649999999996, 0.461376, 0.284049, 0.442416], [0.204758, 0.648525, 0.35541, 0.347612]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2515.JPG", "objects": {"bbox": [[0.11450599999999998, 0.542135, 0.19986, 0.347612], [0.2467345, 0.2577245, 0.306437, 0.499649], [0.4911375, 0.1566015, 0.343517, 0.505969]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2516.JPG", "objects": {"bbox": [[0.314365, 0.18855300000000003, 0.322062, 0.607444], [0.6861005, 0.6534415, 0.313899, 0.346559]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2517.JPG", "objects": {"bbox": [[0.14645550000000002, 0.16959250000000003, 0.571595, 0.782303]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2518.JPG", "objects": {"bbox": [[0.16814400000000002, 0.04424099999999999, 0.20056, 0.248596], [0.4456625, 0.2096205, 0.117771, 0.189607], [0.5804575000000001, 0.3911515, 0.122901, 0.168539], [0.5237875, 0.47787949999999996, 0.111007, 0.161517], [0.508162, 0.630969, 0.14389, 0.152388]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2519.JPG", "objects": {"bbox": [[0.20312449999999999, 0.0003510000000000041, 0.213153, 0.22823], [0.48787299999999995, 0.1555475, 0.11194, 0.185393], [0.6208025, 0.34445200000000004, 0.120569, 0.182584], [0.556437, 0.436798, 0.114972, 0.165028], [0.538479, 0.59375, 0.149254, 0.15309]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2520.JPG", "objects": {"bbox": [[0.7360074999999999, 0.429775, 0.101679, 0.137992], [0.6690765, 0.5853225000000001, 0.072295, 0.098315], [0.6464555, 0.3946625, 0.069963, 0.087781], [0.3416505, 0.4483845, 0.092351, 0.110253], [0.311334, 0.6709975, 0.119636, 0.179073], [0.3913245, 0.2296345, 0.132463, 0.170997], [0.528451, 0.299859, 0.049674, 0.081812], [0.5711284999999999, 0.1509835, 0.076259, 0.119733]], "categories": [0, 0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2521.JPG", "objects": {"bbox": [[0.42863799999999996, 0.374649, 0.260728, 0.40625], [0.40461800000000003, 0.0003510000000000041, 0.19916, 0.11552]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2522.JPG", "objects": {"bbox": [[0.5671645, 0.39009849999999996, 0.162547, 0.224719], [0.49183699999999997, 0.16959300000000002, 0.083256, 0.07514]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2523.JPG", "objects": {"bbox": [[0.47224849999999996, 0.4343395, 0.261427, 0.377107], [0.632463, 0.823034, 0.129198, 0.176966], [0.2926775, 0.08778050000000001, 0.174907, 0.138343]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2524.JPG", "objects": {"bbox": [[0.5237875, 0.3244385, 0.282183, 0.380267], [0.6870335, 0.7222615000000001, 0.149953, 0.263343], [0.35634350000000004, 0.0003510000000000041, 0.154851, 0.110604]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2525.JPG", "objects": {"bbox": [[0.0818565, 0.3911515, 0.117537, 0.160463], [0.041511000000000006, 0.6028789999999999, 0.151586, 0.194522], [0.4456625, 0.5948030000000001, 0.107509, 0.173104], [0.573461, 0.637991, 0.153218, 0.226124], [0.689599, 0.4080055, 0.145756, 0.198385], [0.5485074999999999, 0.0003509999999999902, 0.171175, 0.13764]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2526.JPG", "objects": {"bbox": [[0.2320425, 0.5491575, 0.086987, 0.133427], [0.2110535, 0.7176965, 0.077659, 0.159059], [0.208722, 0.2658005, 0.070662, 0.125351], [0.282416, 0.0003514999999999907, 0.094216, 0.152739], [0.482976, 0.0003515000000000046, 0.096782, 0.114115], [0.58069, 0.07549199999999999, 0.131996, 0.176264], [0.719916, 0.44311849999999997, 0.140858, 0.167837], [0.649487, 0.667486, 0.14319, 0.18118], [0.5307835, 0.6516850000000001, 0.101679, 0.153792]], "categories": [0, 0, 0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2527.JPG", "objects": {"bbox": [[0.5788249999999999, 0.43082849999999995, 0.250466, 0.331461], [0.40695000000000003, 0.199087, 0.172808, 0.358146], [0.21478550000000002, 0.2320925, 0.135261, 0.278441], [0.0664645, 0.3209265, 0.155317, 0.372191], [0.0002334999999999976, 0.8641155, 0.059935, 0.133427]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2528.JPG", "objects": {"bbox": [[0.361007, 0.7433289999999999, 0.049674, 0.119382], [0.35937549999999996, 0.6063905, 0.063899, 0.099719], [0.33465500000000004, 0.39571649999999997, 0.060634, 0.097261], [0.3873605, 0.174157, 0.074627, 0.125702], [0.454991, 0.15309, 0.067864, 0.093048], [0.544776, 0.1123595, 0.075326, 0.153441], [0.6231340000000001, 0.21453650000000002, 0.107276, 0.149579], [0.742071, 0.49051999999999996, 0.104244, 0.147472], [0.696595, 0.6653789999999999, 0.104244, 0.147472], [0.598881, 0.6776679999999999, 0.079524, 0.116222]], "categories": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2529.JPG", "objects": {"bbox": [[0.4832085, 0.47085699999999997, 0.213153, 0.495084], [0.45662349999999996, 0.0003515000000000046, 0.273787, 0.344101]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2530.JPG", "objects": {"bbox": [[0.20475700000000002, 0.10533699999999996, 0.528918, 0.703652], [0.010494500000000018, 0.8335675, 0.316231, 0.153441]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2531.JPG", "objects": {"bbox": [[0.232043, 0.0003509999999999902, 0.493004, 0.698736], [0.25606399999999996, 0.607795, 0.238106, 0.3125], [0.904618, 0.532655, 0.094916, 0.438904]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2532.JPG", "objects": {"bbox": [[0.1550835, 0.16502849999999997, 0.364739, 0.566713], [0.15508349999999999, 0.654495, 0.204291, 0.248244], [0.6317625, 0.52809, 0.233909, 0.451896], [0.837687, 0.8841295, 0.160914, 0.115871]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2533.JPG", "objects": {"bbox": [[0.647621, 0.77809, 0.148088, 0.179424], [0.729477, 0.394663, 0.148088, 0.179424], [0.48880550000000006, 0.07198000000000002, 0.128265, 0.178722], [0.16861, 0.4413619999999999, 0.128498, 0.178722], [0.2115205, 0.75316, 0.134795, 0.216292], [0.2810165, 0.3437505, 0.096315, 0.129213]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2534.JPG", "objects": {"bbox": [[0.43167, 0.18855299999999997, 0.34305, 0.479986]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2535.JPG", "objects": {"bbox": [[0.2763525, 0.23314650000000003, 0.427705, 0.562851]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2536.JPG", "objects": {"bbox": [[0.25676299999999996, 0.031601500000000005, 0.423974, 0.605337]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2537.JPG", "objects": {"bbox": [[0.38036400000000004, 0.20400250000000003, 0.409282, 0.558287]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2538.JPG", "objects": {"bbox": [[0.5797575, 0.2998595, 0.086987, 0.130969], [0.625933, 0.43258450000000004, 0.086754, 0.126053], [0.3003735, 0.3827245, 0.081623, 0.119733], [0.467117, 0.250702, 0.064366, 0.13448], [0.7628265, 0.770716, 0.049207, 0.074438], [0.7623605, 0.7103225, 0.047341, 0.058989], [0.7409055, 0.6720505, 0.036147, 0.051615], [0.61917, 0.5930475, 0.04361, 0.076545]], "categories": [0, 0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2539.JPG", "objects": {"bbox": [[0.166745, 0.40765450000000003, 0.131996, 0.169593], [0.4099815, 0.14150300000000005, 0.108209, 0.233146], [0.569496, 0.22366550000000002, 0.153218, 0.214185], [0.6520525, 0.43679799999999996, 0.148321, 0.213132], [0.7117535, 0.66257, 0.066231, 0.12184]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2540.JPG", "objects": {"bbox": [[0.610075, 0.523526, 0.317164, 0.41889], [0.4533585, 0.07443849999999996, 0.288013, 0.411517], [0.099814, 0.0003515000000000046, 0.219216, 0.359199]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2541.JPG", "objects": {"bbox": [[0.09678150000000002, 0.12043549999999997, 0.295243, 0.692065], [0.564133, 0.290379, 0.387826, 0.58427], [0.884328, 0.8827245, 0.115672, 0.117275]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2542.JPG", "objects": {"bbox": [[0.19239750000000003, 0.15800599999999998, 0.371735, 0.525632], [0.49580250000000003, 0.44382, 0.303871, 0.40625]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2543.JPG", "objects": {"bbox": [[0.367304, 0.311447, 0.061334, 0.073736], [0.5506065, 0.2675565, 0.044543, 0.073385], [0.5881535, 0.3089885, 0.061567, 0.120787], [0.60028, 0.48033700000000007, 0.051772, 0.076896]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2544.JPG", "objects": {"bbox": [[0.43563450000000004, 0.29880549999999995, 0.266791, 0.436447], [0.311334, 0.014044500000000015, 0.161614, 0.351475], [0.4736475, 0.0807585, 0.193797, 0.227177]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2545.JPG", "objects": {"bbox": [[0.3034055, 0.607795, 0.358675, 0.363764]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2546.JPG", "objects": {"bbox": [[0.354711, 0.221559, 0.260728, 0.393258]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2547.JPG", "objects": {"bbox": [[0.3027055, 0.042135000000000006, 0.257463, 0.28125], [0.304338, 0.31039300000000003, 0.33139, 0.360604], [0.188433, 0.531601, 0.323694, 0.46243]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2548.JPG", "objects": {"bbox": [[0.24370300000000003, 0.255267, 0.441698, 0.553722]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2549.JPG", "objects": {"bbox": [[0.34304999999999997, 0.36060349999999997, 0.253032, 0.303371], [0.3050375, 0.1590595, 0.190765, 0.202949]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2550.JPG", "objects": {"bbox": [[0.2840485, 0.4146770000000001, 0.307369, 0.391854], [0.5781245, 0.523525, 0.133629, 0.277388]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2551.JPG", "objects": {"bbox": [[0.4029855, 0.09831449999999997, 0.381063, 0.542135]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2552.JPG", "objects": {"bbox": [[0.13083, 0.04424149999999999, 0.36334, 0.612711], [0.5088615, 0.057233000000000034, 0.374767, 0.601826], [0.3183305, 0.5832165, 0.332789, 0.243329]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2553.JPG", "objects": {"bbox": [[0.21175349999999998, 0.18750049999999996, 0.530317, 0.602879], [0.0002329999999999971, 0.0003515000000000046, 0.163246, 0.177317]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2554.JPG", "objects": {"bbox": [[0.27238799999999996, 0.016151499999999985, 0.524254, 0.754213], [0.8346545, 0.667486, 0.165345, 0.332514]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2555.JPG", "objects": {"bbox": [[0.29734099999999997, 0.1580055, 0.154618, 0.272823], [0.4785445, 0.387641, 0.171175, 0.20014]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2556.JPG", "objects": {"bbox": [[0.38666, 0.6755615, 0.113806, 0.199087], [0.4395985, 0.27177, 0.081157, 0.128862], [0.5093285, 0.3844805, 0.065765, 0.101475], [0.560168, 0.010533500000000001, 0.102612, 0.103933], [0.623134, 0.135534, 0.073228, 0.11868], [0.8003725, 0.269312, 0.111241, 0.106742]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2557.JPG", "objects": {"bbox": [[0.43166950000000004, 0.10744399999999998, 0.383629, 0.672402]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2558.JPG", "objects": {"bbox": [[0.30806900000000004, 0.16257, 0.258396, 0.382022], [0.5111935000000001, 0.496489, 0.206157, 0.294944]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2559.JPG", "objects": {"bbox": [[0.2451025, 0.39922700000000005, 0.164879, 0.221208], [0.20942099999999997, 0.6825844999999999, 0.15695, 0.189607], [0.49113749999999995, 0.09234499999999998, 0.177239, 0.261236], [0.556436, 0.379565, 0.151586, 0.16257], [0.800373, 0.708217, 0.163246, 0.20014]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2560.JPG", "objects": {"bbox": [[0.26305999999999996, 0.3455055, 0.104944, 0.113413], [0.24277, 0.4568114999999999, 0.097948, 0.115871], [0.427939, 0.43925600000000004, 0.091884, 0.142556], [0.570429, 0.510534, 0.11334, 0.126404], [0.5431435, 0.6379919999999999, 0.098647, 0.174508]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2561.JPG", "objects": {"bbox": [[0.19146399999999997, 0.1320225, 0.190532, 0.312851], [0.3579755, 0.275281, 0.149487, 0.213132], [0.49417049999999996, 0.28335699999999997, 0.247201, 0.27177], [0.4612875, 0.6709965, 0.197761, 0.245787], [0.484841, 0.5667135, 0.15695, 0.097261]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2562.JPG", "objects": {"bbox": [[0.444963, 0.27528149999999996, 0.081856, 0.166081], [0.510495, 0.28581500000000004, 0.072994, 0.13448], [0.350047, 0.6755615, 0.091884, 0.125351], [0.659748, 0.468399, 0.11264, 0.12184], [0.6310635, 0.6053375000000001, 0.089319, 0.087781]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2563.JPG", "objects": {"bbox": [[0.34398300000000004, 0.26018300000000005, 0.405084, 0.633076]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2564.JPG", "objects": {"bbox": [[0.185401, 0.10182599999999997, 0.373368, 0.792486], [0.520523, 0.12640449999999998, 0.309468, 0.755267]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2565.JPG", "objects": {"bbox": [[0.2870805, 0.007022499999999987, 0.503265, 0.602879], [0.1261655, 0.573736, 0.398321, 0.41889]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2566.JPG", "objects": {"bbox": [[0.385028, 0.5421345, 0.16278, 0.232795], [0.256763, 0.3163625, 0.097248, 0.189607], [0.35098, 0.250702, 0.117304, 0.20014], [0.333722, 0.031601500000000005, 0.172808, 0.204003]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2567.JPG", "objects": {"bbox": [[0.29267699999999996, 0.12745800000000002, 0.345382, 0.507022], [0.01352650000000001, 0.00035099999999999715, 0.191931, 0.064958], [0.792677, 0.20505649999999997, 0.08792, 0.187149]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2568.JPG", "objects": {"bbox": [[0.40065300000000004, 0.0003515000000000046, 0.36334, 0.354635], [0.42700499999999997, 0.40976100000000004, 0.27542, 0.40625], [0.193097, 0.4975415000000001, 0.264226, 0.410815]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2569.JPG", "objects": {"bbox": [[0.14482250000000002, 0.330407, 0.371035, 0.44698], [0.26469200000000004, 0.7889745, 0.245802, 0.196629]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2571.JPG", "objects": {"bbox": [[0.585821, 0.445225, 0.038946, 0.060744], [0.7143185, 0.35182599999999997, 0.038713, 0.048806], [0.7185165, 0.401685, 0.039879, 0.045646], [0.6963625, 0.294593, 0.052705, 0.056882], [0.582556, 0.373595, 0.028918, 0.038624], [0.187733, 0.5807585, 0.065998, 0.074789]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2572.JPG", "objects": {"bbox": [[0.24207050000000002, 0.492978, 0.131297, 0.165028], [0.240439, 0.249649, 0.101912, 0.136938], [0.5844215, 0.5396765, 0.098647, 0.161517], [0.6893655, 0.3711375, 0.142957, 0.155899], [0.677705, 0.22717700000000002, 0.126632, 0.148876], [0.6380595, 0.031601500000000005, 0.162313, 0.182935]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2573.JPG", "objects": {"bbox": [[0.42000899999999997, 0.492978, 0.216418, 0.29389], [0.38036400000000004, 0.10182550000000001, 0.177472, 0.219101], [0.5415110000000001, 0.29986, 0.095616, 0.139396]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2574.JPG", "objects": {"bbox": [[0.413946, 0.612359, 0.217118, 0.24684], [0.3959885, 0.3665735, 0.200793, 0.244733], [0.34071799999999997, 0.06671350000000001, 0.27472, 0.285815], [0.24673500000000004, 0.864115, 0.121968, 0.132022]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2575.JPG", "objects": {"bbox": [[0.08652, 0.48700849999999996, 0.126866, 0.168539], [0.552472, 0.7201540000000001, 0.114972, 0.203652], [0.6240675, 0.3851825, 0.147621, 0.217697], [0.567164, 0.19557599999999997, 0.151586, 0.193118], [0.5074625, 0.059690499999999994, 0.142957, 0.201545], [0.3500465, 0.008076, 0.130131, 0.181882], [0.641791, 0.1228935, 0.080224, 0.119733]], "categories": [0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2577.JPG", "objects": {"bbox": [[0.30503800000000003, 0.5491575000000001, 0.1243, 0.153441], [0.433302, 0.757373, 0.102146, 0.152388], [0.3477145, 0.370084, 0.108909, 0.139396], [0.4519595, 0.09585700000000001, 0.097481, 0.136236], [0.5027980000000001, 0.23665700000000003, 0.102612, 0.092346], [0.6940299999999999, 0.21558950000000002, 0.114972, 0.172051], [0.6037785, 0.007022500000000001, 0.089319, 0.122893]], "categories": [0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2578.JPG", "objects": {"bbox": [[0.202426, 0.5291435, 0.104244, 0.094803], [0.1798035, 0.3514745, 0.121269, 0.168539], [0.260728, 0.2025985, 0.09958, 0.127809], [0.427006, 0.005617999999999998, 0.123134, 0.136938], [0.5146925, 0.07057600000000001, 0.102379, 0.155548], [0.7131535, 0.3742975, 0.115205, 0.130267], [0.670709, 0.20365149999999999, 0.107276, 0.107795], [0.683769, 0.3103935, 0.089552, 0.098315], [0.6161384999999999, 0.6604635, 0.078591, 0.139045]], "categories": [0, 0, 0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2579.JPG", "objects": {"bbox": [[0.0002329999999999971, 0.8827245, 0.194496, 0.114817], [0.30503749999999996, 0.27773899999999996, 0.249067, 0.383778], [0.48647399999999996, 0.47893250000000004, 0.231576, 0.337079], [0.8470145, 0.667486, 0.152985, 0.332514]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2580.JPG", "objects": {"bbox": [[0.4270055, 0.0712785, 0.202425, 0.259129], [0.3323225, 0.418188, 0.227845, 0.347612], [0.42933750000000004, 0.7447334999999999, 0.207789, 0.242275]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2581.JPG", "objects": {"bbox": [[0.305037, 0.49894650000000007, 0.248134, 0.239817], [0.2880125, 0.334972, 0.191465, 0.16257], [0.28708, 0.0898875, 0.211054, 0.224017]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2582.JPG", "objects": {"bbox": [[0.677705, 0.234199, 0.163246, 0.286868], [0.41534550000000003, 0.377107, 0.232043, 0.338132], [0.31133350000000004, 0.6931185, 0.211521, 0.222261]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2583.JPG", "objects": {"bbox": [[0.11777000000000001, 0.611306, 0.118004, 0.173104], [0.153451, 0.1214885, 0.146222, 0.206461], [0.4496265, 0.1566015, 0.183769, 0.222963], [0.623135, 0.5726829999999999, 0.16791, 0.233848], [0.0002334999999999976, 0.6028795, 0.059235, 0.160463]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2584.JPG", "objects": {"bbox": [[0.12546649999999998, 0.461376, 0.108909, 0.116924], [0.26492550000000004, 0.46664350000000004, 0.079757, 0.115169], [0.323694, 0.673104, 0.041278, 0.129916], [0.28404850000000004, 0.147472, 0.076259, 0.148876], [0.46898350000000005, 0.15309, 0.102845, 0.153792], [0.58209, 0.409761, 0.114272, 0.141854]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2585.JPG", "objects": {"bbox": [[0.10051249999999999, 0.263694, 0.203825, 0.355688], [0.4832085, 0.5165025000000001, 0.211521, 0.326545]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2586.JPG", "objects": {"bbox": [[0.2957095, 0.40519700000000003, 0.088619, 0.145014], [0.19146449999999998, 0.6299155000000001, 0.111241, 0.141503], [0.284748, 0.708216, 0.058302, 0.096208], [0.5820890000000001, 0.5270370000000001, 0.093284, 0.142556]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2587.JPG", "objects": {"bbox": [[0.47364700000000004, 0.689607, 0.148088, 0.208216], [0.5921175000000001, 0.7974015, 0.098647, 0.146067], [0.589086, 0.330407, 0.149254, 0.238764]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2588.JPG", "objects": {"bbox": [[0.5680974999999999, 0.41924200000000006, 0.196595, 0.25632], [0.3127335, 0.2728235, 0.244403, 0.346559]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2590.JPG", "objects": {"bbox": [[0.575793, 0.47893250000000004, 0.060634, 0.069171]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2591.JPG", "objects": {"bbox": [[0.627099, 0.6063905, 0.141558, 0.161517], [0.5711285, 0.11587100000000002, 0.108909, 0.20611], [0.44333, 0.22366549999999996, 0.126166, 0.173455], [0.1854015, 0.7201545, 0.098647, 0.122893], [0.2507, 0.5948035, 0.078358, 0.062149]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2592.JPG", "objects": {"bbox": [[0.3127335, 0.39115200000000006, 0.235075, 0.348666], [0.553171, 0.16362400000000002, 0.178172, 0.407654]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2593.JPG", "objects": {"bbox": [[0.4162775000000001, 0.41116600000000003, 0.265159, 0.33111]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2594.JPG", "objects": {"bbox": [[0.2793845, 0.22612349999999998, 0.191231, 0.204705]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2595.JPG", "objects": {"bbox": [[0.223414, 0.226124, 0.15695, 0.201194], [0.753731, 0.555126, 0.14319, 0.158006]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2596.JPG", "objects": {"bbox": [[0.42094200000000004, 0.22015400000000002, 0.294076, 0.40625]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2597.JPG", "objects": {"bbox": [[0.39435599999999993, 0.39466300000000004, 0.270056, 0.299508]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2598.JPG", "objects": {"bbox": [[0.33768699999999996, 0.428722, 0.294776, 0.376756]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2878.JPG", "objects": {"bbox": [[0.08745349999999999, 0.357093, 0.308535, 0.421348], [0.527519, 0.37359600000000004, 0.15625, 0.301966], [0.7607275, 0.504564, 0.226213, 0.464888]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2883.JPG", "objects": {"bbox": [[0.10844250000000001, 0.2647475, 0.125933, 0.159059], [0.41068099999999996, 0.1530895, 0.115438, 0.198385], [0.3477145, 0.276334, 0.076959, 0.119382], [0.5104945000000001, 0.37359549999999997, 0.082323, 0.118329], [0.20405800000000002, 0.5080755, 0.073694, 0.118329], [0.14249099999999998, 0.6218395000000001, 0.126866, 0.149579], [0.253731, 0.886236, 0.085588, 0.113764], [0.5764929999999999, 0.6590585, 0.08722, 0.092697]], "categories": [0, 0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2884.JPG", "objects": {"bbox": [[0.14179100000000003, 0.516503, 0.254198, 0.281952], [0.3330225, 0.12991600000000003, 0.347015, 0.588834], [0.602146, 0.7854635, 0.25583, 0.214537]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2885.JPG", "objects": {"bbox": [[0.15811550000000002, 0.3374295, 0.228545, 0.298455], [0.3570435, 0.74684, 0.141091, 0.20611], [0.5750930000000001, 0.3009125, 0.154618, 0.183989], [0.6714085, 0.029143000000000002, 0.233209, 0.375], [0.868004, 0.4202955, 0.131996, 0.214185]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2886.JPG", "objects": {"bbox": [[0.29874049999999996, 0.26369349999999997, 0.361007, 0.482093], [0.6410915, 0.8886940000000001, 0.233909, 0.111306], [0.9535915, 0.15905950000000002, 0.046409, 0.219101]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2887.JPG", "objects": {"bbox": [[0.507463, 0.07373600000000001, 0.158582, 0.246138], [0.46758350000000004, 0.3268965, 0.200793, 0.306531], [0.342351, 0.5129915, 0.248134, 0.288975], [0.6744399999999999, 0.801966, 0.198228, 0.198034]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2893.JPG", "objects": {"bbox": [[0.333722, 0.1134125, 0.148088, 0.249649], [0.2723885, 0.2250705, 0.096315, 0.166081], [0.453592, 0.320927, 0.101912, 0.158006], [0.47947749999999995, 0.545646, 0.138993, 0.186096]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2894.JPG", "objects": {"bbox": [[0.2903445, 0.14501400000000003, 0.357743, 0.658006], [0.18073699999999998, 0.4905195, 0.231576, 0.428371], [0.7033585, 0.5221205, 0.213619, 0.465941]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2895.JPG", "objects": {"bbox": [[0.14179150000000001, 0.00035100000000001796, 0.225513, 0.323034], [0.068797, 0.123947, 0.134328, 0.24368], [0.33465500000000004, 0.2461375, 0.15555, 0.232795], [0.40928099999999995, 0.5783005, 0.185868, 0.265801]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2896.JPG", "objects": {"bbox": [[0.2444025, 0.25772500000000004, 0.388993, 0.612008]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2897.JPG", "objects": {"bbox": [[0.00023300000000001098, 0.004564499999999971, 0.353078, 0.579705], [0.3826955, 0.4087075, 0.249067, 0.456461]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2898.JPG", "objects": {"bbox": [[0.12383350000000001, 0.117977, 0.164879, 0.39361], [0.356343, 0.141503, 0.214086, 0.33743], [0.510494, 0.44487350000000003, 0.237174, 0.353581]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2899.JPG", "objects": {"bbox": [[0.24976699999999996, 0.00210699999999997, 0.533582, 0.74368]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2900.JPG", "objects": {"bbox": [[0.4162785, 0.269312, 0.256763, 0.423806]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2901.JPG", "objects": {"bbox": [[0.354711, 0.291784, 0.211754, 0.374298], [0.00023250000000000354, 0.442767, 0.096549, 0.301966], [0.8805975, 0.641503, 0.119403, 0.352528], [0.4736475, 0.665028, 0.049207, 0.100772]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2902.JPG", "objects": {"bbox": [[0.139459, 0.0337075, 0.195196, 0.315309], [0.4643189999999999, 0.597261, 0.260728, 0.34059], [0.5874535000000001, 0.3349725, 0.172575, 0.262289], [0.25303200000000003, 0.35147399999999995, 0.05597, 0.092346]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2905.JPG", "objects": {"bbox": [[0.34864700000000004, 0.0477525, 0.14389, 0.300211], [0.45359150000000004, 0.449789, 0.191465, 0.229284]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2906.JPG", "objects": {"bbox": [[0.21245400000000003, 0.34304799999999996, 0.501632, 0.654494]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2907.JPG", "objects": {"bbox": [[0.1814365, 0.0003510000000000457, 0.423041, 0.70927], [0.791045, 0.9273175, 0.10028, 0.072683]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2908.JPG", "objects": {"bbox": [[0.406949, 0.17310349999999997, 0.38806, 0.679073], [0.802006, 0.4719095, 0.197994, 0.527739]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2909.JPG", "objects": {"bbox": [[0.39132449999999996, 0.117977, 0.291045, 0.43118], [0.298041, 0.5094799999999999, 0.304104, 0.39677]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2910.JPG", "objects": {"bbox": [[0.2357745, 0.17310400000000004, 0.170243, 0.245084], [0.5261195000000001, 0.09129199999999998, 0.184235, 0.29986], [0.625466, 0.377107, 0.1875, 0.231742], [0.7220155, 0.6169239999999999, 0.186567, 0.27177], [0.6287315, 0.6158710000000001, 0.099347, 0.223666], [0.19076500000000002, 0.6018265, 0.10028, 0.114817], [0.123834, 0.7131314999999999, 0.114272, 0.197683]], "categories": [0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2911.JPG", "objects": {"bbox": [[0.2614275, 0.5526685, 0.111241, 0.168539], [0.22411400000000004, 0.3444525, 0.139226, 0.166081], [0.4130135, 0.1228935, 0.099813, 0.182935], [0.49580199999999996, 0.17766900000000002, 0.134328, 0.219452], [0.5797570000000001, 0.026686000000000015, 0.102612, 0.22507], [0.653451, 0.426264, 0.093284, 0.09375]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2912.JPG", "objects": {"bbox": [[0.266091, 0.47191000000000005, 0.151586, 0.183638], [0.356344, 0.7236659999999999, 0.116604, 0.182584], [0.42863850000000003, 0.177668, 0.107509, 0.21243], [0.5275190000000001, 0.1671345, 0.138526, 0.259129], [0.590485, 0.015098500000000015, 0.13153, 0.247191], [0.757696, 0.4262645, 0.102612, 0.107795], [0.741371, 0.647472, 0.039646, 0.156952]], "categories": [0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2913.JPG", "objects": {"bbox": [[0.3656715, 0.088834, 0.201493, 0.261236], [0.491838, 0.490519, 0.146922, 0.231742]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2914.JPG", "objects": {"bbox": [[0.4934695, 0.2401685, 0.377799, 0.494031]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2915.JPG", "objects": {"bbox": [[0.4503269999999999, 0.18995849999999997, 0.336054, 0.554775]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2916.JPG", "objects": {"bbox": [[0.4682835, 0.2015445, 0.168843, 0.354635], [0.6497195, 0.139045, 0.233909, 0.40309], [0.127799, 0.44487350000000003, 0.258162, 0.366573], [0.8696360000000001, 0.8416435, 0.130364, 0.158357]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2917.JPG", "objects": {"bbox": [[0.18610100000000002, 0.202598, 0.639226, 0.627458]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2918.JPG", "objects": {"bbox": [[0.058535000000000004, 0.0003515000000000046, 0.834422, 0.616573], [0.0002334999999999976, 0.42169949999999995, 0.369403, 0.400281]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2919.JPG", "objects": {"bbox": [[0.19006500000000004, 0.08637600000000001, 0.715252, 0.806882]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2920.JPG", "objects": {"bbox": [[0.14179149999999996, 0.004564999999999986, 0.858209, 0.888694]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2921.JPG", "objects": {"bbox": [[0.2716885, 0.25877849999999997, 0.086287, 0.161517], [0.348648, 0.2998595, 0.072994, 0.130969], [0.5027984999999999, 0.4097615, 0.108675, 0.146419], [0.496502, 0.578301, 0.083256, 0.100772], [0.1914645, 0.6931174999999999, 0.098881, 0.146419], [0.8913245000000001, 0.024579, 0.034981, 0.060744], [0.7905785, 0.06495799999999999, 0.035681, 0.05302], [0.857043, 0.0291435, 0.029618, 0.051615]], "categories": [0, 0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2922.JPG", "objects": {"bbox": [[0.245102, 0.19908649999999997, 0.085588, 0.172051], [0.3290575, 0.2401685, 0.069963, 0.142907], [0.48320899999999994, 0.373595, 0.109608, 0.155548], [0.458256, 0.5466995, 0.090252, 0.089185], [0.429338, 0.714186, 0.033582, 0.055126], [0.15042, 0.635885, 0.10028, 0.155548], [0.891325, 0.007022500000000001, 0.040578, 0.066713], [0.856343, 0.009129000000000002, 0.028918, 0.050562], [0.78638, 0.04318849999999999, 0.039646, 0.050211]], "categories": [0, 0, 0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2923.JPG", "objects": {"bbox": [[0.0095615, 0.12640399999999996, 0.152519, 0.261236], [0.1588155, 0.19908699999999996, 0.119869, 0.222612], [0.420009, 0.4041435, 0.184468, 0.219803], [0.38736, 0.6499295, 0.145756, 0.176615], [0.3603075, 0.9318815, 0.033349, 0.062149], [0.00023300000000000057, 0.8886935, 0.038946, 0.105337]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2924.JPG", "objects": {"bbox": [[0.373367, 0.723666, 0.143424, 0.226826], [0.43097, 0.03265500000000002, 0.123134, 0.250702], [0.5571360000000001, 0.056179999999999994, 0.116604, 0.223666], [0.8393195, 0.17310450000000002, 0.160681, 0.259129], [0.824627, 0.45891850000000006, 0.165578, 0.189607]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2925.JPG", "objects": {"bbox": [[0.288013, 0.30688150000000003, 0.353078, 0.593399]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2926.JPG", "objects": {"bbox": [[0.31903000000000004, 0.005618000000000012, 0.377332, 0.48139], [0.24277050000000003, 0.4884125, 0.315065, 0.372191]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2927.JPG", "objects": {"bbox": [[0.25069949999999996, 0.24613749999999995, 0.426073, 0.547753], [0.6753735000000001, 0.286868, 0.157649, 0.249298], [0.7187495, 0.8570925, 0.259795, 0.142907]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2928.JPG", "objects": {"bbox": [[0.31833050000000007, 0.0021070000000000255, 0.454991, 0.726124]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2929.JPG", "objects": {"bbox": [[0.27705250000000003, 0.074789, 0.371735, 0.64993]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2930.JPG", "objects": {"bbox": [[0.00023299999999998322, 0.2075135, 0.307136, 0.454003], [0.38829350000000007, 0.30582849999999995, 0.312733, 0.490169]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2931.JPG", "objects": {"bbox": [[0.27775150000000004, 0.2356035, 0.344683, 0.433989], [0.237407, 0.597261, 0.335354, 0.373244]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2932.JPG", "objects": {"bbox": [[0.4643185000000001, 0.32900300000000005, 0.332323, 0.488062]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2933.JPG", "objects": {"bbox": [[0.333722, 0.45540700000000006, 0.085588, 0.096208], [0.308069, 0.5466995, 0.093284, 0.090239], [0.5811565000000001, 0.48490150000000004, 0.170243, 0.174157], [0.6201019999999999, 0.6836375, 0.103312, 0.115871], [0.388293, 0.7106745, 0.05597, 0.094803]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2934.JPG", "objects": {"bbox": [[0.22271449999999998, 0.5466995, 0.321129, 0.428371], [0.505131, 0.43574450000000003, 0.288246, 0.553371], [0.31903, 0.1899575, 0.19916, 0.349719]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2935.JPG", "objects": {"bbox": [[0.4629195, 0.141503, 0.232509, 0.456812], [0.232043, 0.049157499999999965, 0.226912, 0.542135], [0.3346545, 0.642907, 0.271455, 0.328652]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2936.JPG", "objects": {"bbox": [[0.31833, 0.5797045, 0.241838, 0.280899], [0.36264, 0.3384835, 0.245802, 0.287921]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2970.JPG", "objects": {"bbox": [[0.3766320000000001, 0.3279495, 0.446362, 0.511587], [0.08185600000000001, 0.0003505000000000036, 0.33209, 0.337079]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2971.JPG", "objects": {"bbox": [[0.30433750000000004, 0.0003510000000000041, 0.418377, 0.244382]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2972.JPG", "objects": {"bbox": [[0.3416515, 0.5340594999999999, 0.086987, 0.100421], [0.6068095, 0.5291429999999999, 0.066931, 0.08427], [0.5921179999999999, 0.647472, 0.058302, 0.091292]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2973.JPG", "objects": {"bbox": [[0.21478550000000002, 0.37359499999999995, 0.159515, 0.173104], [0.3913245, 0.103933, 0.127799, 0.199438], [0.5858215, 0.005617999999999998, 0.117537, 0.227528], [0.5058305, 0.46243000000000006, 0.142957, 0.182584], [0.2800845, 0.605337, 0.117537, 0.175562], [0.7017260000000001, 0.385183, 0.10028, 0.111306]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2974.JPG", "objects": {"bbox": [[0.29500899999999997, 0.16151699999999997, 0.324394, 0.423806], [0.0025654999999999983, 0.4659405, 0.111241, 0.377107], [0.00023250000000000007, 0.04213449999999999, 0.045243, 0.283357], [0.7304105, 0.0115875, 0.213853, 0.254213]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2975.JPG", "objects": {"bbox": [[0.377332, 0.06776700000000002, 0.33209, 0.382022], [0.551772, 0.5291429999999999, 0.234608, 0.393258]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2976.JPG", "objects": {"bbox": [[0.446595, 0.363062, 0.080924, 0.101826], [0.49067150000000004, 0.46207850000000006, 0.075793, 0.083567], [0.4146455, 0.683637, 0.095849, 0.132374], [0.589786, 0.06074499999999999, 0.097248, 0.176966], [0.656716, 0.3384835, 0.054338, 0.085323], [0.766325, 0.41818849999999996, 0.083022, 0.102879]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2977.JPG", "objects": {"bbox": [[0.38829250000000004, 0.36060400000000004, 0.264459, 0.373596], [0.6068095, 0.24824399999999996, 0.232509, 0.423806], [0.4948695, 0.19346900000000003, 0.059935, 0.135534]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2979.JPG", "objects": {"bbox": [[0.2833485, 0.49894700000000003, 0.223181, 0.40941], [0.41301299999999996, 0.26228949999999995, 0.325326, 0.483497]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2981.JPG", "objects": {"bbox": [[0.3197295, 0.618329, 0.098881, 0.147472], [0.420009, 0.17907300000000004, 0.104478, 0.195576], [0.48554100000000006, 0.16362349999999998, 0.094216, 0.186447], [0.6690765000000001, 0.409761, 0.122901, 0.148876], [0.6310635, 0.5445924999999999, 0.092351, 0.100421], [0.46292, 0.385183, 0.033582, 0.083216]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2982.JPG", "objects": {"bbox": [[0.5074624999999999, 0.05266799999999999, 0.404851, 0.492978], [0.352379, 0.4578655, 0.323694, 0.361657]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2983.JPG", "objects": {"bbox": [[0.289413, 0.10393249999999998, 0.322994, 0.655899], [0.5104945, 0.04564600000000002, 0.287547, 0.61236], [0.39365649999999996, 0.7608849999999999, 0.147155, 0.233146]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2984.JPG", "objects": {"bbox": [[0.36870349999999996, 0.17907300000000004, 0.361007, 0.515098]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2985.JPG", "objects": {"bbox": [[0.5174905, 0.11095550000000001, 0.275187, 0.434691]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2986.JPG", "objects": {"bbox": [[0.4309695, 0.20505650000000003, 0.298741, 0.482093], [0.01655799999999999, 0.022121000000000002, 0.30014, 0.456812]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2987.JPG", "objects": {"bbox": [[0.35937550000000007, 0.188553, 0.341651, 0.414326], [0.3393195, 0.5516155, 0.325093, 0.369733]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2988.JPG", "objects": {"bbox": [[0.3020055, 0.30091350000000006, 0.316465, 0.481039]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2989.JPG", "objects": {"bbox": [[0.24370349999999996, 0.2647475, 0.148321, 0.163975], [0.18843300000000002, 0.3781595, 0.141558, 0.166433], [0.302006, 0.6204355, 0.117304, 0.168539], [0.644123, 0.6393955, 0.148554, 0.167135], [0.56903, 0.5168535, 0.144356, 0.164677], [0.7047574999999999, 0.4002805, 0.154851, 0.193469], [0.618703, 0.2952945, 0.117304, 0.177669]], "categories": [0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2992.JPG", "objects": {"bbox": [[0.8087685, 0.28616600000000003, 0.158815, 0.226826], [0.530783, 0.222261, 0.146922, 0.207514], [0.33185600000000004, 0.3093395, 0.145056, 0.186447], [0.6984605, 0.5765455, 0.105877, 0.134129], [0.39225699999999997, 0.5663625, 0.073694, 0.109199], [0.6919310000000001, 0.8114465, 0.044776, 0.103933]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2993.JPG", "objects": {"bbox": [[0.26609099999999997, 0.426264, 0.272388, 0.345154], [0.6497205, 0.256672, 0.244869, 0.398876], [0.374301, 0.8978235000000001, 0.189132, 0.099719]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2994.JPG", "objects": {"bbox": [[0.0034985000000000016, 0.09691, 0.243237, 0.395014], [0.48554149999999996, 0.2517555, 0.273787, 0.405197], [0.2800845, 0.760885, 0.210121, 0.22823]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2995.JPG", "objects": {"bbox": [[0.2497665, 0.24473300000000003, 0.159515, 0.319522], [0.38129599999999997, 0.5, 0.217118, 0.3125]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2996.JPG", "objects": {"bbox": [[0.44193049999999995, 0.1274575, 0.118237, 0.183989], [0.18330250000000003, 0.5775985, 0.136427, 0.227879], [0.639226, 0.563904, 0.123134, 0.161868], [0.679804, 0.3862365, 0.104244, 0.165379], [0.631763, 0.48349699999999995, 0.062966, 0.084972], [0.539645, 0.7872189999999999, 0.05084, 0.130618], [0.21408649999999999, 0.23665749999999997, 0.100979, 0.166081]], "categories": [0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2997.JPG", "objects": {"bbox": [[0.357976, 0.291784, 0.229478, 0.376756], [0.00023350000000000454, 0.5691714999999999, 0.098881, 0.326545]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2998.JPG", "objects": {"bbox": [[0.37570000000000003, 0.275281, 0.267024, 0.411868]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2999.JPG", "objects": {"bbox": [[0.3889925, 0.3490175, 0.171175, 0.239817], [0.411147, 0.12464849999999998, 0.16861, 0.223315], [0.3080685, 0.5667135, 0.152519, 0.215239], [0.22341450000000002, 0.6674855, 0.130597, 0.177669], [0.5408115, 0.0003509999999999902, 0.176539, 0.261938]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3000.JPG", "objects": {"bbox": [[0.43959899999999996, 0.0003510000000000041, 0.192164, 0.226826], [0.5447755000000001, 0.2025985, 0.233909, 0.196629], [0.4689835, 0.39922749999999996, 0.252099, 0.300913]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3002.JPG", "objects": {"bbox": [[0.571129, 0.2025985, 0.216884, 0.308989], [0.7849815, 0.46383450000000004, 0.100979, 0.176615], [0.659048, 0.5105335, 0.11334, 0.114817]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3003.JPG", "objects": {"bbox": [[0.4083495, 0.14044949999999998, 0.163479, 0.221559], [0.382696, 0.3865875, 0.157416, 0.191713], [0.3136655, 0.373596, 0.072295, 0.156952], [0.444263, 0.699087, 0.08722, 0.125], [0.7747195, 0.369031, 0.065299, 0.154494], [0.22108200000000003, 0.5596909999999999, 0.116604, 0.158006]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3004.JPG", "objects": {"bbox": [[0.4629195, 0.012640000000000012, 0.247435, 0.303722], [0.4503265, 0.37359549999999997, 0.239739, 0.291433], [0.34305050000000004, 0.356039, 0.123601, 0.251756], [0.21874949999999999, 0.6509830000000001, 0.181903, 0.213132]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3005.JPG", "objects": {"bbox": [[0.31436600000000003, 0.298806, 0.279384, 0.442416], [0.578125, 0.316362, 0.275886, 0.49368], [0.004897499999999999, 0.9097615000000001, 0.119869, 0.087781]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3006.JPG", "objects": {"bbox": [[0.571829, 0.38764049999999994, 0.29944, 0.417837], [0.776353, 0.8160115, 0.222248, 0.183989]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3007.JPG", "objects": {"bbox": [[0.2763525, 0.022121000000000002, 0.273787, 0.411166], [0.5321835, 0.366573, 0.278451, 0.46243]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3008.JPG", "objects": {"bbox": [[0.592817, 0.3911515, 0.292444, 0.372191]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3009.JPG", "objects": {"bbox": [[0.17607299999999998, 0.42626450000000005, 0.158582, 0.262289], [0.3027055, 0.318469, 0.131297, 0.230688], [0.4675835, 0.13693799999999998, 0.161847, 0.30934], [0.6823695000000001, 0.256672, 0.152985, 0.327598], [0.833955, 0.27879200000000004, 0.062034, 0.202598], [0.35634350000000004, 0.742276, 0.071595, 0.126404], [0.28568099999999996, 0.729283, 0.078358, 0.11236]], "categories": [0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3010.JPG", "objects": {"bbox": [[0.0002334999999999976, 0.00035100000000001796, 0.296175, 0.472612], [0.3400185, 0.1274575, 0.513293, 0.663975]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3011.JPG", "objects": {"bbox": [[0.285681, 0.1555475, 0.616604, 0.759831]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3012.JPG", "objects": {"bbox": [[0.2544305, 0.43785099999999993, 0.216185, 0.248244], [0.535448, 0.30793499999999996, 0.11194, 0.210674], [0.7280785, 0.32689599999999996, 0.152519, 0.266854], [0.8556435, 0.5972615, 0.123601, 0.141503], [0.760728, 0.643961, 0.08792, 0.073736], [0.292677, 0.7247195, 0.103312, 0.130969]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3013.JPG", "objects": {"bbox": [[0.22341400000000003, 0.21313200000000002, 0.116604, 0.176966], [0.5093285, 0.030548000000000006, 0.132463, 0.210674], [0.253032, 0.581461, 0.16791, 0.245084], [0.3330225, 0.45540749999999997, 0.086287, 0.105337], [0.466651, 0.182936, 0.079524, 0.108848], [0.6310635, 0.25316, 0.088619, 0.119382], [0.7460355000000001, 0.545646, 0.098647, 0.092346], [0.42793800000000004, 0.8195224999999999, 0.073228, 0.130969], [0.736707, 0.8591989999999999, 0.052938, 0.096208]], "categories": [0, 0, 0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3014.JPG", "objects": {"bbox": [[0.5471085, 0.15800550000000002, 0.372201, 0.578301], [0.432602, 0.5783005, 0.229478, 0.280899], [0.0002334999999999976, 0.7187494999999999, 0.112873, 0.275281], [0.8889925, 0.742275, 0.111007, 0.25632]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3015.JPG", "objects": {"bbox": [[0.40531700000000004, 0.2833565, 0.36334, 0.484551], [0.8260259999999999, 0.8451550000000001, 0.173974, 0.154494]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3016.JPG", "objects": {"bbox": [[0.55014, 0.0035109999999999864, 0.239506, 0.276334], [0.5524715, 0.30442349999999996, 0.279851, 0.385183], [0.4186095000000001, 0.581812, 0.357743, 0.388694]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3017.JPG", "objects": {"bbox": [[0.49486949999999996, 0.27984549999999997, 0.398787, 0.496489]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3018.JPG", "objects": {"bbox": [[0.40461700000000006, 0.400632, 0.236474, 0.253862]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3019.JPG", "objects": {"bbox": [[0.37733250000000007, 0.23911500000000002, 0.459655, 0.661166]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 22.00.21.jpeg", "objects": {"bbox": [[0.0010419999999999874, 0.0031255000000000033, 0.480208, 0.375781], [0.017708500000000016, 0.384375, 0.522917, 0.266406], [0.2885415, 0.5031245, 0.535417, 0.376563], [0.078125, 0.667188, 0.161458, 0.116406]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 22.02.49.jpeg", "objects": {"bbox": [[0.09062549999999997, 0.15625049999999996, 0.864583, 0.657031], [0.0010420000000000013, 0.1015625, 0.080208, 0.574219]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 22.19.22.jpeg", "objects": {"bbox": [[0.45520800000000006, 0.17578100000000002, 0.407292, 0.298438], [0.10625000000000001, 0.45781249999999996, 0.501042, 0.386719]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 22.19.29.jpeg", "objects": {"bbox": [[0.08020849999999999, 0.2906255, 0.404167, 0.310937], [0.6416665, 0.33515649999999997, 0.346875, 0.228125]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 22.25.52.jpeg", "objects": {"bbox": [[0.29270799999999997, 0.329688, 0.39375, 0.272656], [0.8395835, 0.327344, 0.160417, 0.227344]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 22.25.54.jpeg", "objects": {"bbox": [[0.007291500000000006, 0.0007814999999999905, 0.484375, 0.349219], [0.31666700000000003, 0.4945315, 0.498958, 0.350781], [0.03854149999999995, 0.36015600000000003, 0.560417, 0.276562], [0.11875, 0.6570315, 0.15625, 0.109375]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 23.07.31.jpeg", "objects": {"bbox": [[0.3416665, 0.2859375, 0.283333, 0.198437]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 23.07.36.jpeg", "objects": {"bbox": [[0.0289065, 0.2, 0.328125, 0.538542], [0.3390625, 0.1374995, 0.567187, 0.828125], [0.09218699999999999, 0.0010415000000000008, 0.333594, 0.195833]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 23.07.40.jpeg", "objects": {"bbox": [[0.08229149999999999, 0.2929695, 0.408333, 0.292187], [0.6385419999999999, 0.31640650000000003, 0.342708, 0.238281]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 23.07.41.jpeg", "objects": {"bbox": [[0.0989585, 0.2781255, 0.753125, 0.375781]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.01.06.jpeg", "objects": {"bbox": [[0.1177085, 0.200781, 0.860417, 0.558594]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.02.12.jpeg", "objects": {"bbox": [[0.08541650000000006, 0.2210935, 0.866667, 0.589063]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.42.32.jpeg", "objects": {"bbox": [[0.6257815, 0.7781245, 0.225781, 0.221875], [0.3085945, 0.157292, 0.142187, 0.255208]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.44.10.jpeg", "objects": {"bbox": [[0.18906249999999997, 0.0010415000000000285, 0.651563, 0.934375]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.44.14.jpeg", "objects": {"bbox": [[0.12421899999999997, 0.0010419999999999874, 0.652344, 0.9]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.44.15 (1).jpeg", "objects": {"bbox": [[0.05312449999999996, 0.13749999999999998, 0.728125, 0.429688], [0.32083300000000003, 0.708594, 0.41875, 0.291406]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.44.15.jpeg", "objects": {"bbox": [[0.042708000000000024, 0.11640649999999997, 0.9125, 0.685937]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.44.16.jpeg", "objects": {"bbox": [[0.08541700000000002, 0.185156, 0.813542, 0.560156], [0.8687499999999999, 0.402344, 0.13125, 0.226562]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.44.31.jpeg", "objects": {"bbox": [[0.05312450000000002, 0.05156299999999997, 0.903125, 0.757812]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.45.27.jpeg", "objects": {"bbox": [[0.35625, 0.0010419999999999874, 0.591406, 0.848958], [0.0007810000000000039, 0.5552079999999999, 0.289844, 0.39375]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.45.45.jpeg", "objects": {"bbox": [[0.10520850000000004, 0.21328100000000005, 0.858333, 0.597656]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.02.jpeg", "objects": {"bbox": [[0.0010415000000000285, 0.09843750000000001, 0.934375, 0.717187]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.14.jpeg", "objects": {"bbox": [[0.1499995, 0.21718749999999998, 0.516667, 0.404687]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.17.jpeg", "objects": {"bbox": [[0.20312499999999994, 0.12395849999999997, 0.698438, 0.829167], [0.314844, 0.0010419999999999943, 0.29375, 0.123958]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.18 (1).jpeg", "objects": {"bbox": [[0.19843800000000006, 0.15520800000000007, 0.622656, 0.819792], [0.338281, 0.0010420000000000013, 0.272656, 0.173958]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.18.jpeg", "objects": {"bbox": [[0.1874995, 0.1890625, 0.397917, 0.275781]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.19 (1).jpeg", "objects": {"bbox": [[0.366406, 0.007291500000000006, 0.5625, 0.954167], [0.0007810000000000039, 0.8010415000000001, 0.392188, 0.196875]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.19.jpeg", "objects": {"bbox": [[0.0864585, 0.178906, 0.828125, 0.639844]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.20 (1).jpeg", "objects": {"bbox": [[0.10103005500000004, 0.23761052, 0.35489285, 0.23683524]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.20.jpeg", "objects": {"bbox": [[0.0010419999999999874, 0.04375000000000001, 0.907292, 0.753906]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.21 (1).jpeg", "objects": {"bbox": [[0.37500049999999996, 0.0007815000000000183, 0.421875, 0.313281], [0.004167000000000004, 0.41484449999999995, 0.267708, 0.204687], [0.42708350000000006, 0.49218749999999994, 0.152083, 0.080469]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.21 (2).jpeg", "objects": {"bbox": [[0.21484399999999998, 0.13124999999999998, 0.653906, 0.823958], [0.339063, 0.0010415000000000008, 0.285156, 0.145833]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.21 (3).jpeg", "objects": {"bbox": [[0.006250000000000033, 0.039063000000000014, 0.923958, 0.716406]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.21.jpeg", "objects": {"bbox": [[0.09895849999999998, 0.16874949999999997, 0.403125, 0.280469]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.22 (1).jpeg", "objects": {"bbox": [[0.1802085, 0.16328149999999997, 0.541667, 0.404687], [0.290625, 0.6656255, 0.301042, 0.253125], [0.005208500000000005, 0.2062505, 0.196875, 0.132031]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.22.jpeg", "objects": {"bbox": [[0.127083, 0.16718700000000003, 0.432292, 0.298438]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.46.48.jpeg", "objects": {"bbox": [[0.4177085, 0.27265649999999997, 0.103125, 0.060937], [0.294792, 0.3046875, 0.125, 0.063281], [0.6020835, 0.35, 0.139583, 0.052344]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.00.jpeg", "objects": {"bbox": [[0.41770799999999997, 0.3031245, 0.107292, 0.061719], [0.3364585, 0.3578125, 0.122917, 0.071875], [0.7374999999999999, 0.477344, 0.048958, 0.041406], [0.6104160000000001, 0.3109375, 0.151042, 0.055469], [0.4416665, 0.48906299999999997, 0.053125, 0.05625]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.23.jpeg", "objects": {"bbox": [[0.4822915, 0.336719, 0.108333, 0.101562], [0.5895834999999999, 0.383594, 0.128125, 0.08125]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.29.jpeg", "objects": {"bbox": [[0.497917, 0.33125, 0.119792, 0.092188], [0.6114585, 0.37734399999999996, 0.134375, 0.070312], [0.2614585, 0.4742185, 0.135417, 0.065625]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.41.jpeg", "objects": {"bbox": [[0.509375, 0.285937, 0.123958, 0.102344], [0.535417, 0.39375000000000004, 0.138542, 0.085938]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.48.jpeg", "objects": {"bbox": [[0.49791650000000004, 0.2906245, 0.116667, 0.086719], [0.558333, 0.382032, 0.1125, 0.082812]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.57.jpeg", "objects": {"bbox": [[0.574797885, 0.36890637, 0.12485903, 0.07423492], [0.6383449000000001, 0.44180602, 0.1510454, 0.07738548]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.58.jpeg", "objects": {"bbox": [[0.5218745, 0.2929685, 0.096875, 0.117969], [0.3937495, 0.407813, 0.104167, 0.085156], [0.603125, 0.396875, 0.1375, 0.08125], [0.23020850000000004, 0.492969, 0.115625, 0.072656]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.59 (1).jpeg", "objects": {"bbox": [[0.388542, 0.3265625, 0.11875, 0.076563], [0.28020799999999996, 0.359375, 0.117708, 0.075], [0.5895835, 0.39375, 0.141667, 0.064844], [0.325, 0.515625, 0.088542, 0.066406]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.59 (2).jpeg", "objects": {"bbox": [[0.367708, 0.38906250000000003, 0.11875, 0.084375], [0.28645849999999995, 0.4445315, 0.127083, 0.079687], [0.5874999999999999, 0.399219, 0.1, 0.053906], [0.661458, 0.5789059999999999, 0.0875, 0.06875], [0.3593755, 0.5843754999999999, 0.071875, 0.067187]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.59.jpeg", "objects": {"bbox": [[0.3177085, 0.3726565, 0.108333, 0.086719], [0.264583, 0.453125, 0.111458, 0.075], [0.6906249999999999, 0.510156, 0.08125, 0.078906], [0.547917, 0.3562495, 0.061458, 0.042969]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.00.jpeg", "objects": {"bbox": [[0.16249999999999998, 0.367187, 0.11875, 0.13125], [0.573958, 0.372656, 0.1875, 0.092188]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.01.jpeg", "objects": {"bbox": [[0.6395835, 0.398438, 0.160417, 0.091406], [0.29166650000000005, 0.5007809999999999, 0.095833, 0.122656]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.02 (1).jpeg", "objects": {"bbox": [[0.3239585, 0.44531299999999996, 0.385417, 0.272656]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.02 (2).jpeg", "objects": {"bbox": [[0.48124999999999996, 0.6257809999999999, 0.155208, 0.085938], [0.09895849999999999, 0.345312, 0.152083, 0.085938]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.02.jpeg", "objects": {"bbox": [[0.3999995, 0.561719, 0.141667, 0.08125], [0.33125, 0.4984375, 0.123958, 0.069531]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.03 (1).jpeg", "objects": {"bbox": [[0.33854199999999995, 0.309375, 0.3375, 0.202344], [0.578125, 0.28749949999999996, 0.288542, 0.321875]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.03 (2).jpeg", "objects": {"bbox": [[0.36104809000000004, 0.25735129, 0.4496223, 0.21049616]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.03 (3).jpeg", "objects": {"bbox": [[0.273958, 0.309375, 0.307292, 0.227344], [0.49895849999999997, 0.654688, 0.108333, 0.066406]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.03 (4).jpeg", "objects": {"bbox": [[0.21041649999999998, 0.2554685, 0.339583, 0.236719], [0.5552085, 0.577344, 0.110417, 0.103906]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.03 (5).jpeg", "objects": {"bbox": [[0.3677085, 0.26796849999999994, 0.429167, 0.311719]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.03.jpeg", "objects": {"bbox": [[0.3239585, 0.4468745, 0.385417, 0.271875]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.04 (1).jpeg", "objects": {"bbox": [[0.48541600000000007, 0.503906, 0.169792, 0.097656], [0.05729150000000001, 0.20078150000000003, 0.160417, 0.105469]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.04 (2).jpeg", "objects": {"bbox": [[0.21875, 0.245312, 0.342708, 0.335938]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.04 (3).jpeg", "objects": {"bbox": [[0.37291700000000005, 0.29843749999999997, 0.325, 0.290625]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.04.jpeg", "objects": {"bbox": [[0.353125, 0.346094, 0.373958, 0.214062]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.05 (1).jpeg", "objects": {"bbox": [[0.2843755, 0.3140625, 0.314583, 0.324219], [0.590625, 0.33984400000000003, 0.1875, 0.151562]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.05 (2).jpeg", "objects": {"bbox": [[0.270833, 0.401563, 0.30625, 0.253906], [0.604167, 0.3593745, 0.19375, 0.145313], [0.520833, 0.53125, 0.169792, 0.125]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.05 (3).jpeg", "objects": {"bbox": [[0.5750005, 0.32578150000000006, 0.189583, 0.159375], [0.1697915, 0.5617185, 0.347917, 0.215625], [0.7447919999999999, 0.5499999999999999, 0.182292, 0.14375]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.05.jpeg", "objects": {"bbox": [[0.40625, 0.2281255, 0.34375, 0.250781]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.06 (1).jpeg", "objects": {"bbox": [[0.20937450000000002, 0.1765625, 0.596875, 0.390625]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.06.jpeg", "objects": {"bbox": [[0.08229150000000002, 0.23750049999999998, 0.577083, 0.394531]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.07 (1).jpeg", "objects": {"bbox": [[0.1666665, 0.21484349999999997, 0.208333, 0.134375], [0.65625, 0.6085935, 0.11875, 0.150781]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.07.jpeg", "objects": {"bbox": [[0.26145799999999997, 0.3781245, 0.2, 0.139063]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.53.20.jpeg", "objects": {"bbox": [[0.6885415, 0.5195310000000001, 0.133333, 0.0875], [0.4531255, 0.34765599999999997, 0.114583, 0.092188], [0.1624995, 0.5109375, 0.104167, 0.078125], [0.69375, 0.6546875, 0.09375, 0.050781]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.53.32.jpeg", "objects": {"bbox": [[0.696875, 0.434375, 0.119792, 0.102344], [0.475, 0.3, 0.107292, 0.08125]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.53.33 (1).jpeg", "objects": {"bbox": [[0.145833, 0.39453099999999997, 0.144792, 0.110156], [0.5666665000000001, 0.38125000000000003, 0.103125, 0.095312], [0.6333335, 0.4835935, 0.089583, 0.059375]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.53.33.jpeg", "objects": {"bbox": [[0.4260415, 0.253125, 0.115625, 0.08125], [0.636459, 0.4328125, 0.155208, 0.094531], [0.130208, 0.42265600000000003, 0.105208, 0.083594], [0.6437505, 0.571094, 0.102083, 0.047656]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.57.54.jpeg", "objects": {"bbox": [[0.5479164999999999, 0.19062450000000003, 0.240625, 0.186719], [0.048958, 0.7078119999999999, 0.26875, 0.127344], [0.21666649999999998, 0.5757815000000001, 0.177083, 0.086719]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.58.32.jpeg", "objects": {"bbox": [[0.5218745, 0.16328150000000002, 0.246875, 0.207031], [0.0010420000000000013, 0.690625, 0.213542, 0.1375], [0.16875, 0.8101565, 0.176042, 0.176563], [0.177083, 0.2546875, 0.223958, 0.209375]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.58.33.jpeg", "objects": {"bbox": [[0.5479164999999999, 0.19062450000000003, 0.240625, 0.186719], [0.048958, 0.707813, 0.276042, 0.11875], [0.2541665, 0.8023435, 0.170833, 0.173437], [0.25104200000000004, 0.26328149999999995, 0.230208, 0.204687], [0.2020835, 0.5710930000000001, 0.189583, 0.104688]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 16.17.53.jpeg", "objects": {"bbox": [[0.4552085, 0.3507815, 0.071875, 0.053125], [0.146875, 0.5210935, 0.09375, 0.055469], [0.661458, 0.5281254999999999, 0.1, 0.053125], [0.6333335, 0.574219, 0.066667, 0.04375], [0.519792, 0.5789059999999999, 0.055208, 0.042188], [0.633333, 0.494531, 0.088542, 0.0375]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 16.17.57.jpeg", "objects": {"bbox": [[0.6583335, 0.6085940000000001, 0.109375, 0.0875], [0.2791665, 0.14062449999999999, 0.170833, 0.115625], [0.419792, 0.601562, 0.10625, 0.092188], [0.698958, 0.525, 0.16875, 0.129688], [0.651041, 0.457031, 0.163542, 0.082812]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 16.18.01.jpeg", "objects": {"bbox": [[0.697917, 0.117188, 0.15625, 0.128906], [0.29583349999999997, 0.227344, 0.191667, 0.147656], [0.771875, 0.313281, 0.125, 0.096094], [0.658334, 0.364844, 0.111458, 0.082812], [0.0010420000000000013, 0.565625, 0.14375, 0.0875]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 16.18.03.jpeg", "objects": {"bbox": [[0.7020839999999999, 0.125, 0.130208, 0.1125], [0.2802085, 0.221875, 0.203125, 0.153906], [0.771875, 0.313281, 0.125, 0.096094], [0.6583335, 0.3648435, 0.103125, 0.055469], [0.0010420000000000013, 0.565625, 0.14375, 0.0875]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 16.18.06.jpeg", "objects": {"bbox": [[0.4770835, 0.3125, 0.066667, 0.0625], [0.5458335000000001, 0.5351560000000001, 0.041667, 0.070312], [0.170833, 0.492969, 0.0875, 0.052344], [0.6520835, 0.47421800000000003, 0.079167, 0.048438], [0.6791665, 0.5031249999999999, 0.096875, 0.058594], [0.6468755, 0.542969, 0.070833, 0.047656]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/BOUSTH_Stage1_Im0.JPG", "objects": {"bbox": [[0.3122665, 0.1566015, 0.069963, 0.105337], [0.3337225, 0.412219, 0.051539, 0.080758], [0.2856805, 0.43012700000000004, 0.056437, 0.088834], [0.49370349999999996, 0.14536549999999998, 0.069963, 0.105337], [0.5445425, 0.27914300000000003, 0.058069, 0.082514], [0.3500465, 0.32479, 0.051539, 0.080758], [0.590485, 0.4385535, 0.049674, 0.067767], [0.713853, 0.6218400000000001, 0.064832, 0.10323], [0.552938, 0.62184, 0.033116, 0.086376], [0.3731345, 0.5663625, 0.042211, 0.067065], [0.8787309999999999, 0.740871, 0.082556, 0.096208]], "categories": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im1.JPG", "objects": {"bbox": [[0.190298, 0.7373595, 0.10681, 0.167837], [0.1037785, 0.780548, 0.110541, 0.180126], [0.2325095, 0.6049855000000001, 0.092351, 0.141503], [0.181203, 0.258427, 0.125, 0.205056], [0.42490700000000003, 0.3570925, 0.091884, 0.110955], [0.49883400000000006, 0.272121, 0.134562, 0.20611], [0.5911845, 0.5235255, 0.109841, 0.152739], [0.6672104999999999, 0.8405895, 0.099347, 0.122191]], "categories": [0, 0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im10.JPG", "objects": {"bbox": [[0.33931900000000004, 0.00035100000000001796, 0.378498, 0.311096], [0.21058799999999997, 0.1372895, 0.345382, 0.420295], [0.20755650000000003, 0.5688205, 0.232509, 0.261587], [0.43563450000000004, 0.5948035, 0.333955, 0.364817]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im108.JPG", "objects": {"bbox": [[0.6124065, 0.3409415, 0.038013, 0.054775], [0.6058775, 0.0007020000000000012, 0.056203, 0.060042], [0.6646460000000001, 0.072683, 0.047108, 0.05934], [0.7691235, 0.09339900000000001, 0.042211, 0.051966], [0.487173, 0.44627799999999995, 0.03195, 0.04073], [0.6289640000000001, 0.418539, 0.03195, 0.04073]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im109.JPG", "objects": {"bbox": [[0.6147385, 0.4111655, 0.038713, 0.050211], [0.6294305, 0.49297749999999996, 0.028685, 0.031601], [0.6107745, 0.04915750000000001, 0.057603, 0.087781], [0.666045, 0.146067, 0.048974, 0.05302], [0.7793840000000001, 0.16608099999999998, 0.034282, 0.055478]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im11.JPG", "objects": {"bbox": [[0.1511195, 0.0003509999999999902, 0.367071, 0.293188], [0.40088650000000003, 0.34550600000000004, 0.287547, 0.388694], [0.172342, 0.349017, 0.220382, 0.199438]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im12.JPG", "objects": {"bbox": [[0.30457100000000004, 0.008075499999999985, 0.36264, 0.458919], [0.1956625, 0.370436, 0.340019, 0.38764], [0.4708485, 0.7591295, 0.317631, 0.236657], [0.22481399999999996, 0.7682589999999999, 0.241604, 0.213834]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im13.JPG", "objects": {"bbox": [[0.7087215, 0.3602535, 0.230877, 0.353581], [0.37080250000000003, 0.25948099999999996, 0.301073, 0.48139], [0.184235, 0.016151500000000013, 0.301772, 0.472261], [0.00023350000000001148, 0.8507725, 0.130597, 0.141503]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im14.JPG", "objects": {"bbox": [[0.351213, 0.04985999999999996, 0.288246, 0.57198], [0.12103500000000002, 0.626405, 0.229478, 0.32514], [0.003031999999999993, 0.586728, 0.1257, 0.406952]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im15.JPG", "objects": {"bbox": [[0.5069965, 0.49297749999999996, 0.252799, 0.379213], [0.7560635, 0.8441015, 0.243937, 0.155899], [0.026353000000000015, 0.0024585000000000024, 0.264692, 0.296699]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im16.JPG", "objects": {"bbox": [[0.316698, 0.13483099999999998, 0.240672, 0.405548], [0.49883349999999993, 0.5733845, 0.440765, 0.426615]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im17.JPG", "objects": {"bbox": [[0.10984100000000002, 0.1688905, 0.49417, 0.642205]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im18.JPG", "objects": {"bbox": [[0.0002334999999999976, 0.0003505000000000036, 0.286381, 0.254565], [0.39948700000000004, 0.0691715, 0.26166, 0.340941], [0.49883350000000004, 0.548455, 0.080457, 0.114466], [0.780084, 0.9129215, 0.219916, 0.087079]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im19.JPG", "objects": {"bbox": [[0.2129195, 0.0003509999999999902, 0.345149, 0.397472]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im2.JPG", "objects": {"bbox": [[0.36473849999999997, 0.282303, 0.285215, 0.455056], [0.559002, 0.8426965, 0.227146, 0.157303]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im20.JPG", "objects": {"bbox": [[0.19029849999999998, 0.0003505000000000036, 0.532649, 0.328301], [0.1963625, 0.4023880000000001, 0.336287, 0.41573]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im21.JPG", "objects": {"bbox": [[0.34445000000000003, 0.22893249999999998, 0.378498, 0.461025], [0.16254649999999998, 0.41573050000000006, 0.336287, 0.450843], [0.09258399999999999, 0.7556185, 0.204524, 0.242275]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im22.JPG", "objects": {"bbox": [[0.42490700000000003, 0.15414299999999997, 0.364272, 0.492626], [0.46781749999999994, 0.00035149999999999765, 0.188899, 0.089185]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im23.JPG", "objects": {"bbox": [[0.23834, 0.3525285, 0.228778, 0.379213], [0.46338650000000003, 0.08075900000000003, 0.317397, 0.487008], [0.6019125000000001, 0.0003510000000000041, 0.214319, 0.06566]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im24.JPG", "objects": {"bbox": [[0.2775185, 0.24262650000000002, 0.459655, 0.680829], [0.8584419999999999, 0.23560400000000004, 0.141558, 0.582514]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im25.JPG", "objects": {"bbox": [[0.34981399999999996, 0.2798455, 0.40555, 0.494031], [0.2112875, 0.0003510000000000041, 0.284515, 0.22507]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im26.JPG", "objects": {"bbox": [[0.26166100000000003, 0.773877, 0.091884, 0.128862], [0.567398, 0.821981, 0.091884, 0.128862], [0.624767, 0.688553, 0.085588, 0.116924], [0.2737875, 0.6481745, 0.078591, 0.104635], [0.5585355, 0.4266155, 0.078591, 0.104635], [0.5097945, 0.31144649999999996, 0.072295, 0.110955], [0.2947765, 0.4547055, 0.052705, 0.083567], [0.4379665, 0.29424150000000004, 0.052705, 0.083567], [0.383862, 0.295997, 0.064366, 0.101826]], "categories": [0, 0, 0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im27.JPG", "objects": {"bbox": [[0.503965, 0.13728900000000002, 0.283582, 0.435042], [0.27751899999999996, 0.5459970000000001, 0.27472, 0.352528]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im28.JPG", "objects": {"bbox": [[0.576259, 0.5653094999999999, 0.104478, 0.142907], [0.12360099999999999, 0.5962080000000001, 0.120802, 0.149228], [0.499767, 0.7127815, 0.104478, 0.142907], [0.522388, 0.22717749999999998, 0.09375, 0.130969], [0.46851699999999996, 0.0702245, 0.09375, 0.130969], [0.181204, 0.197332, 0.072994, 0.112008], [0.16278, 0.464888, 0.072994, 0.112008]], "categories": [0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im29.JPG", "objects": {"bbox": [[0.414412, 0.641152, 0.10681, 0.15309], [0.428171, 0.8149580000000001, 0.134562, 0.18434], [0.8990205, 0.7619385000000001, 0.100979, 0.183989], [0.7999065, 0.142556, 0.100513, 0.172402], [0.6893655, 0.009128999999999998, 0.100513, 0.172402], [0.388759, 0.346208, 0.079058, 0.132022], [0.48833950000000004, 0.04740100000000001, 0.108209, 0.180478]], "categories": [0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im3.JPG", "objects": {"bbox": [[0.49113850000000003, 0.49859549999999997, 0.183535, 0.352177]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im30.JPG", "objects": {"bbox": [[0.6070435000000001, 0.38869400000000004, 0.128731, 0.183638], [0.3316235, 0.23911549999999998, 0.076959, 0.130267], [0.172341, 0.19627799999999995, 0.128498, 0.216292], [0.07299449999999999, 0.21769649999999996, 0.096315, 0.110955], [0.20382499999999998, 0.42380650000000003, 0.057136, 0.088483]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im31.JPG", "objects": {"bbox": [[0.470149, 0.6141145, 0.21222, 0.328301], [0.33768600000000004, 0.28792149999999994, 0.171642, 0.307935], [0.06996250000000001, 0.007022499999999987, 0.276119, 0.371489], [0.020989000000000008, 0.197331, 0.152052, 0.279846]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im32.JPG", "objects": {"bbox": [[0.25723, 0.16783749999999997, 0.416744, 0.609199], [0.2805505, 0.0035115000000000007, 0.050373, 0.063553]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im33.JPG", "objects": {"bbox": [[0.28428149999999996, 0.22120799999999996, 0.417677, 0.605688], [0.1595145, 0.0003510000000000041, 0.219683, 0.11552]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im34.JPG", "objects": {"bbox": [[0.6536845, 0.22542099999999998, 0.290345, 0.652388], [0.08278949999999999, 0.0003509999999999902, 0.483675, 0.742978], [0.05946800000000002, 0.544944, 0.312034, 0.422402]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im35.JPG", "objects": {"bbox": [[0.257929, 0.24157300000000004, 0.378498, 0.601124]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im36.JPG", "objects": {"bbox": [[0.311334, 0.24262649999999997, 0.331856, 0.462079]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im37.JPG", "objects": {"bbox": [[0.3670709999999999, 0.23911549999999998, 0.465718, 0.607093]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im38.JPG", "objects": {"bbox": [[0.20475749999999998, 0.21664299999999997, 0.486707, 0.640098]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im39.JPG", "objects": {"bbox": [[0.44006599999999996, 0.447682, 0.312966, 0.436096], [0.2849815, 0.0003515000000000046, 0.312267, 0.381671], [0.0023320000000000007, 0.002458000000000002, 0.133862, 0.19382], [0.5611005, 0.9118679999999999, 0.131063, 0.088132]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im4.JPG", "objects": {"bbox": [[0.6529855, 0.5575845, 0.128731, 0.168539], [0.5340484999999999, 0.14290749999999997, 0.151353, 0.243329], [0.8500465, 0.08391800000000002, 0.149953, 0.254916], [0.647621, 0.7464885, 0.125, 0.195927], [0.5634330000000001, 0.8202245, 0.138526, 0.179775]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im40.JPG", "objects": {"bbox": [[0.251166, 0.13834249999999998, 0.33792, 0.455407], [0.5235540000000001, 0.3728935, 0.271688, 0.385183]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im41.JPG", "objects": {"bbox": [[0.2534985, 0.0930475, 0.306203, 0.431531], [0.4829755, 0.32303400000000004, 0.265625, 0.348666]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im42.JPG", "objects": {"bbox": [[0.4055500000000001, 0.10428399999999999, 0.376866, 0.39993]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im43.JPG", "objects": {"bbox": [[0.201492, 0.497542, 0.08209, 0.099368], [0.2616605, 0.559691, 0.069263, 0.079354], [0.48367499999999997, 0.276685, 0.08209, 0.113062]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im44.JPG", "objects": {"bbox": [[0.340718, 0.184691, 0.070662, 0.091994], [0.5622665, 0.281601, 0.065765, 0.08111]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im45.JPG", "objects": {"bbox": [[0.10611, 0.129213, 0.15555, 0.18118], [0.5979475, 0.2665025, 0.115205, 0.165379], [0.5265855, 0.316011, 0.063899, 0.081812], [0.170709, 0.559691, 0.073694, 0.09059], [0.461987, 0.7183995, 0.065998, 0.086025]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im46.JPG", "objects": {"bbox": [[0.2558305, 0.5326544999999999, 0.140625, 0.151685], [0.405551, 0.4736659999999999, 0.250466, 0.314958]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im47.JPG", "objects": {"bbox": [[0.309935, 0.39220450000000007, 0.283582, 0.371489]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im48.JPG", "objects": {"bbox": [[0.21222000000000002, 0.736306, 0.118004, 0.139396], [0.24300349999999998, 0.6197335, 0.080457, 0.091643], [0.180504, 0.36165749999999997, 0.116604, 0.152739], [0.4204755, 0.3219805, 0.097015, 0.141503], [0.5235545, 0.6910115, 0.082789, 0.143961], [0.6161385, 0.49508399999999997, 0.108209, 0.108848], [0.678638, 0.425913, 0.104478, 0.10323], [0.6604475000000001, 0.2787925, 0.113573, 0.122191]], "categories": [0, 0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im49.JPG", "objects": {"bbox": [[0.22038300000000002, 0.6660815, 0.114272, 0.138343], [0.24370349999999996, 0.538273, 0.081157, 0.100772], [0.177472, 0.2981045, 0.120336, 0.157303], [0.40555050000000004, 0.24016849999999998, 0.105177, 0.140449], [0.5258860000000001, 0.6116575, 0.093284, 0.143961], [0.617537, 0.39993, 0.108442, 0.100772], [0.6627795, 0.330758, 0.118937, 0.104284], [0.6438895, 0.18469049999999998, 0.130131, 0.127107]], "categories": [0, 0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im5.JPG", "objects": {"bbox": [[0.4776125, 0.30723349999999994, 0.215951, 0.376053], [0.366371, 0.402388, 0.112174, 0.213834], [0.0002334999999999976, 0.4069525, 0.157649, 0.349719], [0.690532, 0.656952, 0.182836, 0.23139]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im50.JPG", "objects": {"bbox": [[0.3565765, 0.4782305, 0.042211, 0.042837], [0.496502, 0.504213, 0.04291, 0.047402], [0.5072295, 0.4617275, 0.035215, 0.045997], [0.5013995, 0.4034405, 0.041045, 0.056531], [0.375933, 0.398877, 0.031716, 0.04073]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im51.JPG", "objects": {"bbox": [[0.35284499999999996, 0.525632, 0.041278, 0.04073], [0.489505, 0.5519665, 0.040812, 0.048455], [0.49743450000000006, 0.454003, 0.040345, 0.053722], [0.5030315000000001, 0.5077244999999999, 0.032649, 0.045295], [0.3701025, 0.44487350000000003, 0.031483, 0.038975]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im52.JPG", "objects": {"bbox": [[0.5123595, 0.472612, 0.035215, 0.057584], [0.3866605, 0.359199, 0.037547, 0.04986], [0.4678175, 0.219803, 0.039879, 0.060042], [0.5002329999999999, 0.2707165, 0.04431, 0.045295], [0.422808, 0.45786499999999997, 0.032416, 0.041784], [0.5272859999999999, 0.32514, 0.027052, 0.02493]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im53.JPG", "objects": {"bbox": [[0.19636199999999998, 0.500702, 0.093284, 0.114466], [0.394123, 0.173455, 0.089552, 0.133778], [0.47458, 0.275281, 0.092584, 0.12816], [0.5340484999999999, 0.4146775, 0.061101, 0.074789], [0.49720099999999995, 0.7556175, 0.093284, 0.132725], [0.28894600000000004, 0.7271770000000001, 0.072062, 0.10323]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im54.JPG", "objects": {"bbox": [[0.2866135, 0.7580755, 0.080457, 0.098315], [0.22644550000000002, 0.654846, 0.100047, 0.13132], [0.3264925, 0.1169245, 0.088853, 0.157303], [0.417444, 0.119031, 0.067864, 0.147472], [0.58139, 0.222261, 0.08209, 0.13132], [0.5979475, 0.4838485, 0.057369, 0.094101], [0.052704999999999995, 0.5561794999999999, 0.114272, 0.131671]], "categories": [0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im55.JPG", "objects": {"bbox": [[0.2919775, 0.21664350000000002, 0.194729, 0.284059], [0.4911375, 0.1530905, 0.160215, 0.302317], [0.887593, 0.3205755, 0.111474, 0.316011]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im56.JPG", "objects": {"bbox": [[0.3288245, 0.8665735, 0.105877, 0.129213], [0.252799, 0.7566715, 0.13083, 0.154143], [0.044309, 0.6467695, 0.114506, 0.162219], [0.3535445, 0.06811749999999998, 0.121035, 0.179073], [0.46944949999999996, 0.05231800000000002, 0.102379, 0.185744], [0.682369, 0.16889049999999997, 0.123368, 0.170997], [0.7185170000000001, 0.5052675, 0.079524, 0.129213]], "categories": [0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im57.JPG", "objects": {"bbox": [[0.03381550000000001, 0.173455, 0.222015, 0.313904], [0.2595615, 0.139396, 0.165345, 0.327598], [0.6560170000000001, 0.36938150000000003, 0.209188, 0.311447]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im58.JPG", "objects": {"bbox": [[0.312267, 0.40449450000000003, 0.205924, 0.305829], [0.524254, 0.33672699999999994, 0.182136, 0.33743], [0.9244405, 0.5256315, 0.074627, 0.277739]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im59.JPG", "objects": {"bbox": [[0.44612849999999993, 0.42029550000000004, 0.262593, 0.293539], [0.379898, 0.010532999999999987, 0.220382, 0.305478], [0.2646925, 0.200491, 0.068563, 0.08743]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im6.JPG", "objects": {"bbox": [[0.14365650000000002, 0.016152000000000027, 0.227845, 0.366924], [0.0510725, 0.1271065, 0.098647, 0.157303], [0.3542445, 0.40449450000000003, 0.170009, 0.214185], [0.561101, 0.769312, 0.195662, 0.205056]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im60.JPG", "objects": {"bbox": [[0.4491605000000001, 0.34550600000000004, 0.276819, 0.404494]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im61.JPG", "objects": {"bbox": [[0.33325550000000004, 0.17450799999999997, 0.276819, 0.383076], [0.220382, 0.010533500000000001, 0.261894, 0.379213], [0.757463, 0.656952, 0.241604, 0.338834]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im62.JPG", "objects": {"bbox": [[0.30923500000000004, 0.2222615, 0.267724, 0.437149]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im63.JPG", "objects": {"bbox": [[0.30013999999999996, 0.2345505, 0.392024, 0.655899]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im64.JPG", "objects": {"bbox": [[0.30690300000000004, 0.11341300000000001, 0.271688, 0.432584], [0.46408600000000005, 0.606039, 0.229478, 0.380618]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im65.JPG", "objects": {"bbox": [[0.25419749999999997, 0.024929499999999993, 0.342351, 0.530197], [0.4708485, 0.5200134999999999, 0.252799, 0.349017], [0.072994, 0.5438905, 0.625, 0.454003]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im66.JPG", "objects": {"bbox": [[0.4263064999999999, 0.3174155, 0.322761, 0.381671]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im67.JPG", "objects": {"bbox": [[0.1620805, 0.7166429999999999, 0.145289, 0.221208], [0.30667, 0.29389, 0.090252, 0.141854], [0.340018, 0.43574450000000003, 0.083256, 0.120435], [0.4589555, 0.009129499999999999, 0.122901, 0.125351], [0.5375465, 0.14045000000000002, 0.083955, 0.151334], [0.710821, 0.37464899999999995, 0.13153, 0.104284]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im68.JPG", "objects": {"bbox": [[0.06646400000000001, 0.472963, 0.161614, 0.21559], [0.14109149999999998, 0.7011935, 0.142257, 0.207163], [0.46898350000000005, 0.19346850000000002, 0.129431, 0.297051], [0.33069, 0.009129499999999999, 0.211754, 0.211025], [0.7686569999999999, 0.6007725, 0.18097, 0.187149]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im69.JPG", "objects": {"bbox": [[0.36637149999999996, 0.591292, 0.047575, 0.099368], [0.415345, 0.38764000000000004, 0.04431, 0.071278], [0.4326025, 0.45786550000000004, 0.042677, 0.070225], [0.49113850000000003, 0.23209249999999998, 0.045709, 0.075843], [0.5284515, 0.3149575, 0.041045, 0.070225]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im7.JPG", "objects": {"bbox": [[0.366371, 0.3785115, 0.182836, 0.370435], [0.9584885, 0.32303400000000004, 0.041511, 0.265098], [0.90042, 0.619733, 0.09958, 0.132374]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im70.JPG", "objects": {"bbox": [[0.5960825, 0.680126, 0.139925, 0.241222], [0.6014459999999999, 0.47787900000000005, 0.150886, 0.145014], [0.659048, 0.292837, 0.176306, 0.203652], [0.47131550000000005, 0.07478950000000001, 0.127099, 0.232093], [0.22178199999999998, 0.21804749999999998, 0.126866, 0.159059], [0.14715499999999998, 0.2998595, 0.147854, 0.199087]], "categories": [0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im71.JPG", "objects": {"bbox": [[0.31599849999999996, 0.16362400000000005, 0.327425, 0.583216], [0.4542915, 0.0003510000000000006, 0.156483, 0.036868], [0.2810165, 0.007022500000000001, 0.138293, 0.143961]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im72.JPG", "objects": {"bbox": [[0.2094215, 0.580758, 0.076959, 0.086728], [0.264692, 0.4708565, 0.072994, 0.085323], [0.477845, 0.6790725, 0.04431, 0.078301], [0.4855415, 0.420295, 0.069263, 0.086728], [0.4349345, 0.394663, 0.049207, 0.060744]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im73.JPG", "objects": {"bbox": [[0.022154500000000008, 0.648525, 0.137593, 0.156952], [0.135495, 0.42731699999999995, 0.104244, 0.167486], [0.5384789999999999, 0.367627, 0.139226, 0.154494], [0.4442625, 0.2938905, 0.105877, 0.133427], [0.5268185000000001, 0.8521770000000001, 0.079991, 0.129916]], "categories": [0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im74.JPG", "objects": {"bbox": [[0.0002329999999999971, 0.6063904999999999, 0.08722, 0.280899], [0.529851, 0.442767, 0.253498, 0.292486], [0.39598849999999997, 0.3254915, 0.212453, 0.262289]], "categories": [0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im75.JPG", "objects": {"bbox": [[0.40228500000000006, 0.11341299999999999, 0.227146, 0.301264]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im76.JPG", "objects": {"bbox": [[0.46431950000000005, 0.188553, 0.141091, 0.279846]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im77.JPG", "objects": {"bbox": [[0.234375, 0.21559050000000002, 0.409748, 0.481039]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im78.JPG", "objects": {"bbox": [[0.3353545, 0.24824399999999996, 0.381063, 0.533708], [0.9372665, 0.6239469999999999, 0.062733, 0.370084]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im79.JPG", "objects": {"bbox": [[0.434002, 0.4778795, 0.104478, 0.140449], [0.43167, 0.254214, 0.103778, 0.10639], [0.4186105, 0.1299155, 0.105177, 0.137289], [0.49113750000000006, 0.05723349999999999, 0.092351, 0.137289], [0.683069, 0.05723299999999999, 0.059002, 0.12184], [0.7546645, 0.2401685, 0.108675, 0.143961], [0.5967819999999999, 0.5948035, 0.051306, 0.122893]], "categories": [0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im8.JPG", "objects": {"bbox": [[0.470849, 0.20856750000000002, 0.16861, 0.226475], [0.44076550000000003, 0.4543535, 0.177705, 0.264045], [0.3271925, 0.5459970000000001, 0.188899, 0.266152], [0.639459, 0.9051965, 0.084188, 0.094101]], "categories": [0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im80.JPG", "objects": {"bbox": [[0.42397399999999996, 0.5807585, 0.041278, 0.115871], [0.267024, 0.4202955, 0.118004, 0.134831], [0.31203349999999996, 0.20751400000000003, 0.115905, 0.101826], [0.316698, 0.061798000000000006, 0.104944, 0.154846], [0.4013525, 0.016152, 0.100513, 0.141854], [0.5904845, 0.08883399999999998, 0.065299, 0.126756], [0.6254665, 0.30091300000000004, 0.108209, 0.152388]], "categories": [0, 0, 0, 0, 0, 0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im81.JPG", "objects": {"bbox": [[0.40065249999999997, 0.3865875, 0.252099, 0.333567]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im82.JPG", "objects": {"bbox": [[0.0881535, 0.011587499999999973, 0.839785, 0.988413], [0.5641325, 0.0003515000000000046, 0.426073, 0.417837]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im83.JPG", "objects": {"bbox": [[0.12779850000000004, 0.22366550000000002, 0.623601, 0.702247], [0.48647399999999996, 0.10182600000000003, 0.305504, 0.40625]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im84.JPG", "objects": {"bbox": [[0.26772399999999996, 0.13693850000000007, 0.53125, 0.727177]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im85.JPG", "objects": {"bbox": [[0.269356, 0.03160099999999999, 0.51236, 0.83111], [0.42164199999999996, 0.798455, 0.270756, 0.195576]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im86.JPG", "objects": {"bbox": [[0.28638050000000004, 0.00035050000000003134, 0.622201, 0.870787], [0.644123, 0.7468395, 0.352146, 0.247191]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im87.JPG", "objects": {"bbox": [[0.26935649999999994, 0.008075999999999972, 0.613573, 0.87816], [0.6100749999999999, 0.7784409999999999, 0.370802, 0.213132]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im88.JPG", "objects": {"bbox": [[0.32905799999999996, 0.2342, 0.345382, 0.395716], [0.159748, 0.43434000000000006, 0.146922, 0.250702]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im89.JPG", "objects": {"bbox": [[0.28638050000000004, 0.1990875, 0.344683, 0.401685], [0.116138, 0.39220450000000007, 0.15695, 0.235253]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im9.JPG", "objects": {"bbox": [[0.28428149999999996, 0.0003515000000000046, 0.447761, 0.593399], [0.628965, 0.6004214999999999, 0.338386, 0.304775]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im90.JPG", "objects": {"bbox": [[0.4752799999999999, 0.039676499999999976, 0.281716, 0.427669]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im91.JPG", "objects": {"bbox": [[0.29967299999999997, 0.04564549999999995, 0.392724, 0.791433], [0.207789, 0.9378505, 0.14319, 0.058287]], "categories": [0, 0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im92.JPG", "objects": {"bbox": [[0.200793, 0.07584250000000003, 0.538946, 0.782303]], "categories": [0]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/DSC_2509.JPG", "objects": {"bbox": [[0.333022, 0.6077954999999999, 0.094916, 0.194171], [0.3229945, 0.502458, 0.086287, 0.107444], [0.49253749999999996, 0.20259850000000001, 0.076959, 0.107795], [0.6923969999999999, 0.30302, 0.107976, 0.128862], [0.663713, 0.6253510000000001, 0.163946, 0.236306], [0.238106, 0.30934, 0.051306, 0.071278], [0.376632, 0.237711, 0.063666, 0.063202]], "categories": [1, 1, 1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2510.JPG", "objects": {"bbox": [[0.29640900000000003, 0.3465595, 0.3743, 0.503511]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2511.JPG", "objects": {"bbox": [[0.4083485, 0.10744350000000003, 0.361707, 0.620787], [0.221082, 0.5445925, 0.253498, 0.324087], [0.6760729999999999, 0.7984555, 0.278218, 0.201545]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2512.JPG", "objects": {"bbox": [[0.3353545, 0.31390450000000003, 0.266091, 0.369733], [0.1434235, 0.0003509999999999902, 0.295243, 0.188202], [0.0002329999999999971, 0.0003515000000000046, 0.147854, 0.293539]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2513.JPG", "objects": {"bbox": [[0.571129, 0.0010529999999999984, 0.198228, 0.158006], [0.47784550000000003, 0.139045, 0.288479, 0.458216], [0.28708, 0.32900300000000005, 0.357976, 0.488062], [0.8083020000000001, 0.8149580000000001, 0.191698, 0.185042]], "categories": [1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2514.JPG", "objects": {"bbox": [[0.47061499999999995, 0.10182550000000001, 0.217118, 0.369031], [0.39365649999999996, 0.461376, 0.284049, 0.442416], [0.204758, 0.648525, 0.35541, 0.347612]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2515.JPG", "objects": {"bbox": [[0.11450599999999998, 0.542135, 0.19986, 0.347612], [0.2467345, 0.2577245, 0.306437, 0.499649], [0.4911375, 0.1566015, 0.343517, 0.505969]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2516.JPG", "objects": {"bbox": [[0.314365, 0.18855300000000003, 0.322062, 0.607444], [0.6861005, 0.6534415, 0.313899, 0.346559]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2517.JPG", "objects": {"bbox": [[0.14645550000000002, 0.16959250000000003, 0.571595, 0.782303]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2518.JPG", "objects": {"bbox": [[0.16814400000000002, 0.04424099999999999, 0.20056, 0.248596], [0.4456625, 0.2096205, 0.117771, 0.189607], [0.5804575000000001, 0.3911515, 0.122901, 0.168539], [0.5237875, 0.47787949999999996, 0.111007, 0.161517], [0.508162, 0.630969, 0.14389, 0.152388]], "categories": [1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2519.JPG", "objects": {"bbox": [[0.20312449999999999, 0.0003510000000000041, 0.213153, 0.22823], [0.48787299999999995, 0.1555475, 0.11194, 0.185393], [0.6208025, 0.34445200000000004, 0.120569, 0.182584], [0.556437, 0.436798, 0.114972, 0.165028], [0.538479, 0.59375, 0.149254, 0.15309]], "categories": [1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2520.JPG", "objects": {"bbox": [[0.7360074999999999, 0.429775, 0.101679, 0.137992], [0.6690765, 0.5853225000000001, 0.072295, 0.098315], [0.6464555, 0.3946625, 0.069963, 0.087781], [0.3416505, 0.4483845, 0.092351, 0.110253], [0.311334, 0.6709975, 0.119636, 0.179073], [0.3913245, 0.2296345, 0.132463, 0.170997], [0.528451, 0.299859, 0.049674, 0.081812], [0.5711284999999999, 0.1509835, 0.076259, 0.119733]], "categories": [1, 1, 1, 1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2521.JPG", "objects": {"bbox": [[0.42863799999999996, 0.374649, 0.260728, 0.40625], [0.40461800000000003, 0.0003510000000000041, 0.19916, 0.11552]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2522.JPG", "objects": {"bbox": [[0.5671645, 0.39009849999999996, 0.162547, 0.224719], [0.49183699999999997, 0.16959300000000002, 0.083256, 0.07514]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2523.JPG", "objects": {"bbox": [[0.47224849999999996, 0.4343395, 0.261427, 0.377107], [0.632463, 0.823034, 0.129198, 0.176966], [0.2926775, 0.08778050000000001, 0.174907, 0.138343]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2524.JPG", "objects": {"bbox": [[0.5237875, 0.3244385, 0.282183, 0.380267], [0.6870335, 0.7222615000000001, 0.149953, 0.263343], [0.35634350000000004, 0.0003510000000000041, 0.154851, 0.110604]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2525.JPG", "objects": {"bbox": [[0.0818565, 0.3911515, 0.117537, 0.160463], [0.041511000000000006, 0.6028789999999999, 0.151586, 0.194522], [0.4456625, 0.5948030000000001, 0.107509, 0.173104], [0.573461, 0.637991, 0.153218, 0.226124], [0.689599, 0.4080055, 0.145756, 0.198385], [0.5485074999999999, 0.0003509999999999902, 0.171175, 0.13764]], "categories": [1, 1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2526.JPG", "objects": {"bbox": [[0.2320425, 0.5491575, 0.086987, 0.133427], [0.2110535, 0.7176965, 0.077659, 0.159059], [0.208722, 0.2658005, 0.070662, 0.125351], [0.282416, 0.0003514999999999907, 0.094216, 0.152739], [0.482976, 0.0003515000000000046, 0.096782, 0.114115], [0.58069, 0.07549199999999999, 0.131996, 0.176264], [0.719916, 0.44311849999999997, 0.140858, 0.167837], [0.649487, 0.667486, 0.14319, 0.18118], [0.5307835, 0.6516850000000001, 0.101679, 0.153792]], "categories": [1, 1, 1, 1, 1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2527.JPG", "objects": {"bbox": [[0.5788249999999999, 0.43082849999999995, 0.250466, 0.331461], [0.40695000000000003, 0.199087, 0.172808, 0.358146], [0.21478550000000002, 0.2320925, 0.135261, 0.278441], [0.0664645, 0.3209265, 0.155317, 0.372191], [0.0002334999999999976, 0.8641155, 0.059935, 0.133427]], "categories": [1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2528.JPG", "objects": {"bbox": [[0.361007, 0.7433289999999999, 0.049674, 0.119382], [0.35937549999999996, 0.6063905, 0.063899, 0.099719], [0.33465500000000004, 0.39571649999999997, 0.060634, 0.097261], [0.3873605, 0.174157, 0.074627, 0.125702], [0.454991, 0.15309, 0.067864, 0.093048], [0.544776, 0.1123595, 0.075326, 0.153441], [0.6231340000000001, 0.21453650000000002, 0.107276, 0.149579], [0.742071, 0.49051999999999996, 0.104244, 0.147472], [0.696595, 0.6653789999999999, 0.104244, 0.147472], [0.598881, 0.6776679999999999, 0.079524, 0.116222]], "categories": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2529.JPG", "objects": {"bbox": [[0.4832085, 0.47085699999999997, 0.213153, 0.495084], [0.45662349999999996, 0.0003515000000000046, 0.273787, 0.344101]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2530.JPG", "objects": {"bbox": [[0.20475700000000002, 0.10533699999999996, 0.528918, 0.703652], [0.010494500000000018, 0.8335675, 0.316231, 0.153441]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2531.JPG", "objects": {"bbox": [[0.232043, 0.0003509999999999902, 0.493004, 0.698736], [0.25606399999999996, 0.607795, 0.238106, 0.3125], [0.904618, 0.532655, 0.094916, 0.438904]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2532.JPG", "objects": {"bbox": [[0.1550835, 0.16502849999999997, 0.364739, 0.566713], [0.15508349999999999, 0.654495, 0.204291, 0.248244], [0.6317625, 0.52809, 0.233909, 0.451896], [0.837687, 0.8841295, 0.160914, 0.115871]], "categories": [1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2533.JPG", "objects": {"bbox": [[0.647621, 0.77809, 0.148088, 0.179424], [0.729477, 0.394663, 0.148088, 0.179424], [0.48880550000000006, 0.07198000000000002, 0.128265, 0.178722], [0.16861, 0.4413619999999999, 0.128498, 0.178722], [0.2115205, 0.75316, 0.134795, 0.216292], [0.2810165, 0.3437505, 0.096315, 0.129213]], "categories": [1, 1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2534.JPG", "objects": {"bbox": [[0.43167, 0.18855299999999997, 0.34305, 0.479986]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2535.JPG", "objects": {"bbox": [[0.2763525, 0.23314650000000003, 0.427705, 0.562851]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2536.JPG", "objects": {"bbox": [[0.25676299999999996, 0.031601500000000005, 0.423974, 0.605337]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2537.JPG", "objects": {"bbox": [[0.38036400000000004, 0.20400250000000003, 0.409282, 0.558287]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2538.JPG", "objects": {"bbox": [[0.5797575, 0.2998595, 0.086987, 0.130969], [0.625933, 0.43258450000000004, 0.086754, 0.126053], [0.3003735, 0.3827245, 0.081623, 0.119733], [0.467117, 0.250702, 0.064366, 0.13448], [0.7628265, 0.770716, 0.049207, 0.074438], [0.7623605, 0.7103225, 0.047341, 0.058989], [0.7409055, 0.6720505, 0.036147, 0.051615], [0.61917, 0.5930475, 0.04361, 0.076545]], "categories": [1, 1, 1, 1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2539.JPG", "objects": {"bbox": [[0.166745, 0.40765450000000003, 0.131996, 0.169593], [0.4099815, 0.14150300000000005, 0.108209, 0.233146], [0.569496, 0.22366550000000002, 0.153218, 0.214185], [0.6520525, 0.43679799999999996, 0.148321, 0.213132], [0.7117535, 0.66257, 0.066231, 0.12184]], "categories": [1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2540.JPG", "objects": {"bbox": [[0.610075, 0.523526, 0.317164, 0.41889], [0.4533585, 0.07443849999999996, 0.288013, 0.411517], [0.099814, 0.0003515000000000046, 0.219216, 0.359199]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2541.JPG", "objects": {"bbox": [[0.09678150000000002, 0.12043549999999997, 0.295243, 0.692065], [0.564133, 0.290379, 0.387826, 0.58427], [0.884328, 0.8827245, 0.115672, 0.117275]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2542.JPG", "objects": {"bbox": [[0.19239750000000003, 0.15800599999999998, 0.371735, 0.525632], [0.49580250000000003, 0.44382, 0.303871, 0.40625]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2543.JPG", "objects": {"bbox": [[0.367304, 0.311447, 0.061334, 0.073736], [0.5506065, 0.2675565, 0.044543, 0.073385], [0.5881535, 0.3089885, 0.061567, 0.120787], [0.60028, 0.48033700000000007, 0.051772, 0.076896]], "categories": [1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2544.JPG", "objects": {"bbox": [[0.43563450000000004, 0.29880549999999995, 0.266791, 0.436447], [0.311334, 0.014044500000000015, 0.161614, 0.351475], [0.4736475, 0.0807585, 0.193797, 0.227177]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2545.JPG", "objects": {"bbox": [[0.3034055, 0.607795, 0.358675, 0.363764]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2546.JPG", "objects": {"bbox": [[0.354711, 0.221559, 0.260728, 0.393258]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2547.JPG", "objects": {"bbox": [[0.3027055, 0.042135000000000006, 0.257463, 0.28125], [0.304338, 0.31039300000000003, 0.33139, 0.360604], [0.188433, 0.531601, 0.323694, 0.46243]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2548.JPG", "objects": {"bbox": [[0.24370300000000003, 0.255267, 0.441698, 0.553722]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2549.JPG", "objects": {"bbox": [[0.34304999999999997, 0.36060349999999997, 0.253032, 0.303371], [0.3050375, 0.1590595, 0.190765, 0.202949]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2550.JPG", "objects": {"bbox": [[0.2840485, 0.4146770000000001, 0.307369, 0.391854], [0.5781245, 0.523525, 0.133629, 0.277388]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2551.JPG", "objects": {"bbox": [[0.4029855, 0.09831449999999997, 0.381063, 0.542135]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2552.JPG", "objects": {"bbox": [[0.13083, 0.04424149999999999, 0.36334, 0.612711], [0.5088615, 0.057233000000000034, 0.374767, 0.601826], [0.3183305, 0.5832165, 0.332789, 0.243329]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2553.JPG", "objects": {"bbox": [[0.21175349999999998, 0.18750049999999996, 0.530317, 0.602879], [0.0002329999999999971, 0.0003515000000000046, 0.163246, 0.177317]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2554.JPG", "objects": {"bbox": [[0.27238799999999996, 0.016151499999999985, 0.524254, 0.754213], [0.8346545, 0.667486, 0.165345, 0.332514]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2555.JPG", "objects": {"bbox": [[0.29734099999999997, 0.1580055, 0.154618, 0.272823], [0.4785445, 0.387641, 0.171175, 0.20014]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2556.JPG", "objects": {"bbox": [[0.38666, 0.6755615, 0.113806, 0.199087], [0.4395985, 0.27177, 0.081157, 0.128862], [0.5093285, 0.3844805, 0.065765, 0.101475], [0.560168, 0.010533500000000001, 0.102612, 0.103933], [0.623134, 0.135534, 0.073228, 0.11868], [0.8003725, 0.269312, 0.111241, 0.106742]], "categories": [1, 1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2557.JPG", "objects": {"bbox": [[0.43166950000000004, 0.10744399999999998, 0.383629, 0.672402]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2558.JPG", "objects": {"bbox": [[0.30806900000000004, 0.16257, 0.258396, 0.382022], [0.5111935000000001, 0.496489, 0.206157, 0.294944]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2559.JPG", "objects": {"bbox": [[0.2451025, 0.39922700000000005, 0.164879, 0.221208], [0.20942099999999997, 0.6825844999999999, 0.15695, 0.189607], [0.49113749999999995, 0.09234499999999998, 0.177239, 0.261236], [0.556436, 0.379565, 0.151586, 0.16257], [0.800373, 0.708217, 0.163246, 0.20014]], "categories": [1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2560.JPG", "objects": {"bbox": [[0.26305999999999996, 0.3455055, 0.104944, 0.113413], [0.24277, 0.4568114999999999, 0.097948, 0.115871], [0.427939, 0.43925600000000004, 0.091884, 0.142556], [0.570429, 0.510534, 0.11334, 0.126404], [0.5431435, 0.6379919999999999, 0.098647, 0.174508]], "categories": [1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2561.JPG", "objects": {"bbox": [[0.19146399999999997, 0.1320225, 0.190532, 0.312851], [0.3579755, 0.275281, 0.149487, 0.213132], [0.49417049999999996, 0.28335699999999997, 0.247201, 0.27177], [0.4612875, 0.6709965, 0.197761, 0.245787], [0.484841, 0.5667135, 0.15695, 0.097261]], "categories": [1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2562.JPG", "objects": {"bbox": [[0.444963, 0.27528149999999996, 0.081856, 0.166081], [0.510495, 0.28581500000000004, 0.072994, 0.13448], [0.350047, 0.6755615, 0.091884, 0.125351], [0.659748, 0.468399, 0.11264, 0.12184], [0.6310635, 0.6053375000000001, 0.089319, 0.087781]], "categories": [1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2563.JPG", "objects": {"bbox": [[0.34398300000000004, 0.26018300000000005, 0.405084, 0.633076]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2564.JPG", "objects": {"bbox": [[0.185401, 0.10182599999999997, 0.373368, 0.792486], [0.520523, 0.12640449999999998, 0.309468, 0.755267]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2565.JPG", "objects": {"bbox": [[0.2870805, 0.007022499999999987, 0.503265, 0.602879], [0.1261655, 0.573736, 0.398321, 0.41889]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2566.JPG", "objects": {"bbox": [[0.385028, 0.5421345, 0.16278, 0.232795], [0.256763, 0.3163625, 0.097248, 0.189607], [0.35098, 0.250702, 0.117304, 0.20014], [0.333722, 0.031601500000000005, 0.172808, 0.204003]], "categories": [1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2567.JPG", "objects": {"bbox": [[0.29267699999999996, 0.12745800000000002, 0.345382, 0.507022], [0.01352650000000001, 0.00035099999999999715, 0.191931, 0.064958], [0.792677, 0.20505649999999997, 0.08792, 0.187149]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2568.JPG", "objects": {"bbox": [[0.40065300000000004, 0.0003515000000000046, 0.36334, 0.354635], [0.42700499999999997, 0.40976100000000004, 0.27542, 0.40625], [0.193097, 0.4975415000000001, 0.264226, 0.410815]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2569.JPG", "objects": {"bbox": [[0.14482250000000002, 0.330407, 0.371035, 0.44698], [0.26469200000000004, 0.7889745, 0.245802, 0.196629]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2571.JPG", "objects": {"bbox": [[0.585821, 0.445225, 0.038946, 0.060744], [0.7143185, 0.35182599999999997, 0.038713, 0.048806], [0.7185165, 0.401685, 0.039879, 0.045646], [0.6963625, 0.294593, 0.052705, 0.056882], [0.582556, 0.373595, 0.028918, 0.038624], [0.187733, 0.5807585, 0.065998, 0.074789]], "categories": [1, 1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2572.JPG", "objects": {"bbox": [[0.24207050000000002, 0.492978, 0.131297, 0.165028], [0.240439, 0.249649, 0.101912, 0.136938], [0.5844215, 0.5396765, 0.098647, 0.161517], [0.6893655, 0.3711375, 0.142957, 0.155899], [0.677705, 0.22717700000000002, 0.126632, 0.148876], [0.6380595, 0.031601500000000005, 0.162313, 0.182935]], "categories": [1, 1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2573.JPG", "objects": {"bbox": [[0.42000899999999997, 0.492978, 0.216418, 0.29389], [0.38036400000000004, 0.10182550000000001, 0.177472, 0.219101], [0.5415110000000001, 0.29986, 0.095616, 0.139396]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2574.JPG", "objects": {"bbox": [[0.413946, 0.612359, 0.217118, 0.24684], [0.3959885, 0.3665735, 0.200793, 0.244733], [0.34071799999999997, 0.06671350000000001, 0.27472, 0.285815], [0.24673500000000004, 0.864115, 0.121968, 0.132022]], "categories": [1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2575.JPG", "objects": {"bbox": [[0.08652, 0.48700849999999996, 0.126866, 0.168539], [0.552472, 0.7201540000000001, 0.114972, 0.203652], [0.6240675, 0.3851825, 0.147621, 0.217697], [0.567164, 0.19557599999999997, 0.151586, 0.193118], [0.5074625, 0.059690499999999994, 0.142957, 0.201545], [0.3500465, 0.008076, 0.130131, 0.181882], [0.641791, 0.1228935, 0.080224, 0.119733]], "categories": [1, 1, 1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2577.JPG", "objects": {"bbox": [[0.30503800000000003, 0.5491575000000001, 0.1243, 0.153441], [0.433302, 0.757373, 0.102146, 0.152388], [0.3477145, 0.370084, 0.108909, 0.139396], [0.4519595, 0.09585700000000001, 0.097481, 0.136236], [0.5027980000000001, 0.23665700000000003, 0.102612, 0.092346], [0.6940299999999999, 0.21558950000000002, 0.114972, 0.172051], [0.6037785, 0.007022500000000001, 0.089319, 0.122893]], "categories": [1, 1, 1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2578.JPG", "objects": {"bbox": [[0.202426, 0.5291435, 0.104244, 0.094803], [0.1798035, 0.3514745, 0.121269, 0.168539], [0.260728, 0.2025985, 0.09958, 0.127809], [0.427006, 0.005617999999999998, 0.123134, 0.136938], [0.5146925, 0.07057600000000001, 0.102379, 0.155548], [0.7131535, 0.3742975, 0.115205, 0.130267], [0.670709, 0.20365149999999999, 0.107276, 0.107795], [0.683769, 0.3103935, 0.089552, 0.098315], [0.6161384999999999, 0.6604635, 0.078591, 0.139045]], "categories": [1, 1, 1, 1, 1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2579.JPG", "objects": {"bbox": [[0.0002329999999999971, 0.8827245, 0.194496, 0.114817], [0.30503749999999996, 0.27773899999999996, 0.249067, 0.383778], [0.48647399999999996, 0.47893250000000004, 0.231576, 0.337079], [0.8470145, 0.667486, 0.152985, 0.332514]], "categories": [1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2580.JPG", "objects": {"bbox": [[0.4270055, 0.0712785, 0.202425, 0.259129], [0.3323225, 0.418188, 0.227845, 0.347612], [0.42933750000000004, 0.7447334999999999, 0.207789, 0.242275]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2581.JPG", "objects": {"bbox": [[0.305037, 0.49894650000000007, 0.248134, 0.239817], [0.2880125, 0.334972, 0.191465, 0.16257], [0.28708, 0.0898875, 0.211054, 0.224017]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2582.JPG", "objects": {"bbox": [[0.677705, 0.234199, 0.163246, 0.286868], [0.41534550000000003, 0.377107, 0.232043, 0.338132], [0.31133350000000004, 0.6931185, 0.211521, 0.222261]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2583.JPG", "objects": {"bbox": [[0.11777000000000001, 0.611306, 0.118004, 0.173104], [0.153451, 0.1214885, 0.146222, 0.206461], [0.4496265, 0.1566015, 0.183769, 0.222963], [0.623135, 0.5726829999999999, 0.16791, 0.233848], [0.0002334999999999976, 0.6028795, 0.059235, 0.160463]], "categories": [1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2584.JPG", "objects": {"bbox": [[0.12546649999999998, 0.461376, 0.108909, 0.116924], [0.26492550000000004, 0.46664350000000004, 0.079757, 0.115169], [0.323694, 0.673104, 0.041278, 0.129916], [0.28404850000000004, 0.147472, 0.076259, 0.148876], [0.46898350000000005, 0.15309, 0.102845, 0.153792], [0.58209, 0.409761, 0.114272, 0.141854]], "categories": [1, 1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2585.JPG", "objects": {"bbox": [[0.10051249999999999, 0.263694, 0.203825, 0.355688], [0.4832085, 0.5165025000000001, 0.211521, 0.326545]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2586.JPG", "objects": {"bbox": [[0.2957095, 0.40519700000000003, 0.088619, 0.145014], [0.19146449999999998, 0.6299155000000001, 0.111241, 0.141503], [0.284748, 0.708216, 0.058302, 0.096208], [0.5820890000000001, 0.5270370000000001, 0.093284, 0.142556]], "categories": [1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2587.JPG", "objects": {"bbox": [[0.47364700000000004, 0.689607, 0.148088, 0.208216], [0.5921175000000001, 0.7974015, 0.098647, 0.146067], [0.589086, 0.330407, 0.149254, 0.238764]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2588.JPG", "objects": {"bbox": [[0.5680974999999999, 0.41924200000000006, 0.196595, 0.25632], [0.3127335, 0.2728235, 0.244403, 0.346559]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2590.JPG", "objects": {"bbox": [[0.575793, 0.47893250000000004, 0.060634, 0.069171]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2591.JPG", "objects": {"bbox": [[0.627099, 0.6063905, 0.141558, 0.161517], [0.5711285, 0.11587100000000002, 0.108909, 0.20611], [0.44333, 0.22366549999999996, 0.126166, 0.173455], [0.1854015, 0.7201545, 0.098647, 0.122893], [0.2507, 0.5948035, 0.078358, 0.062149]], "categories": [1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2592.JPG", "objects": {"bbox": [[0.3127335, 0.39115200000000006, 0.235075, 0.348666], [0.553171, 0.16362400000000002, 0.178172, 0.407654]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2593.JPG", "objects": {"bbox": [[0.4162775000000001, 0.41116600000000003, 0.265159, 0.33111]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2594.JPG", "objects": {"bbox": [[0.2793845, 0.22612349999999998, 0.191231, 0.204705]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2595.JPG", "objects": {"bbox": [[0.223414, 0.226124, 0.15695, 0.201194], [0.753731, 0.555126, 0.14319, 0.158006]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2596.JPG", "objects": {"bbox": [[0.42094200000000004, 0.22015400000000002, 0.294076, 0.40625]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2597.JPG", "objects": {"bbox": [[0.39435599999999993, 0.39466300000000004, 0.270056, 0.299508]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2598.JPG", "objects": {"bbox": [[0.33768699999999996, 0.428722, 0.294776, 0.376756]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2878.JPG", "objects": {"bbox": [[0.08745349999999999, 0.357093, 0.308535, 0.421348], [0.527519, 0.37359600000000004, 0.15625, 0.301966], [0.7607275, 0.504564, 0.226213, 0.464888]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2883.JPG", "objects": {"bbox": [[0.10844250000000001, 0.2647475, 0.125933, 0.159059], [0.41068099999999996, 0.1530895, 0.115438, 0.198385], [0.3477145, 0.276334, 0.076959, 0.119382], [0.5104945000000001, 0.37359549999999997, 0.082323, 0.118329], [0.20405800000000002, 0.5080755, 0.073694, 0.118329], [0.14249099999999998, 0.6218395000000001, 0.126866, 0.149579], [0.253731, 0.886236, 0.085588, 0.113764], [0.5764929999999999, 0.6590585, 0.08722, 0.092697]], "categories": [1, 1, 1, 1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2884.JPG", "objects": {"bbox": [[0.14179100000000003, 0.516503, 0.254198, 0.281952], [0.3330225, 0.12991600000000003, 0.347015, 0.588834], [0.602146, 0.7854635, 0.25583, 0.214537]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2885.JPG", "objects": {"bbox": [[0.15811550000000002, 0.3374295, 0.228545, 0.298455], [0.3570435, 0.74684, 0.141091, 0.20611], [0.5750930000000001, 0.3009125, 0.154618, 0.183989], [0.6714085, 0.029143000000000002, 0.233209, 0.375], [0.868004, 0.4202955, 0.131996, 0.214185]], "categories": [1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2886.JPG", "objects": {"bbox": [[0.29874049999999996, 0.26369349999999997, 0.361007, 0.482093], [0.6410915, 0.8886940000000001, 0.233909, 0.111306], [0.9535915, 0.15905950000000002, 0.046409, 0.219101]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2887.JPG", "objects": {"bbox": [[0.507463, 0.07373600000000001, 0.158582, 0.246138], [0.46758350000000004, 0.3268965, 0.200793, 0.306531], [0.342351, 0.5129915, 0.248134, 0.288975], [0.6744399999999999, 0.801966, 0.198228, 0.198034]], "categories": [1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2893.JPG", "objects": {"bbox": [[0.333722, 0.1134125, 0.148088, 0.249649], [0.2723885, 0.2250705, 0.096315, 0.166081], [0.453592, 0.320927, 0.101912, 0.158006], [0.47947749999999995, 0.545646, 0.138993, 0.186096]], "categories": [1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2894.JPG", "objects": {"bbox": [[0.2903445, 0.14501400000000003, 0.357743, 0.658006], [0.18073699999999998, 0.4905195, 0.231576, 0.428371], [0.7033585, 0.5221205, 0.213619, 0.465941]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2895.JPG", "objects": {"bbox": [[0.14179150000000001, 0.00035100000000001796, 0.225513, 0.323034], [0.068797, 0.123947, 0.134328, 0.24368], [0.33465500000000004, 0.2461375, 0.15555, 0.232795], [0.40928099999999995, 0.5783005, 0.185868, 0.265801]], "categories": [1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2896.JPG", "objects": {"bbox": [[0.2444025, 0.25772500000000004, 0.388993, 0.612008]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2897.JPG", "objects": {"bbox": [[0.00023300000000001098, 0.004564499999999971, 0.353078, 0.579705], [0.3826955, 0.4087075, 0.249067, 0.456461]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2898.JPG", "objects": {"bbox": [[0.12383350000000001, 0.117977, 0.164879, 0.39361], [0.356343, 0.141503, 0.214086, 0.33743], [0.510494, 0.44487350000000003, 0.237174, 0.353581]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2899.JPG", "objects": {"bbox": [[0.24976699999999996, 0.00210699999999997, 0.533582, 0.74368]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2900.JPG", "objects": {"bbox": [[0.4162785, 0.269312, 0.256763, 0.423806]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2901.JPG", "objects": {"bbox": [[0.354711, 0.291784, 0.211754, 0.374298], [0.00023250000000000354, 0.442767, 0.096549, 0.301966], [0.8805975, 0.641503, 0.119403, 0.352528], [0.4736475, 0.665028, 0.049207, 0.100772]], "categories": [1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2902.JPG", "objects": {"bbox": [[0.139459, 0.0337075, 0.195196, 0.315309], [0.4643189999999999, 0.597261, 0.260728, 0.34059], [0.5874535000000001, 0.3349725, 0.172575, 0.262289], [0.25303200000000003, 0.35147399999999995, 0.05597, 0.092346]], "categories": [1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2905.JPG", "objects": {"bbox": [[0.34864700000000004, 0.0477525, 0.14389, 0.300211], [0.45359150000000004, 0.449789, 0.191465, 0.229284]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2906.JPG", "objects": {"bbox": [[0.21245400000000003, 0.34304799999999996, 0.501632, 0.654494]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2907.JPG", "objects": {"bbox": [[0.1814365, 0.0003510000000000457, 0.423041, 0.70927], [0.791045, 0.9273175, 0.10028, 0.072683]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2908.JPG", "objects": {"bbox": [[0.406949, 0.17310349999999997, 0.38806, 0.679073], [0.802006, 0.4719095, 0.197994, 0.527739]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2909.JPG", "objects": {"bbox": [[0.39132449999999996, 0.117977, 0.291045, 0.43118], [0.298041, 0.5094799999999999, 0.304104, 0.39677]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2910.JPG", "objects": {"bbox": [[0.2357745, 0.17310400000000004, 0.170243, 0.245084], [0.5261195000000001, 0.09129199999999998, 0.184235, 0.29986], [0.625466, 0.377107, 0.1875, 0.231742], [0.7220155, 0.6169239999999999, 0.186567, 0.27177], [0.6287315, 0.6158710000000001, 0.099347, 0.223666], [0.19076500000000002, 0.6018265, 0.10028, 0.114817], [0.123834, 0.7131314999999999, 0.114272, 0.197683]], "categories": [1, 1, 1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2911.JPG", "objects": {"bbox": [[0.2614275, 0.5526685, 0.111241, 0.168539], [0.22411400000000004, 0.3444525, 0.139226, 0.166081], [0.4130135, 0.1228935, 0.099813, 0.182935], [0.49580199999999996, 0.17766900000000002, 0.134328, 0.219452], [0.5797570000000001, 0.026686000000000015, 0.102612, 0.22507], [0.653451, 0.426264, 0.093284, 0.09375]], "categories": [1, 1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2912.JPG", "objects": {"bbox": [[0.266091, 0.47191000000000005, 0.151586, 0.183638], [0.356344, 0.7236659999999999, 0.116604, 0.182584], [0.42863850000000003, 0.177668, 0.107509, 0.21243], [0.5275190000000001, 0.1671345, 0.138526, 0.259129], [0.590485, 0.015098500000000015, 0.13153, 0.247191], [0.757696, 0.4262645, 0.102612, 0.107795], [0.741371, 0.647472, 0.039646, 0.156952]], "categories": [1, 1, 1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2913.JPG", "objects": {"bbox": [[0.3656715, 0.088834, 0.201493, 0.261236], [0.491838, 0.490519, 0.146922, 0.231742]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2914.JPG", "objects": {"bbox": [[0.4934695, 0.2401685, 0.377799, 0.494031]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2915.JPG", "objects": {"bbox": [[0.4503269999999999, 0.18995849999999997, 0.336054, 0.554775]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2916.JPG", "objects": {"bbox": [[0.4682835, 0.2015445, 0.168843, 0.354635], [0.6497195, 0.139045, 0.233909, 0.40309], [0.127799, 0.44487350000000003, 0.258162, 0.366573], [0.8696360000000001, 0.8416435, 0.130364, 0.158357]], "categories": [1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2917.JPG", "objects": {"bbox": [[0.18610100000000002, 0.202598, 0.639226, 0.627458]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2918.JPG", "objects": {"bbox": [[0.058535000000000004, 0.0003515000000000046, 0.834422, 0.616573], [0.0002334999999999976, 0.42169949999999995, 0.369403, 0.400281]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2919.JPG", "objects": {"bbox": [[0.19006500000000004, 0.08637600000000001, 0.715252, 0.806882]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2920.JPG", "objects": {"bbox": [[0.14179149999999996, 0.004564999999999986, 0.858209, 0.888694]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2921.JPG", "objects": {"bbox": [[0.2716885, 0.25877849999999997, 0.086287, 0.161517], [0.348648, 0.2998595, 0.072994, 0.130969], [0.5027984999999999, 0.4097615, 0.108675, 0.146419], [0.496502, 0.578301, 0.083256, 0.100772], [0.1914645, 0.6931174999999999, 0.098881, 0.146419], [0.8913245000000001, 0.024579, 0.034981, 0.060744], [0.7905785, 0.06495799999999999, 0.035681, 0.05302], [0.857043, 0.0291435, 0.029618, 0.051615]], "categories": [1, 1, 1, 1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2922.JPG", "objects": {"bbox": [[0.245102, 0.19908649999999997, 0.085588, 0.172051], [0.3290575, 0.2401685, 0.069963, 0.142907], [0.48320899999999994, 0.373595, 0.109608, 0.155548], [0.458256, 0.5466995, 0.090252, 0.089185], [0.429338, 0.714186, 0.033582, 0.055126], [0.15042, 0.635885, 0.10028, 0.155548], [0.891325, 0.007022500000000001, 0.040578, 0.066713], [0.856343, 0.009129000000000002, 0.028918, 0.050562], [0.78638, 0.04318849999999999, 0.039646, 0.050211]], "categories": [1, 1, 1, 1, 1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2923.JPG", "objects": {"bbox": [[0.0095615, 0.12640399999999996, 0.152519, 0.261236], [0.1588155, 0.19908699999999996, 0.119869, 0.222612], [0.420009, 0.4041435, 0.184468, 0.219803], [0.38736, 0.6499295, 0.145756, 0.176615], [0.3603075, 0.9318815, 0.033349, 0.062149], [0.00023300000000000057, 0.8886935, 0.038946, 0.105337]], "categories": [1, 1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2924.JPG", "objects": {"bbox": [[0.373367, 0.723666, 0.143424, 0.226826], [0.43097, 0.03265500000000002, 0.123134, 0.250702], [0.5571360000000001, 0.056179999999999994, 0.116604, 0.223666], [0.8393195, 0.17310450000000002, 0.160681, 0.259129], [0.824627, 0.45891850000000006, 0.165578, 0.189607]], "categories": [1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2925.JPG", "objects": {"bbox": [[0.288013, 0.30688150000000003, 0.353078, 0.593399]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2926.JPG", "objects": {"bbox": [[0.31903000000000004, 0.005618000000000012, 0.377332, 0.48139], [0.24277050000000003, 0.4884125, 0.315065, 0.372191]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2927.JPG", "objects": {"bbox": [[0.25069949999999996, 0.24613749999999995, 0.426073, 0.547753], [0.6753735000000001, 0.286868, 0.157649, 0.249298], [0.7187495, 0.8570925, 0.259795, 0.142907]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2928.JPG", "objects": {"bbox": [[0.31833050000000007, 0.0021070000000000255, 0.454991, 0.726124]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2929.JPG", "objects": {"bbox": [[0.27705250000000003, 0.074789, 0.371735, 0.64993]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2930.JPG", "objects": {"bbox": [[0.00023299999999998322, 0.2075135, 0.307136, 0.454003], [0.38829350000000007, 0.30582849999999995, 0.312733, 0.490169]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2931.JPG", "objects": {"bbox": [[0.27775150000000004, 0.2356035, 0.344683, 0.433989], [0.237407, 0.597261, 0.335354, 0.373244]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2932.JPG", "objects": {"bbox": [[0.4643185000000001, 0.32900300000000005, 0.332323, 0.488062]], "categories": [1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2933.JPG", "objects": {"bbox": [[0.333722, 0.45540700000000006, 0.085588, 0.096208], [0.308069, 0.5466995, 0.093284, 0.090239], [0.5811565000000001, 0.48490150000000004, 0.170243, 0.174157], [0.6201019999999999, 0.6836375, 0.103312, 0.115871], [0.388293, 0.7106745, 0.05597, 0.094803]], "categories": [1, 1, 1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2934.JPG", "objects": {"bbox": [[0.22271449999999998, 0.5466995, 0.321129, 0.428371], [0.505131, 0.43574450000000003, 0.288246, 0.553371], [0.31903, 0.1899575, 0.19916, 0.349719]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2935.JPG", "objects": {"bbox": [[0.4629195, 0.141503, 0.232509, 0.456812], [0.232043, 0.049157499999999965, 0.226912, 0.542135], [0.3346545, 0.642907, 0.271455, 0.328652]], "categories": [1, 1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2936.JPG", "objects": {"bbox": [[0.31833, 0.5797045, 0.241838, 0.280899], [0.36264, 0.3384835, 0.245802, 0.287921]], "categories": [1, 1]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2970.JPG", "objects": {"bbox": [[0.3766320000000001, 0.3279495, 0.446362, 0.511587], [0.08185600000000001, 0.0003505000000000036, 0.33209, 0.337079]], "categories": [2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2971.JPG", "objects": {"bbox": [[0.30433750000000004, 0.0003510000000000041, 0.418377, 0.244382]], "categories": [2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2972.JPG", "objects": {"bbox": [[0.3416515, 0.5340594999999999, 0.086987, 0.100421], [0.6068095, 0.5291429999999999, 0.066931, 0.08427], [0.5921179999999999, 0.647472, 0.058302, 0.091292]], "categories": [2, 2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2973.JPG", "objects": {"bbox": [[0.21478550000000002, 0.37359499999999995, 0.159515, 0.173104], [0.3913245, 0.103933, 0.127799, 0.199438], [0.5858215, 0.005617999999999998, 0.117537, 0.227528], [0.5058305, 0.46243000000000006, 0.142957, 0.182584], [0.2800845, 0.605337, 0.117537, 0.175562], [0.7017260000000001, 0.385183, 0.10028, 0.111306]], "categories": [2, 2, 2, 2, 2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2974.JPG", "objects": {"bbox": [[0.29500899999999997, 0.16151699999999997, 0.324394, 0.423806], [0.0025654999999999983, 0.4659405, 0.111241, 0.377107], [0.00023250000000000007, 0.04213449999999999, 0.045243, 0.283357], [0.7304105, 0.0115875, 0.213853, 0.254213]], "categories": [2, 2, 2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2975.JPG", "objects": {"bbox": [[0.377332, 0.06776700000000002, 0.33209, 0.382022], [0.551772, 0.5291429999999999, 0.234608, 0.393258]], "categories": [2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2976.JPG", "objects": {"bbox": [[0.446595, 0.363062, 0.080924, 0.101826], [0.49067150000000004, 0.46207850000000006, 0.075793, 0.083567], [0.4146455, 0.683637, 0.095849, 0.132374], [0.589786, 0.06074499999999999, 0.097248, 0.176966], [0.656716, 0.3384835, 0.054338, 0.085323], [0.766325, 0.41818849999999996, 0.083022, 0.102879]], "categories": [2, 2, 2, 2, 2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2977.JPG", "objects": {"bbox": [[0.38829250000000004, 0.36060400000000004, 0.264459, 0.373596], [0.6068095, 0.24824399999999996, 0.232509, 0.423806], [0.4948695, 0.19346900000000003, 0.059935, 0.135534]], "categories": [2, 2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2979.JPG", "objects": {"bbox": [[0.2833485, 0.49894700000000003, 0.223181, 0.40941], [0.41301299999999996, 0.26228949999999995, 0.325326, 0.483497]], "categories": [2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2981.JPG", "objects": {"bbox": [[0.3197295, 0.618329, 0.098881, 0.147472], [0.420009, 0.17907300000000004, 0.104478, 0.195576], [0.48554100000000006, 0.16362349999999998, 0.094216, 0.186447], [0.6690765000000001, 0.409761, 0.122901, 0.148876], [0.6310635, 0.5445924999999999, 0.092351, 0.100421], [0.46292, 0.385183, 0.033582, 0.083216]], "categories": [2, 2, 2, 2, 2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2982.JPG", "objects": {"bbox": [[0.5074624999999999, 0.05266799999999999, 0.404851, 0.492978], [0.352379, 0.4578655, 0.323694, 0.361657]], "categories": [2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2983.JPG", "objects": {"bbox": [[0.289413, 0.10393249999999998, 0.322994, 0.655899], [0.5104945, 0.04564600000000002, 0.287547, 0.61236], [0.39365649999999996, 0.7608849999999999, 0.147155, 0.233146]], "categories": [2, 2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2984.JPG", "objects": {"bbox": [[0.36870349999999996, 0.17907300000000004, 0.361007, 0.515098]], "categories": [2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2985.JPG", "objects": {"bbox": [[0.5174905, 0.11095550000000001, 0.275187, 0.434691]], "categories": [2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2986.JPG", "objects": {"bbox": [[0.4309695, 0.20505650000000003, 0.298741, 0.482093], [0.01655799999999999, 0.022121000000000002, 0.30014, 0.456812]], "categories": [2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2987.JPG", "objects": {"bbox": [[0.35937550000000007, 0.188553, 0.341651, 0.414326], [0.3393195, 0.5516155, 0.325093, 0.369733]], "categories": [2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2988.JPG", "objects": {"bbox": [[0.3020055, 0.30091350000000006, 0.316465, 0.481039]], "categories": [2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2989.JPG", "objects": {"bbox": [[0.24370349999999996, 0.2647475, 0.148321, 0.163975], [0.18843300000000002, 0.3781595, 0.141558, 0.166433], [0.302006, 0.6204355, 0.117304, 0.168539], [0.644123, 0.6393955, 0.148554, 0.167135], [0.56903, 0.5168535, 0.144356, 0.164677], [0.7047574999999999, 0.4002805, 0.154851, 0.193469], [0.618703, 0.2952945, 0.117304, 0.177669]], "categories": [2, 2, 2, 2, 2, 2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2992.JPG", "objects": {"bbox": [[0.8087685, 0.28616600000000003, 0.158815, 0.226826], [0.530783, 0.222261, 0.146922, 0.207514], [0.33185600000000004, 0.3093395, 0.145056, 0.186447], [0.6984605, 0.5765455, 0.105877, 0.134129], [0.39225699999999997, 0.5663625, 0.073694, 0.109199], [0.6919310000000001, 0.8114465, 0.044776, 0.103933]], "categories": [2, 2, 2, 2, 2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2993.JPG", "objects": {"bbox": [[0.26609099999999997, 0.426264, 0.272388, 0.345154], [0.6497205, 0.256672, 0.244869, 0.398876], [0.374301, 0.8978235000000001, 0.189132, 0.099719]], "categories": [2, 2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2994.JPG", "objects": {"bbox": [[0.0034985000000000016, 0.09691, 0.243237, 0.395014], [0.48554149999999996, 0.2517555, 0.273787, 0.405197], [0.2800845, 0.760885, 0.210121, 0.22823]], "categories": [2, 2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2995.JPG", "objects": {"bbox": [[0.2497665, 0.24473300000000003, 0.159515, 0.319522], [0.38129599999999997, 0.5, 0.217118, 0.3125]], "categories": [2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2996.JPG", "objects": {"bbox": [[0.44193049999999995, 0.1274575, 0.118237, 0.183989], [0.18330250000000003, 0.5775985, 0.136427, 0.227879], [0.639226, 0.563904, 0.123134, 0.161868], [0.679804, 0.3862365, 0.104244, 0.165379], [0.631763, 0.48349699999999995, 0.062966, 0.084972], [0.539645, 0.7872189999999999, 0.05084, 0.130618], [0.21408649999999999, 0.23665749999999997, 0.100979, 0.166081]], "categories": [2, 2, 2, 2, 2, 2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2997.JPG", "objects": {"bbox": [[0.357976, 0.291784, 0.229478, 0.376756], [0.00023350000000000454, 0.5691714999999999, 0.098881, 0.326545]], "categories": [2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2998.JPG", "objects": {"bbox": [[0.37570000000000003, 0.275281, 0.267024, 0.411868]], "categories": [2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2999.JPG", "objects": {"bbox": [[0.3889925, 0.3490175, 0.171175, 0.239817], [0.411147, 0.12464849999999998, 0.16861, 0.223315], [0.3080685, 0.5667135, 0.152519, 0.215239], [0.22341450000000002, 0.6674855, 0.130597, 0.177669], [0.5408115, 0.0003509999999999902, 0.176539, 0.261938]], "categories": [2, 2, 2, 2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3000.JPG", "objects": {"bbox": [[0.43959899999999996, 0.0003510000000000041, 0.192164, 0.226826], [0.5447755000000001, 0.2025985, 0.233909, 0.196629], [0.4689835, 0.39922749999999996, 0.252099, 0.300913]], "categories": [2, 2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3002.JPG", "objects": {"bbox": [[0.571129, 0.2025985, 0.216884, 0.308989], [0.7849815, 0.46383450000000004, 0.100979, 0.176615], [0.659048, 0.5105335, 0.11334, 0.114817]], "categories": [2, 2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3003.JPG", "objects": {"bbox": [[0.4083495, 0.14044949999999998, 0.163479, 0.221559], [0.382696, 0.3865875, 0.157416, 0.191713], [0.3136655, 0.373596, 0.072295, 0.156952], [0.444263, 0.699087, 0.08722, 0.125], [0.7747195, 0.369031, 0.065299, 0.154494], [0.22108200000000003, 0.5596909999999999, 0.116604, 0.158006]], "categories": [2, 2, 2, 2, 2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3004.JPG", "objects": {"bbox": [[0.4629195, 0.012640000000000012, 0.247435, 0.303722], [0.4503265, 0.37359549999999997, 0.239739, 0.291433], [0.34305050000000004, 0.356039, 0.123601, 0.251756], [0.21874949999999999, 0.6509830000000001, 0.181903, 0.213132]], "categories": [2, 2, 2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3005.JPG", "objects": {"bbox": [[0.31436600000000003, 0.298806, 0.279384, 0.442416], [0.578125, 0.316362, 0.275886, 0.49368], [0.004897499999999999, 0.9097615000000001, 0.119869, 0.087781]], "categories": [2, 2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3006.JPG", "objects": {"bbox": [[0.571829, 0.38764049999999994, 0.29944, 0.417837], [0.776353, 0.8160115, 0.222248, 0.183989]], "categories": [2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3007.JPG", "objects": {"bbox": [[0.2763525, 0.022121000000000002, 0.273787, 0.411166], [0.5321835, 0.366573, 0.278451, 0.46243]], "categories": [2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3008.JPG", "objects": {"bbox": [[0.592817, 0.3911515, 0.292444, 0.372191]], "categories": [2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3009.JPG", "objects": {"bbox": [[0.17607299999999998, 0.42626450000000005, 0.158582, 0.262289], [0.3027055, 0.318469, 0.131297, 0.230688], [0.4675835, 0.13693799999999998, 0.161847, 0.30934], [0.6823695000000001, 0.256672, 0.152985, 0.327598], [0.833955, 0.27879200000000004, 0.062034, 0.202598], [0.35634350000000004, 0.742276, 0.071595, 0.126404], [0.28568099999999996, 0.729283, 0.078358, 0.11236]], "categories": [2, 2, 2, 2, 2, 2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3010.JPG", "objects": {"bbox": [[0.0002334999999999976, 0.00035100000000001796, 0.296175, 0.472612], [0.3400185, 0.1274575, 0.513293, 0.663975]], "categories": [2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3011.JPG", "objects": {"bbox": [[0.285681, 0.1555475, 0.616604, 0.759831]], "categories": [2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3012.JPG", "objects": {"bbox": [[0.2544305, 0.43785099999999993, 0.216185, 0.248244], [0.535448, 0.30793499999999996, 0.11194, 0.210674], [0.7280785, 0.32689599999999996, 0.152519, 0.266854], [0.8556435, 0.5972615, 0.123601, 0.141503], [0.760728, 0.643961, 0.08792, 0.073736], [0.292677, 0.7247195, 0.103312, 0.130969]], "categories": [2, 2, 2, 2, 2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3013.JPG", "objects": {"bbox": [[0.22341400000000003, 0.21313200000000002, 0.116604, 0.176966], [0.5093285, 0.030548000000000006, 0.132463, 0.210674], [0.253032, 0.581461, 0.16791, 0.245084], [0.3330225, 0.45540749999999997, 0.086287, 0.105337], [0.466651, 0.182936, 0.079524, 0.108848], [0.6310635, 0.25316, 0.088619, 0.119382], [0.7460355000000001, 0.545646, 0.098647, 0.092346], [0.42793800000000004, 0.8195224999999999, 0.073228, 0.130969], [0.736707, 0.8591989999999999, 0.052938, 0.096208]], "categories": [2, 2, 2, 2, 2, 2, 2, 2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3014.JPG", "objects": {"bbox": [[0.5471085, 0.15800550000000002, 0.372201, 0.578301], [0.432602, 0.5783005, 0.229478, 0.280899], [0.0002334999999999976, 0.7187494999999999, 0.112873, 0.275281], [0.8889925, 0.742275, 0.111007, 0.25632]], "categories": [2, 2, 2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3015.JPG", "objects": {"bbox": [[0.40531700000000004, 0.2833565, 0.36334, 0.484551], [0.8260259999999999, 0.8451550000000001, 0.173974, 0.154494]], "categories": [2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3016.JPG", "objects": {"bbox": [[0.55014, 0.0035109999999999864, 0.239506, 0.276334], [0.5524715, 0.30442349999999996, 0.279851, 0.385183], [0.4186095000000001, 0.581812, 0.357743, 0.388694]], "categories": [2, 2, 2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3017.JPG", "objects": {"bbox": [[0.49486949999999996, 0.27984549999999997, 0.398787, 0.496489]], "categories": [2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3018.JPG", "objects": {"bbox": [[0.40461700000000006, 0.400632, 0.236474, 0.253862]], "categories": [2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3019.JPG", "objects": {"bbox": [[0.37733250000000007, 0.23911500000000002, 0.459655, 0.661166]], "categories": [2]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 22.00.21.jpeg", "objects": {"bbox": [[0.0010419999999999874, 0.0031255000000000033, 0.480208, 0.375781], [0.017708500000000016, 0.384375, 0.522917, 0.266406], [0.2885415, 0.5031245, 0.535417, 0.376563], [0.078125, 0.667188, 0.161458, 0.116406]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 22.02.49.jpeg", "objects": {"bbox": [[0.09062549999999997, 0.15625049999999996, 0.864583, 0.657031], [0.0010420000000000013, 0.1015625, 0.080208, 0.574219]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 22.19.22.jpeg", "objects": {"bbox": [[0.45520800000000006, 0.17578100000000002, 0.407292, 0.298438], [0.10625000000000001, 0.45781249999999996, 0.501042, 0.386719]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 22.19.29.jpeg", "objects": {"bbox": [[0.08020849999999999, 0.2906255, 0.404167, 0.310937], [0.6416665, 0.33515649999999997, 0.346875, 0.228125]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 22.25.52.jpeg", "objects": {"bbox": [[0.29270799999999997, 0.329688, 0.39375, 0.272656], [0.8395835, 0.327344, 0.160417, 0.227344]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 22.25.54.jpeg", "objects": {"bbox": [[0.007291500000000006, 0.0007814999999999905, 0.484375, 0.349219], [0.31666700000000003, 0.4945315, 0.498958, 0.350781], [0.03854149999999995, 0.36015600000000003, 0.560417, 0.276562], [0.11875, 0.6570315, 0.15625, 0.109375]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 23.07.31.jpeg", "objects": {"bbox": [[0.3416665, 0.2859375, 0.283333, 0.198437]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 23.07.36.jpeg", "objects": {"bbox": [[0.0289065, 0.2, 0.328125, 0.538542], [0.3390625, 0.1374995, 0.567187, 0.828125], [0.09218699999999999, 0.0010415000000000008, 0.333594, 0.195833]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 23.07.40.jpeg", "objects": {"bbox": [[0.08229149999999999, 0.2929695, 0.408333, 0.292187], [0.6385419999999999, 0.31640650000000003, 0.342708, 0.238281]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 23.07.41.jpeg", "objects": {"bbox": [[0.0989585, 0.2781255, 0.753125, 0.375781]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.01.06.jpeg", "objects": {"bbox": [[0.1177085, 0.200781, 0.860417, 0.558594]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.02.12.jpeg", "objects": {"bbox": [[0.08541650000000006, 0.2210935, 0.866667, 0.589063]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.42.32.jpeg", "objects": {"bbox": [[0.6257815, 0.7781245, 0.225781, 0.221875], [0.3085945, 0.157292, 0.142187, 0.255208]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.44.10.jpeg", "objects": {"bbox": [[0.18906249999999997, 0.0010415000000000285, 0.651563, 0.934375]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.44.14.jpeg", "objects": {"bbox": [[0.12421899999999997, 0.0010419999999999874, 0.652344, 0.9]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.44.15 (1).jpeg", "objects": {"bbox": [[0.05312449999999996, 0.13749999999999998, 0.728125, 0.429688], [0.32083300000000003, 0.708594, 0.41875, 0.291406]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.44.15.jpeg", "objects": {"bbox": [[0.042708000000000024, 0.11640649999999997, 0.9125, 0.685937]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.44.16.jpeg", "objects": {"bbox": [[0.08541700000000002, 0.185156, 0.813542, 0.560156], [0.8687499999999999, 0.402344, 0.13125, 0.226562]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.44.31.jpeg", "objects": {"bbox": [[0.05312450000000002, 0.05156299999999997, 0.903125, 0.757812]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.45.27.jpeg", "objects": {"bbox": [[0.35625, 0.0010419999999999874, 0.591406, 0.848958], [0.0007810000000000039, 0.5552079999999999, 0.289844, 0.39375]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.45.45.jpeg", "objects": {"bbox": [[0.10520850000000004, 0.21328100000000005, 0.858333, 0.597656]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.02.jpeg", "objects": {"bbox": [[0.0010415000000000285, 0.09843750000000001, 0.934375, 0.717187]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.14.jpeg", "objects": {"bbox": [[0.1499995, 0.21718749999999998, 0.516667, 0.404687]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.17.jpeg", "objects": {"bbox": [[0.20312499999999994, 0.12395849999999997, 0.698438, 0.829167], [0.314844, 0.0010419999999999943, 0.29375, 0.123958]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.18 (1).jpeg", "objects": {"bbox": [[0.19843800000000006, 0.15520800000000007, 0.622656, 0.819792], [0.338281, 0.0010420000000000013, 0.272656, 0.173958]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.18.jpeg", "objects": {"bbox": [[0.1874995, 0.1890625, 0.397917, 0.275781]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.19 (1).jpeg", "objects": {"bbox": [[0.366406, 0.007291500000000006, 0.5625, 0.954167], [0.0007810000000000039, 0.8010415000000001, 0.392188, 0.196875]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.19.jpeg", "objects": {"bbox": [[0.0864585, 0.178906, 0.828125, 0.639844]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.20 (1).jpeg", "objects": {"bbox": [[0.10103005500000004, 0.23761052, 0.35489285, 0.23683524]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.20.jpeg", "objects": {"bbox": [[0.0010419999999999874, 0.04375000000000001, 0.907292, 0.753906]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.21 (1).jpeg", "objects": {"bbox": [[0.37500049999999996, 0.0007815000000000183, 0.421875, 0.313281], [0.004167000000000004, 0.41484449999999995, 0.267708, 0.204687], [0.42708350000000006, 0.49218749999999994, 0.152083, 0.080469]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.21 (2).jpeg", "objects": {"bbox": [[0.21484399999999998, 0.13124999999999998, 0.653906, 0.823958], [0.339063, 0.0010415000000000008, 0.285156, 0.145833]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.21 (3).jpeg", "objects": {"bbox": [[0.006250000000000033, 0.039063000000000014, 0.923958, 0.716406]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.21.jpeg", "objects": {"bbox": [[0.09895849999999998, 0.16874949999999997, 0.403125, 0.280469]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.22 (1).jpeg", "objects": {"bbox": [[0.1802085, 0.16328149999999997, 0.541667, 0.404687], [0.290625, 0.6656255, 0.301042, 0.253125], [0.005208500000000005, 0.2062505, 0.196875, 0.132031]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.22.jpeg", "objects": {"bbox": [[0.127083, 0.16718700000000003, 0.432292, 0.298438]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.46.48.jpeg", "objects": {"bbox": [[0.4177085, 0.27265649999999997, 0.103125, 0.060937], [0.294792, 0.3046875, 0.125, 0.063281], [0.6020835, 0.35, 0.139583, 0.052344]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.00.jpeg", "objects": {"bbox": [[0.41770799999999997, 0.3031245, 0.107292, 0.061719], [0.3364585, 0.3578125, 0.122917, 0.071875], [0.7374999999999999, 0.477344, 0.048958, 0.041406], [0.6104160000000001, 0.3109375, 0.151042, 0.055469], [0.4416665, 0.48906299999999997, 0.053125, 0.05625]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.23.jpeg", "objects": {"bbox": [[0.4822915, 0.336719, 0.108333, 0.101562], [0.5895834999999999, 0.383594, 0.128125, 0.08125]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.29.jpeg", "objects": {"bbox": [[0.497917, 0.33125, 0.119792, 0.092188], [0.6114585, 0.37734399999999996, 0.134375, 0.070312], [0.2614585, 0.4742185, 0.135417, 0.065625]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.41.jpeg", "objects": {"bbox": [[0.509375, 0.285937, 0.123958, 0.102344], [0.535417, 0.39375000000000004, 0.138542, 0.085938]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.48.jpeg", "objects": {"bbox": [[0.49791650000000004, 0.2906245, 0.116667, 0.086719], [0.558333, 0.382032, 0.1125, 0.082812]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.57.jpeg", "objects": {"bbox": [[0.574797885, 0.36890637, 0.12485903, 0.07423492], [0.6383449000000001, 0.44180602, 0.1510454, 0.07738548]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.58.jpeg", "objects": {"bbox": [[0.5218745, 0.2929685, 0.096875, 0.117969], [0.3937495, 0.407813, 0.104167, 0.085156], [0.603125, 0.396875, 0.1375, 0.08125], [0.23020850000000004, 0.492969, 0.115625, 0.072656]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.59 (1).jpeg", "objects": {"bbox": [[0.388542, 0.3265625, 0.11875, 0.076563], [0.28020799999999996, 0.359375, 0.117708, 0.075], [0.5895835, 0.39375, 0.141667, 0.064844], [0.325, 0.515625, 0.088542, 0.066406]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.59 (2).jpeg", "objects": {"bbox": [[0.367708, 0.38906250000000003, 0.11875, 0.084375], [0.28645849999999995, 0.4445315, 0.127083, 0.079687], [0.5874999999999999, 0.399219, 0.1, 0.053906], [0.661458, 0.5789059999999999, 0.0875, 0.06875], [0.3593755, 0.5843754999999999, 0.071875, 0.067187]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.59.jpeg", "objects": {"bbox": [[0.3177085, 0.3726565, 0.108333, 0.086719], [0.264583, 0.453125, 0.111458, 0.075], [0.6906249999999999, 0.510156, 0.08125, 0.078906], [0.547917, 0.3562495, 0.061458, 0.042969]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.00.jpeg", "objects": {"bbox": [[0.16249999999999998, 0.367187, 0.11875, 0.13125], [0.573958, 0.372656, 0.1875, 0.092188]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.01.jpeg", "objects": {"bbox": [[0.6395835, 0.398438, 0.160417, 0.091406], [0.29166650000000005, 0.5007809999999999, 0.095833, 0.122656]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.02 (1).jpeg", "objects": {"bbox": [[0.3239585, 0.44531299999999996, 0.385417, 0.272656]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.02 (2).jpeg", "objects": {"bbox": [[0.48124999999999996, 0.6257809999999999, 0.155208, 0.085938], [0.09895849999999999, 0.345312, 0.152083, 0.085938]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.02.jpeg", "objects": {"bbox": [[0.3999995, 0.561719, 0.141667, 0.08125], [0.33125, 0.4984375, 0.123958, 0.069531]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.03 (1).jpeg", "objects": {"bbox": [[0.33854199999999995, 0.309375, 0.3375, 0.202344], [0.578125, 0.28749949999999996, 0.288542, 0.321875]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.03 (2).jpeg", "objects": {"bbox": [[0.36104809000000004, 0.25735129, 0.4496223, 0.21049616]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.03 (3).jpeg", "objects": {"bbox": [[0.273958, 0.309375, 0.307292, 0.227344], [0.49895849999999997, 0.654688, 0.108333, 0.066406]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.03 (4).jpeg", "objects": {"bbox": [[0.21041649999999998, 0.2554685, 0.339583, 0.236719], [0.5552085, 0.577344, 0.110417, 0.103906]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.03 (5).jpeg", "objects": {"bbox": [[0.3677085, 0.26796849999999994, 0.429167, 0.311719]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.03.jpeg", "objects": {"bbox": [[0.3239585, 0.4468745, 0.385417, 0.271875]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.04 (1).jpeg", "objects": {"bbox": [[0.48541600000000007, 0.503906, 0.169792, 0.097656], [0.05729150000000001, 0.20078150000000003, 0.160417, 0.105469]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.04 (2).jpeg", "objects": {"bbox": [[0.21875, 0.245312, 0.342708, 0.335938]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.04 (3).jpeg", "objects": {"bbox": [[0.37291700000000005, 0.29843749999999997, 0.325, 0.290625]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.04.jpeg", "objects": {"bbox": [[0.353125, 0.346094, 0.373958, 0.214062]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.05 (1).jpeg", "objects": {"bbox": [[0.2843755, 0.3140625, 0.314583, 0.324219], [0.590625, 0.33984400000000003, 0.1875, 0.151562]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.05 (2).jpeg", "objects": {"bbox": [[0.270833, 0.401563, 0.30625, 0.253906], [0.604167, 0.3593745, 0.19375, 0.145313], [0.520833, 0.53125, 0.169792, 0.125]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.05 (3).jpeg", "objects": {"bbox": [[0.5750005, 0.32578150000000006, 0.189583, 0.159375], [0.1697915, 0.5617185, 0.347917, 0.215625], [0.7447919999999999, 0.5499999999999999, 0.182292, 0.14375]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.05.jpeg", "objects": {"bbox": [[0.40625, 0.2281255, 0.34375, 0.250781]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.06 (1).jpeg", "objects": {"bbox": [[0.20937450000000002, 0.1765625, 0.596875, 0.390625]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.06.jpeg", "objects": {"bbox": [[0.08229150000000002, 0.23750049999999998, 0.577083, 0.394531]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.07 (1).jpeg", "objects": {"bbox": [[0.1666665, 0.21484349999999997, 0.208333, 0.134375], [0.65625, 0.6085935, 0.11875, 0.150781]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.07.jpeg", "objects": {"bbox": [[0.26145799999999997, 0.3781245, 0.2, 0.139063]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.53.20.jpeg", "objects": {"bbox": [[0.6885415, 0.5195310000000001, 0.133333, 0.0875], [0.4531255, 0.34765599999999997, 0.114583, 0.092188], [0.1624995, 0.5109375, 0.104167, 0.078125], [0.69375, 0.6546875, 0.09375, 0.050781]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.53.32.jpeg", "objects": {"bbox": [[0.696875, 0.434375, 0.119792, 0.102344], [0.475, 0.3, 0.107292, 0.08125]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.53.33 (1).jpeg", "objects": {"bbox": [[0.145833, 0.39453099999999997, 0.144792, 0.110156], [0.5666665000000001, 0.38125000000000003, 0.103125, 0.095312], [0.6333335, 0.4835935, 0.089583, 0.059375]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.53.33.jpeg", "objects": {"bbox": [[0.4260415, 0.253125, 0.115625, 0.08125], [0.636459, 0.4328125, 0.155208, 0.094531], [0.130208, 0.42265600000000003, 0.105208, 0.083594], [0.6437505, 0.571094, 0.102083, 0.047656]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.57.54.jpeg", "objects": {"bbox": [[0.5479164999999999, 0.19062450000000003, 0.240625, 0.186719], [0.048958, 0.7078119999999999, 0.26875, 0.127344], [0.21666649999999998, 0.5757815000000001, 0.177083, 0.086719]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.58.32.jpeg", "objects": {"bbox": [[0.5218745, 0.16328150000000002, 0.246875, 0.207031], [0.0010420000000000013, 0.690625, 0.213542, 0.1375], [0.16875, 0.8101565, 0.176042, 0.176563], [0.177083, 0.2546875, 0.223958, 0.209375]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.58.33.jpeg", "objects": {"bbox": [[0.5479164999999999, 0.19062450000000003, 0.240625, 0.186719], [0.048958, 0.707813, 0.276042, 0.11875], [0.2541665, 0.8023435, 0.170833, 0.173437], [0.25104200000000004, 0.26328149999999995, 0.230208, 0.204687], [0.2020835, 0.5710930000000001, 0.189583, 0.104688]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 16.17.53.jpeg", "objects": {"bbox": [[0.4552085, 0.3507815, 0.071875, 0.053125], [0.146875, 0.5210935, 0.09375, 0.055469], [0.661458, 0.5281254999999999, 0.1, 0.053125], [0.6333335, 0.574219, 0.066667, 0.04375], [0.519792, 0.5789059999999999, 0.055208, 0.042188], [0.633333, 0.494531, 0.088542, 0.0375]], "categories": [3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 16.17.57.jpeg", "objects": {"bbox": [[0.6583335, 0.6085940000000001, 0.109375, 0.0875], [0.2791665, 0.14062449999999999, 0.170833, 0.115625], [0.419792, 0.601562, 0.10625, 0.092188], [0.698958, 0.525, 0.16875, 0.129688], [0.651041, 0.457031, 0.163542, 0.082812]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 16.18.01.jpeg", "objects": {"bbox": [[0.697917, 0.117188, 0.15625, 0.128906], [0.29583349999999997, 0.227344, 0.191667, 0.147656], [0.771875, 0.313281, 0.125, 0.096094], [0.658334, 0.364844, 0.111458, 0.082812], [0.0010420000000000013, 0.565625, 0.14375, 0.0875]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 16.18.03.jpeg", "objects": {"bbox": [[0.7020839999999999, 0.125, 0.130208, 0.1125], [0.2802085, 0.221875, 0.203125, 0.153906], [0.771875, 0.313281, 0.125, 0.096094], [0.6583335, 0.3648435, 0.103125, 0.055469], [0.0010420000000000013, 0.565625, 0.14375, 0.0875]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 16.18.06.jpeg", "objects": {"bbox": [[0.4770835, 0.3125, 0.066667, 0.0625], [0.5458335000000001, 0.5351560000000001, 0.041667, 0.070312], [0.170833, 0.492969, 0.0875, 0.052344], [0.6520835, 0.47421800000000003, 0.079167, 0.048438], [0.6791665, 0.5031249999999999, 0.096875, 0.058594], [0.6468755, 0.542969, 0.070833, 0.047656]], "categories": [3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/BOUSTH_Stage1_Im0.JPG", "objects": {"bbox": [[0.3122665, 0.1566015, 0.069963, 0.105337], [0.3337225, 0.412219, 0.051539, 0.080758], [0.2856805, 0.43012700000000004, 0.056437, 0.088834], [0.49370349999999996, 0.14536549999999998, 0.069963, 0.105337], [0.5445425, 0.27914300000000003, 0.058069, 0.082514], [0.3500465, 0.32479, 0.051539, 0.080758], [0.590485, 0.4385535, 0.049674, 0.067767], [0.713853, 0.6218400000000001, 0.064832, 0.10323], [0.552938, 0.62184, 0.033116, 0.086376], [0.3731345, 0.5663625, 0.042211, 0.067065], [0.8787309999999999, 0.740871, 0.082556, 0.096208]], "categories": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im1.JPG", "objects": {"bbox": [[0.190298, 0.7373595, 0.10681, 0.167837], [0.1037785, 0.780548, 0.110541, 0.180126], [0.2325095, 0.6049855000000001, 0.092351, 0.141503], [0.181203, 0.258427, 0.125, 0.205056], [0.42490700000000003, 0.3570925, 0.091884, 0.110955], [0.49883400000000006, 0.272121, 0.134562, 0.20611], [0.5911845, 0.5235255, 0.109841, 0.152739], [0.6672104999999999, 0.8405895, 0.099347, 0.122191]], "categories": [3, 3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im10.JPG", "objects": {"bbox": [[0.33931900000000004, 0.00035100000000001796, 0.378498, 0.311096], [0.21058799999999997, 0.1372895, 0.345382, 0.420295], [0.20755650000000003, 0.5688205, 0.232509, 0.261587], [0.43563450000000004, 0.5948035, 0.333955, 0.364817]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im108.JPG", "objects": {"bbox": [[0.6124065, 0.3409415, 0.038013, 0.054775], [0.6058775, 0.0007020000000000012, 0.056203, 0.060042], [0.6646460000000001, 0.072683, 0.047108, 0.05934], [0.7691235, 0.09339900000000001, 0.042211, 0.051966], [0.487173, 0.44627799999999995, 0.03195, 0.04073], [0.6289640000000001, 0.418539, 0.03195, 0.04073]], "categories": [3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im109.JPG", "objects": {"bbox": [[0.6147385, 0.4111655, 0.038713, 0.050211], [0.6294305, 0.49297749999999996, 0.028685, 0.031601], [0.6107745, 0.04915750000000001, 0.057603, 0.087781], [0.666045, 0.146067, 0.048974, 0.05302], [0.7793840000000001, 0.16608099999999998, 0.034282, 0.055478]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im11.JPG", "objects": {"bbox": [[0.1511195, 0.0003509999999999902, 0.367071, 0.293188], [0.40088650000000003, 0.34550600000000004, 0.287547, 0.388694], [0.172342, 0.349017, 0.220382, 0.199438]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im12.JPG", "objects": {"bbox": [[0.30457100000000004, 0.008075499999999985, 0.36264, 0.458919], [0.1956625, 0.370436, 0.340019, 0.38764], [0.4708485, 0.7591295, 0.317631, 0.236657], [0.22481399999999996, 0.7682589999999999, 0.241604, 0.213834]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im13.JPG", "objects": {"bbox": [[0.7087215, 0.3602535, 0.230877, 0.353581], [0.37080250000000003, 0.25948099999999996, 0.301073, 0.48139], [0.184235, 0.016151500000000013, 0.301772, 0.472261], [0.00023350000000001148, 0.8507725, 0.130597, 0.141503]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im14.JPG", "objects": {"bbox": [[0.351213, 0.04985999999999996, 0.288246, 0.57198], [0.12103500000000002, 0.626405, 0.229478, 0.32514], [0.003031999999999993, 0.586728, 0.1257, 0.406952]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im15.JPG", "objects": {"bbox": [[0.5069965, 0.49297749999999996, 0.252799, 0.379213], [0.7560635, 0.8441015, 0.243937, 0.155899], [0.026353000000000015, 0.0024585000000000024, 0.264692, 0.296699]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im16.JPG", "objects": {"bbox": [[0.316698, 0.13483099999999998, 0.240672, 0.405548], [0.49883349999999993, 0.5733845, 0.440765, 0.426615]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im17.JPG", "objects": {"bbox": [[0.10984100000000002, 0.1688905, 0.49417, 0.642205]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im18.JPG", "objects": {"bbox": [[0.0002334999999999976, 0.0003505000000000036, 0.286381, 0.254565], [0.39948700000000004, 0.0691715, 0.26166, 0.340941], [0.49883350000000004, 0.548455, 0.080457, 0.114466], [0.780084, 0.9129215, 0.219916, 0.087079]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im19.JPG", "objects": {"bbox": [[0.2129195, 0.0003509999999999902, 0.345149, 0.397472]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im2.JPG", "objects": {"bbox": [[0.36473849999999997, 0.282303, 0.285215, 0.455056], [0.559002, 0.8426965, 0.227146, 0.157303]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im20.JPG", "objects": {"bbox": [[0.19029849999999998, 0.0003505000000000036, 0.532649, 0.328301], [0.1963625, 0.4023880000000001, 0.336287, 0.41573]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im21.JPG", "objects": {"bbox": [[0.34445000000000003, 0.22893249999999998, 0.378498, 0.461025], [0.16254649999999998, 0.41573050000000006, 0.336287, 0.450843], [0.09258399999999999, 0.7556185, 0.204524, 0.242275]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im22.JPG", "objects": {"bbox": [[0.42490700000000003, 0.15414299999999997, 0.364272, 0.492626], [0.46781749999999994, 0.00035149999999999765, 0.188899, 0.089185]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im23.JPG", "objects": {"bbox": [[0.23834, 0.3525285, 0.228778, 0.379213], [0.46338650000000003, 0.08075900000000003, 0.317397, 0.487008], [0.6019125000000001, 0.0003510000000000041, 0.214319, 0.06566]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im24.JPG", "objects": {"bbox": [[0.2775185, 0.24262650000000002, 0.459655, 0.680829], [0.8584419999999999, 0.23560400000000004, 0.141558, 0.582514]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im25.JPG", "objects": {"bbox": [[0.34981399999999996, 0.2798455, 0.40555, 0.494031], [0.2112875, 0.0003510000000000041, 0.284515, 0.22507]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im26.JPG", "objects": {"bbox": [[0.26166100000000003, 0.773877, 0.091884, 0.128862], [0.567398, 0.821981, 0.091884, 0.128862], [0.624767, 0.688553, 0.085588, 0.116924], [0.2737875, 0.6481745, 0.078591, 0.104635], [0.5585355, 0.4266155, 0.078591, 0.104635], [0.5097945, 0.31144649999999996, 0.072295, 0.110955], [0.2947765, 0.4547055, 0.052705, 0.083567], [0.4379665, 0.29424150000000004, 0.052705, 0.083567], [0.383862, 0.295997, 0.064366, 0.101826]], "categories": [3, 3, 3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im27.JPG", "objects": {"bbox": [[0.503965, 0.13728900000000002, 0.283582, 0.435042], [0.27751899999999996, 0.5459970000000001, 0.27472, 0.352528]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im28.JPG", "objects": {"bbox": [[0.576259, 0.5653094999999999, 0.104478, 0.142907], [0.12360099999999999, 0.5962080000000001, 0.120802, 0.149228], [0.499767, 0.7127815, 0.104478, 0.142907], [0.522388, 0.22717749999999998, 0.09375, 0.130969], [0.46851699999999996, 0.0702245, 0.09375, 0.130969], [0.181204, 0.197332, 0.072994, 0.112008], [0.16278, 0.464888, 0.072994, 0.112008]], "categories": [3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im29.JPG", "objects": {"bbox": [[0.414412, 0.641152, 0.10681, 0.15309], [0.428171, 0.8149580000000001, 0.134562, 0.18434], [0.8990205, 0.7619385000000001, 0.100979, 0.183989], [0.7999065, 0.142556, 0.100513, 0.172402], [0.6893655, 0.009128999999999998, 0.100513, 0.172402], [0.388759, 0.346208, 0.079058, 0.132022], [0.48833950000000004, 0.04740100000000001, 0.108209, 0.180478]], "categories": [3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im3.JPG", "objects": {"bbox": [[0.49113850000000003, 0.49859549999999997, 0.183535, 0.352177]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im30.JPG", "objects": {"bbox": [[0.6070435000000001, 0.38869400000000004, 0.128731, 0.183638], [0.3316235, 0.23911549999999998, 0.076959, 0.130267], [0.172341, 0.19627799999999995, 0.128498, 0.216292], [0.07299449999999999, 0.21769649999999996, 0.096315, 0.110955], [0.20382499999999998, 0.42380650000000003, 0.057136, 0.088483]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im31.JPG", "objects": {"bbox": [[0.470149, 0.6141145, 0.21222, 0.328301], [0.33768600000000004, 0.28792149999999994, 0.171642, 0.307935], [0.06996250000000001, 0.007022499999999987, 0.276119, 0.371489], [0.020989000000000008, 0.197331, 0.152052, 0.279846]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im32.JPG", "objects": {"bbox": [[0.25723, 0.16783749999999997, 0.416744, 0.609199], [0.2805505, 0.0035115000000000007, 0.050373, 0.063553]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im33.JPG", "objects": {"bbox": [[0.28428149999999996, 0.22120799999999996, 0.417677, 0.605688], [0.1595145, 0.0003510000000000041, 0.219683, 0.11552]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im34.JPG", "objects": {"bbox": [[0.6536845, 0.22542099999999998, 0.290345, 0.652388], [0.08278949999999999, 0.0003509999999999902, 0.483675, 0.742978], [0.05946800000000002, 0.544944, 0.312034, 0.422402]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im35.JPG", "objects": {"bbox": [[0.257929, 0.24157300000000004, 0.378498, 0.601124]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im36.JPG", "objects": {"bbox": [[0.311334, 0.24262649999999997, 0.331856, 0.462079]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im37.JPG", "objects": {"bbox": [[0.3670709999999999, 0.23911549999999998, 0.465718, 0.607093]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im38.JPG", "objects": {"bbox": [[0.20475749999999998, 0.21664299999999997, 0.486707, 0.640098]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im39.JPG", "objects": {"bbox": [[0.44006599999999996, 0.447682, 0.312966, 0.436096], [0.2849815, 0.0003515000000000046, 0.312267, 0.381671], [0.0023320000000000007, 0.002458000000000002, 0.133862, 0.19382], [0.5611005, 0.9118679999999999, 0.131063, 0.088132]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im4.JPG", "objects": {"bbox": [[0.6529855, 0.5575845, 0.128731, 0.168539], [0.5340484999999999, 0.14290749999999997, 0.151353, 0.243329], [0.8500465, 0.08391800000000002, 0.149953, 0.254916], [0.647621, 0.7464885, 0.125, 0.195927], [0.5634330000000001, 0.8202245, 0.138526, 0.179775]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im40.JPG", "objects": {"bbox": [[0.251166, 0.13834249999999998, 0.33792, 0.455407], [0.5235540000000001, 0.3728935, 0.271688, 0.385183]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im41.JPG", "objects": {"bbox": [[0.2534985, 0.0930475, 0.306203, 0.431531], [0.4829755, 0.32303400000000004, 0.265625, 0.348666]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im42.JPG", "objects": {"bbox": [[0.4055500000000001, 0.10428399999999999, 0.376866, 0.39993]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im43.JPG", "objects": {"bbox": [[0.201492, 0.497542, 0.08209, 0.099368], [0.2616605, 0.559691, 0.069263, 0.079354], [0.48367499999999997, 0.276685, 0.08209, 0.113062]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im44.JPG", "objects": {"bbox": [[0.340718, 0.184691, 0.070662, 0.091994], [0.5622665, 0.281601, 0.065765, 0.08111]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im45.JPG", "objects": {"bbox": [[0.10611, 0.129213, 0.15555, 0.18118], [0.5979475, 0.2665025, 0.115205, 0.165379], [0.5265855, 0.316011, 0.063899, 0.081812], [0.170709, 0.559691, 0.073694, 0.09059], [0.461987, 0.7183995, 0.065998, 0.086025]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im46.JPG", "objects": {"bbox": [[0.2558305, 0.5326544999999999, 0.140625, 0.151685], [0.405551, 0.4736659999999999, 0.250466, 0.314958]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im47.JPG", "objects": {"bbox": [[0.309935, 0.39220450000000007, 0.283582, 0.371489]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im48.JPG", "objects": {"bbox": [[0.21222000000000002, 0.736306, 0.118004, 0.139396], [0.24300349999999998, 0.6197335, 0.080457, 0.091643], [0.180504, 0.36165749999999997, 0.116604, 0.152739], [0.4204755, 0.3219805, 0.097015, 0.141503], [0.5235545, 0.6910115, 0.082789, 0.143961], [0.6161385, 0.49508399999999997, 0.108209, 0.108848], [0.678638, 0.425913, 0.104478, 0.10323], [0.6604475000000001, 0.2787925, 0.113573, 0.122191]], "categories": [3, 3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im49.JPG", "objects": {"bbox": [[0.22038300000000002, 0.6660815, 0.114272, 0.138343], [0.24370349999999996, 0.538273, 0.081157, 0.100772], [0.177472, 0.2981045, 0.120336, 0.157303], [0.40555050000000004, 0.24016849999999998, 0.105177, 0.140449], [0.5258860000000001, 0.6116575, 0.093284, 0.143961], [0.617537, 0.39993, 0.108442, 0.100772], [0.6627795, 0.330758, 0.118937, 0.104284], [0.6438895, 0.18469049999999998, 0.130131, 0.127107]], "categories": [3, 3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im5.JPG", "objects": {"bbox": [[0.4776125, 0.30723349999999994, 0.215951, 0.376053], [0.366371, 0.402388, 0.112174, 0.213834], [0.0002334999999999976, 0.4069525, 0.157649, 0.349719], [0.690532, 0.656952, 0.182836, 0.23139]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im50.JPG", "objects": {"bbox": [[0.3565765, 0.4782305, 0.042211, 0.042837], [0.496502, 0.504213, 0.04291, 0.047402], [0.5072295, 0.4617275, 0.035215, 0.045997], [0.5013995, 0.4034405, 0.041045, 0.056531], [0.375933, 0.398877, 0.031716, 0.04073]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im51.JPG", "objects": {"bbox": [[0.35284499999999996, 0.525632, 0.041278, 0.04073], [0.489505, 0.5519665, 0.040812, 0.048455], [0.49743450000000006, 0.454003, 0.040345, 0.053722], [0.5030315000000001, 0.5077244999999999, 0.032649, 0.045295], [0.3701025, 0.44487350000000003, 0.031483, 0.038975]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im52.JPG", "objects": {"bbox": [[0.5123595, 0.472612, 0.035215, 0.057584], [0.3866605, 0.359199, 0.037547, 0.04986], [0.4678175, 0.219803, 0.039879, 0.060042], [0.5002329999999999, 0.2707165, 0.04431, 0.045295], [0.422808, 0.45786499999999997, 0.032416, 0.041784], [0.5272859999999999, 0.32514, 0.027052, 0.02493]], "categories": [3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im53.JPG", "objects": {"bbox": [[0.19636199999999998, 0.500702, 0.093284, 0.114466], [0.394123, 0.173455, 0.089552, 0.133778], [0.47458, 0.275281, 0.092584, 0.12816], [0.5340484999999999, 0.4146775, 0.061101, 0.074789], [0.49720099999999995, 0.7556175, 0.093284, 0.132725], [0.28894600000000004, 0.7271770000000001, 0.072062, 0.10323]], "categories": [3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im54.JPG", "objects": {"bbox": [[0.2866135, 0.7580755, 0.080457, 0.098315], [0.22644550000000002, 0.654846, 0.100047, 0.13132], [0.3264925, 0.1169245, 0.088853, 0.157303], [0.417444, 0.119031, 0.067864, 0.147472], [0.58139, 0.222261, 0.08209, 0.13132], [0.5979475, 0.4838485, 0.057369, 0.094101], [0.052704999999999995, 0.5561794999999999, 0.114272, 0.131671]], "categories": [3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im55.JPG", "objects": {"bbox": [[0.2919775, 0.21664350000000002, 0.194729, 0.284059], [0.4911375, 0.1530905, 0.160215, 0.302317], [0.887593, 0.3205755, 0.111474, 0.316011]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im56.JPG", "objects": {"bbox": [[0.3288245, 0.8665735, 0.105877, 0.129213], [0.252799, 0.7566715, 0.13083, 0.154143], [0.044309, 0.6467695, 0.114506, 0.162219], [0.3535445, 0.06811749999999998, 0.121035, 0.179073], [0.46944949999999996, 0.05231800000000002, 0.102379, 0.185744], [0.682369, 0.16889049999999997, 0.123368, 0.170997], [0.7185170000000001, 0.5052675, 0.079524, 0.129213]], "categories": [3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im57.JPG", "objects": {"bbox": [[0.03381550000000001, 0.173455, 0.222015, 0.313904], [0.2595615, 0.139396, 0.165345, 0.327598], [0.6560170000000001, 0.36938150000000003, 0.209188, 0.311447]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im58.JPG", "objects": {"bbox": [[0.312267, 0.40449450000000003, 0.205924, 0.305829], [0.524254, 0.33672699999999994, 0.182136, 0.33743], [0.9244405, 0.5256315, 0.074627, 0.277739]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im59.JPG", "objects": {"bbox": [[0.44612849999999993, 0.42029550000000004, 0.262593, 0.293539], [0.379898, 0.010532999999999987, 0.220382, 0.305478], [0.2646925, 0.200491, 0.068563, 0.08743]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im6.JPG", "objects": {"bbox": [[0.14365650000000002, 0.016152000000000027, 0.227845, 0.366924], [0.0510725, 0.1271065, 0.098647, 0.157303], [0.3542445, 0.40449450000000003, 0.170009, 0.214185], [0.561101, 0.769312, 0.195662, 0.205056]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im60.JPG", "objects": {"bbox": [[0.4491605000000001, 0.34550600000000004, 0.276819, 0.404494]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im61.JPG", "objects": {"bbox": [[0.33325550000000004, 0.17450799999999997, 0.276819, 0.383076], [0.220382, 0.010533500000000001, 0.261894, 0.379213], [0.757463, 0.656952, 0.241604, 0.338834]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im62.JPG", "objects": {"bbox": [[0.30923500000000004, 0.2222615, 0.267724, 0.437149]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im63.JPG", "objects": {"bbox": [[0.30013999999999996, 0.2345505, 0.392024, 0.655899]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im64.JPG", "objects": {"bbox": [[0.30690300000000004, 0.11341300000000001, 0.271688, 0.432584], [0.46408600000000005, 0.606039, 0.229478, 0.380618]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im65.JPG", "objects": {"bbox": [[0.25419749999999997, 0.024929499999999993, 0.342351, 0.530197], [0.4708485, 0.5200134999999999, 0.252799, 0.349017], [0.072994, 0.5438905, 0.625, 0.454003]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im66.JPG", "objects": {"bbox": [[0.4263064999999999, 0.3174155, 0.322761, 0.381671]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im67.JPG", "objects": {"bbox": [[0.1620805, 0.7166429999999999, 0.145289, 0.221208], [0.30667, 0.29389, 0.090252, 0.141854], [0.340018, 0.43574450000000003, 0.083256, 0.120435], [0.4589555, 0.009129499999999999, 0.122901, 0.125351], [0.5375465, 0.14045000000000002, 0.083955, 0.151334], [0.710821, 0.37464899999999995, 0.13153, 0.104284]], "categories": [3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im68.JPG", "objects": {"bbox": [[0.06646400000000001, 0.472963, 0.161614, 0.21559], [0.14109149999999998, 0.7011935, 0.142257, 0.207163], [0.46898350000000005, 0.19346850000000002, 0.129431, 0.297051], [0.33069, 0.009129499999999999, 0.211754, 0.211025], [0.7686569999999999, 0.6007725, 0.18097, 0.187149]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im69.JPG", "objects": {"bbox": [[0.36637149999999996, 0.591292, 0.047575, 0.099368], [0.415345, 0.38764000000000004, 0.04431, 0.071278], [0.4326025, 0.45786550000000004, 0.042677, 0.070225], [0.49113850000000003, 0.23209249999999998, 0.045709, 0.075843], [0.5284515, 0.3149575, 0.041045, 0.070225]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im7.JPG", "objects": {"bbox": [[0.366371, 0.3785115, 0.182836, 0.370435], [0.9584885, 0.32303400000000004, 0.041511, 0.265098], [0.90042, 0.619733, 0.09958, 0.132374]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im70.JPG", "objects": {"bbox": [[0.5960825, 0.680126, 0.139925, 0.241222], [0.6014459999999999, 0.47787900000000005, 0.150886, 0.145014], [0.659048, 0.292837, 0.176306, 0.203652], [0.47131550000000005, 0.07478950000000001, 0.127099, 0.232093], [0.22178199999999998, 0.21804749999999998, 0.126866, 0.159059], [0.14715499999999998, 0.2998595, 0.147854, 0.199087]], "categories": [3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im71.JPG", "objects": {"bbox": [[0.31599849999999996, 0.16362400000000005, 0.327425, 0.583216], [0.4542915, 0.0003510000000000006, 0.156483, 0.036868], [0.2810165, 0.007022500000000001, 0.138293, 0.143961]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im72.JPG", "objects": {"bbox": [[0.2094215, 0.580758, 0.076959, 0.086728], [0.264692, 0.4708565, 0.072994, 0.085323], [0.477845, 0.6790725, 0.04431, 0.078301], [0.4855415, 0.420295, 0.069263, 0.086728], [0.4349345, 0.394663, 0.049207, 0.060744]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im73.JPG", "objects": {"bbox": [[0.022154500000000008, 0.648525, 0.137593, 0.156952], [0.135495, 0.42731699999999995, 0.104244, 0.167486], [0.5384789999999999, 0.367627, 0.139226, 0.154494], [0.4442625, 0.2938905, 0.105877, 0.133427], [0.5268185000000001, 0.8521770000000001, 0.079991, 0.129916]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im74.JPG", "objects": {"bbox": [[0.0002329999999999971, 0.6063904999999999, 0.08722, 0.280899], [0.529851, 0.442767, 0.253498, 0.292486], [0.39598849999999997, 0.3254915, 0.212453, 0.262289]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im75.JPG", "objects": {"bbox": [[0.40228500000000006, 0.11341299999999999, 0.227146, 0.301264]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im76.JPG", "objects": {"bbox": [[0.46431950000000005, 0.188553, 0.141091, 0.279846]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im77.JPG", "objects": {"bbox": [[0.234375, 0.21559050000000002, 0.409748, 0.481039]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im78.JPG", "objects": {"bbox": [[0.3353545, 0.24824399999999996, 0.381063, 0.533708], [0.9372665, 0.6239469999999999, 0.062733, 0.370084]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im79.JPG", "objects": {"bbox": [[0.434002, 0.4778795, 0.104478, 0.140449], [0.43167, 0.254214, 0.103778, 0.10639], [0.4186105, 0.1299155, 0.105177, 0.137289], [0.49113750000000006, 0.05723349999999999, 0.092351, 0.137289], [0.683069, 0.05723299999999999, 0.059002, 0.12184], [0.7546645, 0.2401685, 0.108675, 0.143961], [0.5967819999999999, 0.5948035, 0.051306, 0.122893]], "categories": [3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im8.JPG", "objects": {"bbox": [[0.470849, 0.20856750000000002, 0.16861, 0.226475], [0.44076550000000003, 0.4543535, 0.177705, 0.264045], [0.3271925, 0.5459970000000001, 0.188899, 0.266152], [0.639459, 0.9051965, 0.084188, 0.094101]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im80.JPG", "objects": {"bbox": [[0.42397399999999996, 0.5807585, 0.041278, 0.115871], [0.267024, 0.4202955, 0.118004, 0.134831], [0.31203349999999996, 0.20751400000000003, 0.115905, 0.101826], [0.316698, 0.061798000000000006, 0.104944, 0.154846], [0.4013525, 0.016152, 0.100513, 0.141854], [0.5904845, 0.08883399999999998, 0.065299, 0.126756], [0.6254665, 0.30091300000000004, 0.108209, 0.152388]], "categories": [3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im81.JPG", "objects": {"bbox": [[0.40065249999999997, 0.3865875, 0.252099, 0.333567]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im82.JPG", "objects": {"bbox": [[0.0881535, 0.011587499999999973, 0.839785, 0.988413], [0.5641325, 0.0003515000000000046, 0.426073, 0.417837]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im83.JPG", "objects": {"bbox": [[0.12779850000000004, 0.22366550000000002, 0.623601, 0.702247], [0.48647399999999996, 0.10182600000000003, 0.305504, 0.40625]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im84.JPG", "objects": {"bbox": [[0.26772399999999996, 0.13693850000000007, 0.53125, 0.727177]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im85.JPG", "objects": {"bbox": [[0.269356, 0.03160099999999999, 0.51236, 0.83111], [0.42164199999999996, 0.798455, 0.270756, 0.195576]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im86.JPG", "objects": {"bbox": [[0.28638050000000004, 0.00035050000000003134, 0.622201, 0.870787], [0.644123, 0.7468395, 0.352146, 0.247191]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im87.JPG", "objects": {"bbox": [[0.26935649999999994, 0.008075999999999972, 0.613573, 0.87816], [0.6100749999999999, 0.7784409999999999, 0.370802, 0.213132]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im88.JPG", "objects": {"bbox": [[0.32905799999999996, 0.2342, 0.345382, 0.395716], [0.159748, 0.43434000000000006, 0.146922, 0.250702]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im89.JPG", "objects": {"bbox": [[0.28638050000000004, 0.1990875, 0.344683, 0.401685], [0.116138, 0.39220450000000007, 0.15695, 0.235253]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im9.JPG", "objects": {"bbox": [[0.28428149999999996, 0.0003515000000000046, 0.447761, 0.593399], [0.628965, 0.6004214999999999, 0.338386, 0.304775]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im90.JPG", "objects": {"bbox": [[0.4752799999999999, 0.039676499999999976, 0.281716, 0.427669]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im91.JPG", "objects": {"bbox": [[0.29967299999999997, 0.04564549999999995, 0.392724, 0.791433], [0.207789, 0.9378505, 0.14319, 0.058287]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/BOUSTH_Stage1_Im92.JPG", "objects": {"bbox": [[0.200793, 0.07584250000000003, 0.538946, 0.782303]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S1"}
{"file_name": "images/DSC_2509.JPG", "objects": {"bbox": [[0.333022, 0.6077954999999999, 0.094916, 0.194171], [0.3229945, 0.502458, 0.086287, 0.107444], [0.49253749999999996, 0.20259850000000001, 0.076959, 0.107795], [0.6923969999999999, 0.30302, 0.107976, 0.128862], [0.663713, 0.6253510000000001, 0.163946, 0.236306], [0.238106, 0.30934, 0.051306, 0.071278], [0.376632, 0.237711, 0.063666, 0.063202]], "categories": [3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2510.JPG", "objects": {"bbox": [[0.29640900000000003, 0.3465595, 0.3743, 0.503511]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2511.JPG", "objects": {"bbox": [[0.4083485, 0.10744350000000003, 0.361707, 0.620787], [0.221082, 0.5445925, 0.253498, 0.324087], [0.6760729999999999, 0.7984555, 0.278218, 0.201545]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2512.JPG", "objects": {"bbox": [[0.3353545, 0.31390450000000003, 0.266091, 0.369733], [0.1434235, 0.0003509999999999902, 0.295243, 0.188202], [0.0002329999999999971, 0.0003515000000000046, 0.147854, 0.293539]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2513.JPG", "objects": {"bbox": [[0.571129, 0.0010529999999999984, 0.198228, 0.158006], [0.47784550000000003, 0.139045, 0.288479, 0.458216], [0.28708, 0.32900300000000005, 0.357976, 0.488062], [0.8083020000000001, 0.8149580000000001, 0.191698, 0.185042]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2514.JPG", "objects": {"bbox": [[0.47061499999999995, 0.10182550000000001, 0.217118, 0.369031], [0.39365649999999996, 0.461376, 0.284049, 0.442416], [0.204758, 0.648525, 0.35541, 0.347612]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2515.JPG", "objects": {"bbox": [[0.11450599999999998, 0.542135, 0.19986, 0.347612], [0.2467345, 0.2577245, 0.306437, 0.499649], [0.4911375, 0.1566015, 0.343517, 0.505969]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2516.JPG", "objects": {"bbox": [[0.314365, 0.18855300000000003, 0.322062, 0.607444], [0.6861005, 0.6534415, 0.313899, 0.346559]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2517.JPG", "objects": {"bbox": [[0.14645550000000002, 0.16959250000000003, 0.571595, 0.782303]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2518.JPG", "objects": {"bbox": [[0.16814400000000002, 0.04424099999999999, 0.20056, 0.248596], [0.4456625, 0.2096205, 0.117771, 0.189607], [0.5804575000000001, 0.3911515, 0.122901, 0.168539], [0.5237875, 0.47787949999999996, 0.111007, 0.161517], [0.508162, 0.630969, 0.14389, 0.152388]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2519.JPG", "objects": {"bbox": [[0.20312449999999999, 0.0003510000000000041, 0.213153, 0.22823], [0.48787299999999995, 0.1555475, 0.11194, 0.185393], [0.6208025, 0.34445200000000004, 0.120569, 0.182584], [0.556437, 0.436798, 0.114972, 0.165028], [0.538479, 0.59375, 0.149254, 0.15309]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2520.JPG", "objects": {"bbox": [[0.7360074999999999, 0.429775, 0.101679, 0.137992], [0.6690765, 0.5853225000000001, 0.072295, 0.098315], [0.6464555, 0.3946625, 0.069963, 0.087781], [0.3416505, 0.4483845, 0.092351, 0.110253], [0.311334, 0.6709975, 0.119636, 0.179073], [0.3913245, 0.2296345, 0.132463, 0.170997], [0.528451, 0.299859, 0.049674, 0.081812], [0.5711284999999999, 0.1509835, 0.076259, 0.119733]], "categories": [3, 3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2521.JPG", "objects": {"bbox": [[0.42863799999999996, 0.374649, 0.260728, 0.40625], [0.40461800000000003, 0.0003510000000000041, 0.19916, 0.11552]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2522.JPG", "objects": {"bbox": [[0.5671645, 0.39009849999999996, 0.162547, 0.224719], [0.49183699999999997, 0.16959300000000002, 0.083256, 0.07514]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2523.JPG", "objects": {"bbox": [[0.47224849999999996, 0.4343395, 0.261427, 0.377107], [0.632463, 0.823034, 0.129198, 0.176966], [0.2926775, 0.08778050000000001, 0.174907, 0.138343]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2524.JPG", "objects": {"bbox": [[0.5237875, 0.3244385, 0.282183, 0.380267], [0.6870335, 0.7222615000000001, 0.149953, 0.263343], [0.35634350000000004, 0.0003510000000000041, 0.154851, 0.110604]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2525.JPG", "objects": {"bbox": [[0.0818565, 0.3911515, 0.117537, 0.160463], [0.041511000000000006, 0.6028789999999999, 0.151586, 0.194522], [0.4456625, 0.5948030000000001, 0.107509, 0.173104], [0.573461, 0.637991, 0.153218, 0.226124], [0.689599, 0.4080055, 0.145756, 0.198385], [0.5485074999999999, 0.0003509999999999902, 0.171175, 0.13764]], "categories": [3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2526.JPG", "objects": {"bbox": [[0.2320425, 0.5491575, 0.086987, 0.133427], [0.2110535, 0.7176965, 0.077659, 0.159059], [0.208722, 0.2658005, 0.070662, 0.125351], [0.282416, 0.0003514999999999907, 0.094216, 0.152739], [0.482976, 0.0003515000000000046, 0.096782, 0.114115], [0.58069, 0.07549199999999999, 0.131996, 0.176264], [0.719916, 0.44311849999999997, 0.140858, 0.167837], [0.649487, 0.667486, 0.14319, 0.18118], [0.5307835, 0.6516850000000001, 0.101679, 0.153792]], "categories": [3, 3, 3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2527.JPG", "objects": {"bbox": [[0.5788249999999999, 0.43082849999999995, 0.250466, 0.331461], [0.40695000000000003, 0.199087, 0.172808, 0.358146], [0.21478550000000002, 0.2320925, 0.135261, 0.278441], [0.0664645, 0.3209265, 0.155317, 0.372191], [0.0002334999999999976, 0.8641155, 0.059935, 0.133427]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2528.JPG", "objects": {"bbox": [[0.361007, 0.7433289999999999, 0.049674, 0.119382], [0.35937549999999996, 0.6063905, 0.063899, 0.099719], [0.33465500000000004, 0.39571649999999997, 0.060634, 0.097261], [0.3873605, 0.174157, 0.074627, 0.125702], [0.454991, 0.15309, 0.067864, 0.093048], [0.544776, 0.1123595, 0.075326, 0.153441], [0.6231340000000001, 0.21453650000000002, 0.107276, 0.149579], [0.742071, 0.49051999999999996, 0.104244, 0.147472], [0.696595, 0.6653789999999999, 0.104244, 0.147472], [0.598881, 0.6776679999999999, 0.079524, 0.116222]], "categories": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2529.JPG", "objects": {"bbox": [[0.4832085, 0.47085699999999997, 0.213153, 0.495084], [0.45662349999999996, 0.0003515000000000046, 0.273787, 0.344101]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2530.JPG", "objects": {"bbox": [[0.20475700000000002, 0.10533699999999996, 0.528918, 0.703652], [0.010494500000000018, 0.8335675, 0.316231, 0.153441]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2531.JPG", "objects": {"bbox": [[0.232043, 0.0003509999999999902, 0.493004, 0.698736], [0.25606399999999996, 0.607795, 0.238106, 0.3125], [0.904618, 0.532655, 0.094916, 0.438904]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2532.JPG", "objects": {"bbox": [[0.1550835, 0.16502849999999997, 0.364739, 0.566713], [0.15508349999999999, 0.654495, 0.204291, 0.248244], [0.6317625, 0.52809, 0.233909, 0.451896], [0.837687, 0.8841295, 0.160914, 0.115871]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2533.JPG", "objects": {"bbox": [[0.647621, 0.77809, 0.148088, 0.179424], [0.729477, 0.394663, 0.148088, 0.179424], [0.48880550000000006, 0.07198000000000002, 0.128265, 0.178722], [0.16861, 0.4413619999999999, 0.128498, 0.178722], [0.2115205, 0.75316, 0.134795, 0.216292], [0.2810165, 0.3437505, 0.096315, 0.129213]], "categories": [3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2534.JPG", "objects": {"bbox": [[0.43167, 0.18855299999999997, 0.34305, 0.479986]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2535.JPG", "objects": {"bbox": [[0.2763525, 0.23314650000000003, 0.427705, 0.562851]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2536.JPG", "objects": {"bbox": [[0.25676299999999996, 0.031601500000000005, 0.423974, 0.605337]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2537.JPG", "objects": {"bbox": [[0.38036400000000004, 0.20400250000000003, 0.409282, 0.558287]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2538.JPG", "objects": {"bbox": [[0.5797575, 0.2998595, 0.086987, 0.130969], [0.625933, 0.43258450000000004, 0.086754, 0.126053], [0.3003735, 0.3827245, 0.081623, 0.119733], [0.467117, 0.250702, 0.064366, 0.13448], [0.7628265, 0.770716, 0.049207, 0.074438], [0.7623605, 0.7103225, 0.047341, 0.058989], [0.7409055, 0.6720505, 0.036147, 0.051615], [0.61917, 0.5930475, 0.04361, 0.076545]], "categories": [3, 3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2539.JPG", "objects": {"bbox": [[0.166745, 0.40765450000000003, 0.131996, 0.169593], [0.4099815, 0.14150300000000005, 0.108209, 0.233146], [0.569496, 0.22366550000000002, 0.153218, 0.214185], [0.6520525, 0.43679799999999996, 0.148321, 0.213132], [0.7117535, 0.66257, 0.066231, 0.12184]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2540.JPG", "objects": {"bbox": [[0.610075, 0.523526, 0.317164, 0.41889], [0.4533585, 0.07443849999999996, 0.288013, 0.411517], [0.099814, 0.0003515000000000046, 0.219216, 0.359199]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2541.JPG", "objects": {"bbox": [[0.09678150000000002, 0.12043549999999997, 0.295243, 0.692065], [0.564133, 0.290379, 0.387826, 0.58427], [0.884328, 0.8827245, 0.115672, 0.117275]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2542.JPG", "objects": {"bbox": [[0.19239750000000003, 0.15800599999999998, 0.371735, 0.525632], [0.49580250000000003, 0.44382, 0.303871, 0.40625]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2543.JPG", "objects": {"bbox": [[0.367304, 0.311447, 0.061334, 0.073736], [0.5506065, 0.2675565, 0.044543, 0.073385], [0.5881535, 0.3089885, 0.061567, 0.120787], [0.60028, 0.48033700000000007, 0.051772, 0.076896]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2544.JPG", "objects": {"bbox": [[0.43563450000000004, 0.29880549999999995, 0.266791, 0.436447], [0.311334, 0.014044500000000015, 0.161614, 0.351475], [0.4736475, 0.0807585, 0.193797, 0.227177]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2545.JPG", "objects": {"bbox": [[0.3034055, 0.607795, 0.358675, 0.363764]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2546.JPG", "objects": {"bbox": [[0.354711, 0.221559, 0.260728, 0.393258]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2547.JPG", "objects": {"bbox": [[0.3027055, 0.042135000000000006, 0.257463, 0.28125], [0.304338, 0.31039300000000003, 0.33139, 0.360604], [0.188433, 0.531601, 0.323694, 0.46243]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2548.JPG", "objects": {"bbox": [[0.24370300000000003, 0.255267, 0.441698, 0.553722]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2549.JPG", "objects": {"bbox": [[0.34304999999999997, 0.36060349999999997, 0.253032, 0.303371], [0.3050375, 0.1590595, 0.190765, 0.202949]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2550.JPG", "objects": {"bbox": [[0.2840485, 0.4146770000000001, 0.307369, 0.391854], [0.5781245, 0.523525, 0.133629, 0.277388]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2551.JPG", "objects": {"bbox": [[0.4029855, 0.09831449999999997, 0.381063, 0.542135]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2552.JPG", "objects": {"bbox": [[0.13083, 0.04424149999999999, 0.36334, 0.612711], [0.5088615, 0.057233000000000034, 0.374767, 0.601826], [0.3183305, 0.5832165, 0.332789, 0.243329]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2553.JPG", "objects": {"bbox": [[0.21175349999999998, 0.18750049999999996, 0.530317, 0.602879], [0.0002329999999999971, 0.0003515000000000046, 0.163246, 0.177317]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2554.JPG", "objects": {"bbox": [[0.27238799999999996, 0.016151499999999985, 0.524254, 0.754213], [0.8346545, 0.667486, 0.165345, 0.332514]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2555.JPG", "objects": {"bbox": [[0.29734099999999997, 0.1580055, 0.154618, 0.272823], [0.4785445, 0.387641, 0.171175, 0.20014]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2556.JPG", "objects": {"bbox": [[0.38666, 0.6755615, 0.113806, 0.199087], [0.4395985, 0.27177, 0.081157, 0.128862], [0.5093285, 0.3844805, 0.065765, 0.101475], [0.560168, 0.010533500000000001, 0.102612, 0.103933], [0.623134, 0.135534, 0.073228, 0.11868], [0.8003725, 0.269312, 0.111241, 0.106742]], "categories": [3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2557.JPG", "objects": {"bbox": [[0.43166950000000004, 0.10744399999999998, 0.383629, 0.672402]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2558.JPG", "objects": {"bbox": [[0.30806900000000004, 0.16257, 0.258396, 0.382022], [0.5111935000000001, 0.496489, 0.206157, 0.294944]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2559.JPG", "objects": {"bbox": [[0.2451025, 0.39922700000000005, 0.164879, 0.221208], [0.20942099999999997, 0.6825844999999999, 0.15695, 0.189607], [0.49113749999999995, 0.09234499999999998, 0.177239, 0.261236], [0.556436, 0.379565, 0.151586, 0.16257], [0.800373, 0.708217, 0.163246, 0.20014]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2560.JPG", "objects": {"bbox": [[0.26305999999999996, 0.3455055, 0.104944, 0.113413], [0.24277, 0.4568114999999999, 0.097948, 0.115871], [0.427939, 0.43925600000000004, 0.091884, 0.142556], [0.570429, 0.510534, 0.11334, 0.126404], [0.5431435, 0.6379919999999999, 0.098647, 0.174508]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2561.JPG", "objects": {"bbox": [[0.19146399999999997, 0.1320225, 0.190532, 0.312851], [0.3579755, 0.275281, 0.149487, 0.213132], [0.49417049999999996, 0.28335699999999997, 0.247201, 0.27177], [0.4612875, 0.6709965, 0.197761, 0.245787], [0.484841, 0.5667135, 0.15695, 0.097261]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2562.JPG", "objects": {"bbox": [[0.444963, 0.27528149999999996, 0.081856, 0.166081], [0.510495, 0.28581500000000004, 0.072994, 0.13448], [0.350047, 0.6755615, 0.091884, 0.125351], [0.659748, 0.468399, 0.11264, 0.12184], [0.6310635, 0.6053375000000001, 0.089319, 0.087781]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2563.JPG", "objects": {"bbox": [[0.34398300000000004, 0.26018300000000005, 0.405084, 0.633076]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2564.JPG", "objects": {"bbox": [[0.185401, 0.10182599999999997, 0.373368, 0.792486], [0.520523, 0.12640449999999998, 0.309468, 0.755267]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2565.JPG", "objects": {"bbox": [[0.2870805, 0.007022499999999987, 0.503265, 0.602879], [0.1261655, 0.573736, 0.398321, 0.41889]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2566.JPG", "objects": {"bbox": [[0.385028, 0.5421345, 0.16278, 0.232795], [0.256763, 0.3163625, 0.097248, 0.189607], [0.35098, 0.250702, 0.117304, 0.20014], [0.333722, 0.031601500000000005, 0.172808, 0.204003]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2567.JPG", "objects": {"bbox": [[0.29267699999999996, 0.12745800000000002, 0.345382, 0.507022], [0.01352650000000001, 0.00035099999999999715, 0.191931, 0.064958], [0.792677, 0.20505649999999997, 0.08792, 0.187149]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2568.JPG", "objects": {"bbox": [[0.40065300000000004, 0.0003515000000000046, 0.36334, 0.354635], [0.42700499999999997, 0.40976100000000004, 0.27542, 0.40625], [0.193097, 0.4975415000000001, 0.264226, 0.410815]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2569.JPG", "objects": {"bbox": [[0.14482250000000002, 0.330407, 0.371035, 0.44698], [0.26469200000000004, 0.7889745, 0.245802, 0.196629]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2571.JPG", "objects": {"bbox": [[0.585821, 0.445225, 0.038946, 0.060744], [0.7143185, 0.35182599999999997, 0.038713, 0.048806], [0.7185165, 0.401685, 0.039879, 0.045646], [0.6963625, 0.294593, 0.052705, 0.056882], [0.582556, 0.373595, 0.028918, 0.038624], [0.187733, 0.5807585, 0.065998, 0.074789]], "categories": [3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2572.JPG", "objects": {"bbox": [[0.24207050000000002, 0.492978, 0.131297, 0.165028], [0.240439, 0.249649, 0.101912, 0.136938], [0.5844215, 0.5396765, 0.098647, 0.161517], [0.6893655, 0.3711375, 0.142957, 0.155899], [0.677705, 0.22717700000000002, 0.126632, 0.148876], [0.6380595, 0.031601500000000005, 0.162313, 0.182935]], "categories": [3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2573.JPG", "objects": {"bbox": [[0.42000899999999997, 0.492978, 0.216418, 0.29389], [0.38036400000000004, 0.10182550000000001, 0.177472, 0.219101], [0.5415110000000001, 0.29986, 0.095616, 0.139396]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2574.JPG", "objects": {"bbox": [[0.413946, 0.612359, 0.217118, 0.24684], [0.3959885, 0.3665735, 0.200793, 0.244733], [0.34071799999999997, 0.06671350000000001, 0.27472, 0.285815], [0.24673500000000004, 0.864115, 0.121968, 0.132022]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2575.JPG", "objects": {"bbox": [[0.08652, 0.48700849999999996, 0.126866, 0.168539], [0.552472, 0.7201540000000001, 0.114972, 0.203652], [0.6240675, 0.3851825, 0.147621, 0.217697], [0.567164, 0.19557599999999997, 0.151586, 0.193118], [0.5074625, 0.059690499999999994, 0.142957, 0.201545], [0.3500465, 0.008076, 0.130131, 0.181882], [0.641791, 0.1228935, 0.080224, 0.119733]], "categories": [3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2577.JPG", "objects": {"bbox": [[0.30503800000000003, 0.5491575000000001, 0.1243, 0.153441], [0.433302, 0.757373, 0.102146, 0.152388], [0.3477145, 0.370084, 0.108909, 0.139396], [0.4519595, 0.09585700000000001, 0.097481, 0.136236], [0.5027980000000001, 0.23665700000000003, 0.102612, 0.092346], [0.6940299999999999, 0.21558950000000002, 0.114972, 0.172051], [0.6037785, 0.007022500000000001, 0.089319, 0.122893]], "categories": [3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2578.JPG", "objects": {"bbox": [[0.202426, 0.5291435, 0.104244, 0.094803], [0.1798035, 0.3514745, 0.121269, 0.168539], [0.260728, 0.2025985, 0.09958, 0.127809], [0.427006, 0.005617999999999998, 0.123134, 0.136938], [0.5146925, 0.07057600000000001, 0.102379, 0.155548], [0.7131535, 0.3742975, 0.115205, 0.130267], [0.670709, 0.20365149999999999, 0.107276, 0.107795], [0.683769, 0.3103935, 0.089552, 0.098315], [0.6161384999999999, 0.6604635, 0.078591, 0.139045]], "categories": [3, 3, 3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2579.JPG", "objects": {"bbox": [[0.0002329999999999971, 0.8827245, 0.194496, 0.114817], [0.30503749999999996, 0.27773899999999996, 0.249067, 0.383778], [0.48647399999999996, 0.47893250000000004, 0.231576, 0.337079], [0.8470145, 0.667486, 0.152985, 0.332514]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2580.JPG", "objects": {"bbox": [[0.4270055, 0.0712785, 0.202425, 0.259129], [0.3323225, 0.418188, 0.227845, 0.347612], [0.42933750000000004, 0.7447334999999999, 0.207789, 0.242275]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2581.JPG", "objects": {"bbox": [[0.305037, 0.49894650000000007, 0.248134, 0.239817], [0.2880125, 0.334972, 0.191465, 0.16257], [0.28708, 0.0898875, 0.211054, 0.224017]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2582.JPG", "objects": {"bbox": [[0.677705, 0.234199, 0.163246, 0.286868], [0.41534550000000003, 0.377107, 0.232043, 0.338132], [0.31133350000000004, 0.6931185, 0.211521, 0.222261]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2583.JPG", "objects": {"bbox": [[0.11777000000000001, 0.611306, 0.118004, 0.173104], [0.153451, 0.1214885, 0.146222, 0.206461], [0.4496265, 0.1566015, 0.183769, 0.222963], [0.623135, 0.5726829999999999, 0.16791, 0.233848], [0.0002334999999999976, 0.6028795, 0.059235, 0.160463]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2584.JPG", "objects": {"bbox": [[0.12546649999999998, 0.461376, 0.108909, 0.116924], [0.26492550000000004, 0.46664350000000004, 0.079757, 0.115169], [0.323694, 0.673104, 0.041278, 0.129916], [0.28404850000000004, 0.147472, 0.076259, 0.148876], [0.46898350000000005, 0.15309, 0.102845, 0.153792], [0.58209, 0.409761, 0.114272, 0.141854]], "categories": [3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2585.JPG", "objects": {"bbox": [[0.10051249999999999, 0.263694, 0.203825, 0.355688], [0.4832085, 0.5165025000000001, 0.211521, 0.326545]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2586.JPG", "objects": {"bbox": [[0.2957095, 0.40519700000000003, 0.088619, 0.145014], [0.19146449999999998, 0.6299155000000001, 0.111241, 0.141503], [0.284748, 0.708216, 0.058302, 0.096208], [0.5820890000000001, 0.5270370000000001, 0.093284, 0.142556]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2587.JPG", "objects": {"bbox": [[0.47364700000000004, 0.689607, 0.148088, 0.208216], [0.5921175000000001, 0.7974015, 0.098647, 0.146067], [0.589086, 0.330407, 0.149254, 0.238764]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2588.JPG", "objects": {"bbox": [[0.5680974999999999, 0.41924200000000006, 0.196595, 0.25632], [0.3127335, 0.2728235, 0.244403, 0.346559]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2590.JPG", "objects": {"bbox": [[0.575793, 0.47893250000000004, 0.060634, 0.069171]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2591.JPG", "objects": {"bbox": [[0.627099, 0.6063905, 0.141558, 0.161517], [0.5711285, 0.11587100000000002, 0.108909, 0.20611], [0.44333, 0.22366549999999996, 0.126166, 0.173455], [0.1854015, 0.7201545, 0.098647, 0.122893], [0.2507, 0.5948035, 0.078358, 0.062149]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2592.JPG", "objects": {"bbox": [[0.3127335, 0.39115200000000006, 0.235075, 0.348666], [0.553171, 0.16362400000000002, 0.178172, 0.407654]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2593.JPG", "objects": {"bbox": [[0.4162775000000001, 0.41116600000000003, 0.265159, 0.33111]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2594.JPG", "objects": {"bbox": [[0.2793845, 0.22612349999999998, 0.191231, 0.204705]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2595.JPG", "objects": {"bbox": [[0.223414, 0.226124, 0.15695, 0.201194], [0.753731, 0.555126, 0.14319, 0.158006]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2596.JPG", "objects": {"bbox": [[0.42094200000000004, 0.22015400000000002, 0.294076, 0.40625]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2597.JPG", "objects": {"bbox": [[0.39435599999999993, 0.39466300000000004, 0.270056, 0.299508]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2598.JPG", "objects": {"bbox": [[0.33768699999999996, 0.428722, 0.294776, 0.376756]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2878.JPG", "objects": {"bbox": [[0.08745349999999999, 0.357093, 0.308535, 0.421348], [0.527519, 0.37359600000000004, 0.15625, 0.301966], [0.7607275, 0.504564, 0.226213, 0.464888]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2883.JPG", "objects": {"bbox": [[0.10844250000000001, 0.2647475, 0.125933, 0.159059], [0.41068099999999996, 0.1530895, 0.115438, 0.198385], [0.3477145, 0.276334, 0.076959, 0.119382], [0.5104945000000001, 0.37359549999999997, 0.082323, 0.118329], [0.20405800000000002, 0.5080755, 0.073694, 0.118329], [0.14249099999999998, 0.6218395000000001, 0.126866, 0.149579], [0.253731, 0.886236, 0.085588, 0.113764], [0.5764929999999999, 0.6590585, 0.08722, 0.092697]], "categories": [3, 3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2884.JPG", "objects": {"bbox": [[0.14179100000000003, 0.516503, 0.254198, 0.281952], [0.3330225, 0.12991600000000003, 0.347015, 0.588834], [0.602146, 0.7854635, 0.25583, 0.214537]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2885.JPG", "objects": {"bbox": [[0.15811550000000002, 0.3374295, 0.228545, 0.298455], [0.3570435, 0.74684, 0.141091, 0.20611], [0.5750930000000001, 0.3009125, 0.154618, 0.183989], [0.6714085, 0.029143000000000002, 0.233209, 0.375], [0.868004, 0.4202955, 0.131996, 0.214185]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2886.JPG", "objects": {"bbox": [[0.29874049999999996, 0.26369349999999997, 0.361007, 0.482093], [0.6410915, 0.8886940000000001, 0.233909, 0.111306], [0.9535915, 0.15905950000000002, 0.046409, 0.219101]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2887.JPG", "objects": {"bbox": [[0.507463, 0.07373600000000001, 0.158582, 0.246138], [0.46758350000000004, 0.3268965, 0.200793, 0.306531], [0.342351, 0.5129915, 0.248134, 0.288975], [0.6744399999999999, 0.801966, 0.198228, 0.198034]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2893.JPG", "objects": {"bbox": [[0.333722, 0.1134125, 0.148088, 0.249649], [0.2723885, 0.2250705, 0.096315, 0.166081], [0.453592, 0.320927, 0.101912, 0.158006], [0.47947749999999995, 0.545646, 0.138993, 0.186096]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2894.JPG", "objects": {"bbox": [[0.2903445, 0.14501400000000003, 0.357743, 0.658006], [0.18073699999999998, 0.4905195, 0.231576, 0.428371], [0.7033585, 0.5221205, 0.213619, 0.465941]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2895.JPG", "objects": {"bbox": [[0.14179150000000001, 0.00035100000000001796, 0.225513, 0.323034], [0.068797, 0.123947, 0.134328, 0.24368], [0.33465500000000004, 0.2461375, 0.15555, 0.232795], [0.40928099999999995, 0.5783005, 0.185868, 0.265801]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2896.JPG", "objects": {"bbox": [[0.2444025, 0.25772500000000004, 0.388993, 0.612008]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2897.JPG", "objects": {"bbox": [[0.00023300000000001098, 0.004564499999999971, 0.353078, 0.579705], [0.3826955, 0.4087075, 0.249067, 0.456461]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2898.JPG", "objects": {"bbox": [[0.12383350000000001, 0.117977, 0.164879, 0.39361], [0.356343, 0.141503, 0.214086, 0.33743], [0.510494, 0.44487350000000003, 0.237174, 0.353581]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2899.JPG", "objects": {"bbox": [[0.24976699999999996, 0.00210699999999997, 0.533582, 0.74368]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2900.JPG", "objects": {"bbox": [[0.4162785, 0.269312, 0.256763, 0.423806]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2901.JPG", "objects": {"bbox": [[0.354711, 0.291784, 0.211754, 0.374298], [0.00023250000000000354, 0.442767, 0.096549, 0.301966], [0.8805975, 0.641503, 0.119403, 0.352528], [0.4736475, 0.665028, 0.049207, 0.100772]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2902.JPG", "objects": {"bbox": [[0.139459, 0.0337075, 0.195196, 0.315309], [0.4643189999999999, 0.597261, 0.260728, 0.34059], [0.5874535000000001, 0.3349725, 0.172575, 0.262289], [0.25303200000000003, 0.35147399999999995, 0.05597, 0.092346]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2905.JPG", "objects": {"bbox": [[0.34864700000000004, 0.0477525, 0.14389, 0.300211], [0.45359150000000004, 0.449789, 0.191465, 0.229284]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2906.JPG", "objects": {"bbox": [[0.21245400000000003, 0.34304799999999996, 0.501632, 0.654494]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2907.JPG", "objects": {"bbox": [[0.1814365, 0.0003510000000000457, 0.423041, 0.70927], [0.791045, 0.9273175, 0.10028, 0.072683]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2908.JPG", "objects": {"bbox": [[0.406949, 0.17310349999999997, 0.38806, 0.679073], [0.802006, 0.4719095, 0.197994, 0.527739]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2909.JPG", "objects": {"bbox": [[0.39132449999999996, 0.117977, 0.291045, 0.43118], [0.298041, 0.5094799999999999, 0.304104, 0.39677]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2910.JPG", "objects": {"bbox": [[0.2357745, 0.17310400000000004, 0.170243, 0.245084], [0.5261195000000001, 0.09129199999999998, 0.184235, 0.29986], [0.625466, 0.377107, 0.1875, 0.231742], [0.7220155, 0.6169239999999999, 0.186567, 0.27177], [0.6287315, 0.6158710000000001, 0.099347, 0.223666], [0.19076500000000002, 0.6018265, 0.10028, 0.114817], [0.123834, 0.7131314999999999, 0.114272, 0.197683]], "categories": [3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2911.JPG", "objects": {"bbox": [[0.2614275, 0.5526685, 0.111241, 0.168539], [0.22411400000000004, 0.3444525, 0.139226, 0.166081], [0.4130135, 0.1228935, 0.099813, 0.182935], [0.49580199999999996, 0.17766900000000002, 0.134328, 0.219452], [0.5797570000000001, 0.026686000000000015, 0.102612, 0.22507], [0.653451, 0.426264, 0.093284, 0.09375]], "categories": [3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2912.JPG", "objects": {"bbox": [[0.266091, 0.47191000000000005, 0.151586, 0.183638], [0.356344, 0.7236659999999999, 0.116604, 0.182584], [0.42863850000000003, 0.177668, 0.107509, 0.21243], [0.5275190000000001, 0.1671345, 0.138526, 0.259129], [0.590485, 0.015098500000000015, 0.13153, 0.247191], [0.757696, 0.4262645, 0.102612, 0.107795], [0.741371, 0.647472, 0.039646, 0.156952]], "categories": [3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2913.JPG", "objects": {"bbox": [[0.3656715, 0.088834, 0.201493, 0.261236], [0.491838, 0.490519, 0.146922, 0.231742]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2914.JPG", "objects": {"bbox": [[0.4934695, 0.2401685, 0.377799, 0.494031]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2915.JPG", "objects": {"bbox": [[0.4503269999999999, 0.18995849999999997, 0.336054, 0.554775]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2916.JPG", "objects": {"bbox": [[0.4682835, 0.2015445, 0.168843, 0.354635], [0.6497195, 0.139045, 0.233909, 0.40309], [0.127799, 0.44487350000000003, 0.258162, 0.366573], [0.8696360000000001, 0.8416435, 0.130364, 0.158357]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2917.JPG", "objects": {"bbox": [[0.18610100000000002, 0.202598, 0.639226, 0.627458]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2918.JPG", "objects": {"bbox": [[0.058535000000000004, 0.0003515000000000046, 0.834422, 0.616573], [0.0002334999999999976, 0.42169949999999995, 0.369403, 0.400281]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2919.JPG", "objects": {"bbox": [[0.19006500000000004, 0.08637600000000001, 0.715252, 0.806882]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2920.JPG", "objects": {"bbox": [[0.14179149999999996, 0.004564999999999986, 0.858209, 0.888694]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2921.JPG", "objects": {"bbox": [[0.2716885, 0.25877849999999997, 0.086287, 0.161517], [0.348648, 0.2998595, 0.072994, 0.130969], [0.5027984999999999, 0.4097615, 0.108675, 0.146419], [0.496502, 0.578301, 0.083256, 0.100772], [0.1914645, 0.6931174999999999, 0.098881, 0.146419], [0.8913245000000001, 0.024579, 0.034981, 0.060744], [0.7905785, 0.06495799999999999, 0.035681, 0.05302], [0.857043, 0.0291435, 0.029618, 0.051615]], "categories": [3, 3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2922.JPG", "objects": {"bbox": [[0.245102, 0.19908649999999997, 0.085588, 0.172051], [0.3290575, 0.2401685, 0.069963, 0.142907], [0.48320899999999994, 0.373595, 0.109608, 0.155548], [0.458256, 0.5466995, 0.090252, 0.089185], [0.429338, 0.714186, 0.033582, 0.055126], [0.15042, 0.635885, 0.10028, 0.155548], [0.891325, 0.007022500000000001, 0.040578, 0.066713], [0.856343, 0.009129000000000002, 0.028918, 0.050562], [0.78638, 0.04318849999999999, 0.039646, 0.050211]], "categories": [3, 3, 3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2923.JPG", "objects": {"bbox": [[0.0095615, 0.12640399999999996, 0.152519, 0.261236], [0.1588155, 0.19908699999999996, 0.119869, 0.222612], [0.420009, 0.4041435, 0.184468, 0.219803], [0.38736, 0.6499295, 0.145756, 0.176615], [0.3603075, 0.9318815, 0.033349, 0.062149], [0.00023300000000000057, 0.8886935, 0.038946, 0.105337]], "categories": [3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2924.JPG", "objects": {"bbox": [[0.373367, 0.723666, 0.143424, 0.226826], [0.43097, 0.03265500000000002, 0.123134, 0.250702], [0.5571360000000001, 0.056179999999999994, 0.116604, 0.223666], [0.8393195, 0.17310450000000002, 0.160681, 0.259129], [0.824627, 0.45891850000000006, 0.165578, 0.189607]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2925.JPG", "objects": {"bbox": [[0.288013, 0.30688150000000003, 0.353078, 0.593399]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2926.JPG", "objects": {"bbox": [[0.31903000000000004, 0.005618000000000012, 0.377332, 0.48139], [0.24277050000000003, 0.4884125, 0.315065, 0.372191]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2927.JPG", "objects": {"bbox": [[0.25069949999999996, 0.24613749999999995, 0.426073, 0.547753], [0.6753735000000001, 0.286868, 0.157649, 0.249298], [0.7187495, 0.8570925, 0.259795, 0.142907]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2928.JPG", "objects": {"bbox": [[0.31833050000000007, 0.0021070000000000255, 0.454991, 0.726124]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2929.JPG", "objects": {"bbox": [[0.27705250000000003, 0.074789, 0.371735, 0.64993]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2930.JPG", "objects": {"bbox": [[0.00023299999999998322, 0.2075135, 0.307136, 0.454003], [0.38829350000000007, 0.30582849999999995, 0.312733, 0.490169]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2931.JPG", "objects": {"bbox": [[0.27775150000000004, 0.2356035, 0.344683, 0.433989], [0.237407, 0.597261, 0.335354, 0.373244]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2932.JPG", "objects": {"bbox": [[0.4643185000000001, 0.32900300000000005, 0.332323, 0.488062]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2933.JPG", "objects": {"bbox": [[0.333722, 0.45540700000000006, 0.085588, 0.096208], [0.308069, 0.5466995, 0.093284, 0.090239], [0.5811565000000001, 0.48490150000000004, 0.170243, 0.174157], [0.6201019999999999, 0.6836375, 0.103312, 0.115871], [0.388293, 0.7106745, 0.05597, 0.094803]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2934.JPG", "objects": {"bbox": [[0.22271449999999998, 0.5466995, 0.321129, 0.428371], [0.505131, 0.43574450000000003, 0.288246, 0.553371], [0.31903, 0.1899575, 0.19916, 0.349719]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2935.JPG", "objects": {"bbox": [[0.4629195, 0.141503, 0.232509, 0.456812], [0.232043, 0.049157499999999965, 0.226912, 0.542135], [0.3346545, 0.642907, 0.271455, 0.328652]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2936.JPG", "objects": {"bbox": [[0.31833, 0.5797045, 0.241838, 0.280899], [0.36264, 0.3384835, 0.245802, 0.287921]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S2"}
{"file_name": "images/DSC_2970.JPG", "objects": {"bbox": [[0.3766320000000001, 0.3279495, 0.446362, 0.511587], [0.08185600000000001, 0.0003505000000000036, 0.33209, 0.337079]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2971.JPG", "objects": {"bbox": [[0.30433750000000004, 0.0003510000000000041, 0.418377, 0.244382]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2972.JPG", "objects": {"bbox": [[0.3416515, 0.5340594999999999, 0.086987, 0.100421], [0.6068095, 0.5291429999999999, 0.066931, 0.08427], [0.5921179999999999, 0.647472, 0.058302, 0.091292]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2973.JPG", "objects": {"bbox": [[0.21478550000000002, 0.37359499999999995, 0.159515, 0.173104], [0.3913245, 0.103933, 0.127799, 0.199438], [0.5858215, 0.005617999999999998, 0.117537, 0.227528], [0.5058305, 0.46243000000000006, 0.142957, 0.182584], [0.2800845, 0.605337, 0.117537, 0.175562], [0.7017260000000001, 0.385183, 0.10028, 0.111306]], "categories": [3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2974.JPG", "objects": {"bbox": [[0.29500899999999997, 0.16151699999999997, 0.324394, 0.423806], [0.0025654999999999983, 0.4659405, 0.111241, 0.377107], [0.00023250000000000007, 0.04213449999999999, 0.045243, 0.283357], [0.7304105, 0.0115875, 0.213853, 0.254213]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2975.JPG", "objects": {"bbox": [[0.377332, 0.06776700000000002, 0.33209, 0.382022], [0.551772, 0.5291429999999999, 0.234608, 0.393258]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2976.JPG", "objects": {"bbox": [[0.446595, 0.363062, 0.080924, 0.101826], [0.49067150000000004, 0.46207850000000006, 0.075793, 0.083567], [0.4146455, 0.683637, 0.095849, 0.132374], [0.589786, 0.06074499999999999, 0.097248, 0.176966], [0.656716, 0.3384835, 0.054338, 0.085323], [0.766325, 0.41818849999999996, 0.083022, 0.102879]], "categories": [3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2977.JPG", "objects": {"bbox": [[0.38829250000000004, 0.36060400000000004, 0.264459, 0.373596], [0.6068095, 0.24824399999999996, 0.232509, 0.423806], [0.4948695, 0.19346900000000003, 0.059935, 0.135534]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2979.JPG", "objects": {"bbox": [[0.2833485, 0.49894700000000003, 0.223181, 0.40941], [0.41301299999999996, 0.26228949999999995, 0.325326, 0.483497]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2981.JPG", "objects": {"bbox": [[0.3197295, 0.618329, 0.098881, 0.147472], [0.420009, 0.17907300000000004, 0.104478, 0.195576], [0.48554100000000006, 0.16362349999999998, 0.094216, 0.186447], [0.6690765000000001, 0.409761, 0.122901, 0.148876], [0.6310635, 0.5445924999999999, 0.092351, 0.100421], [0.46292, 0.385183, 0.033582, 0.083216]], "categories": [3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2982.JPG", "objects": {"bbox": [[0.5074624999999999, 0.05266799999999999, 0.404851, 0.492978], [0.352379, 0.4578655, 0.323694, 0.361657]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2983.JPG", "objects": {"bbox": [[0.289413, 0.10393249999999998, 0.322994, 0.655899], [0.5104945, 0.04564600000000002, 0.287547, 0.61236], [0.39365649999999996, 0.7608849999999999, 0.147155, 0.233146]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2984.JPG", "objects": {"bbox": [[0.36870349999999996, 0.17907300000000004, 0.361007, 0.515098]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2985.JPG", "objects": {"bbox": [[0.5174905, 0.11095550000000001, 0.275187, 0.434691]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2986.JPG", "objects": {"bbox": [[0.4309695, 0.20505650000000003, 0.298741, 0.482093], [0.01655799999999999, 0.022121000000000002, 0.30014, 0.456812]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2987.JPG", "objects": {"bbox": [[0.35937550000000007, 0.188553, 0.341651, 0.414326], [0.3393195, 0.5516155, 0.325093, 0.369733]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2988.JPG", "objects": {"bbox": [[0.3020055, 0.30091350000000006, 0.316465, 0.481039]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2989.JPG", "objects": {"bbox": [[0.24370349999999996, 0.2647475, 0.148321, 0.163975], [0.18843300000000002, 0.3781595, 0.141558, 0.166433], [0.302006, 0.6204355, 0.117304, 0.168539], [0.644123, 0.6393955, 0.148554, 0.167135], [0.56903, 0.5168535, 0.144356, 0.164677], [0.7047574999999999, 0.4002805, 0.154851, 0.193469], [0.618703, 0.2952945, 0.117304, 0.177669]], "categories": [3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2992.JPG", "objects": {"bbox": [[0.8087685, 0.28616600000000003, 0.158815, 0.226826], [0.530783, 0.222261, 0.146922, 0.207514], [0.33185600000000004, 0.3093395, 0.145056, 0.186447], [0.6984605, 0.5765455, 0.105877, 0.134129], [0.39225699999999997, 0.5663625, 0.073694, 0.109199], [0.6919310000000001, 0.8114465, 0.044776, 0.103933]], "categories": [3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2993.JPG", "objects": {"bbox": [[0.26609099999999997, 0.426264, 0.272388, 0.345154], [0.6497205, 0.256672, 0.244869, 0.398876], [0.374301, 0.8978235000000001, 0.189132, 0.099719]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2994.JPG", "objects": {"bbox": [[0.0034985000000000016, 0.09691, 0.243237, 0.395014], [0.48554149999999996, 0.2517555, 0.273787, 0.405197], [0.2800845, 0.760885, 0.210121, 0.22823]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2995.JPG", "objects": {"bbox": [[0.2497665, 0.24473300000000003, 0.159515, 0.319522], [0.38129599999999997, 0.5, 0.217118, 0.3125]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2996.JPG", "objects": {"bbox": [[0.44193049999999995, 0.1274575, 0.118237, 0.183989], [0.18330250000000003, 0.5775985, 0.136427, 0.227879], [0.639226, 0.563904, 0.123134, 0.161868], [0.679804, 0.3862365, 0.104244, 0.165379], [0.631763, 0.48349699999999995, 0.062966, 0.084972], [0.539645, 0.7872189999999999, 0.05084, 0.130618], [0.21408649999999999, 0.23665749999999997, 0.100979, 0.166081]], "categories": [3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2997.JPG", "objects": {"bbox": [[0.357976, 0.291784, 0.229478, 0.376756], [0.00023350000000000454, 0.5691714999999999, 0.098881, 0.326545]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2998.JPG", "objects": {"bbox": [[0.37570000000000003, 0.275281, 0.267024, 0.411868]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_2999.JPG", "objects": {"bbox": [[0.3889925, 0.3490175, 0.171175, 0.239817], [0.411147, 0.12464849999999998, 0.16861, 0.223315], [0.3080685, 0.5667135, 0.152519, 0.215239], [0.22341450000000002, 0.6674855, 0.130597, 0.177669], [0.5408115, 0.0003509999999999902, 0.176539, 0.261938]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3000.JPG", "objects": {"bbox": [[0.43959899999999996, 0.0003510000000000041, 0.192164, 0.226826], [0.5447755000000001, 0.2025985, 0.233909, 0.196629], [0.4689835, 0.39922749999999996, 0.252099, 0.300913]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3002.JPG", "objects": {"bbox": [[0.571129, 0.2025985, 0.216884, 0.308989], [0.7849815, 0.46383450000000004, 0.100979, 0.176615], [0.659048, 0.5105335, 0.11334, 0.114817]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3003.JPG", "objects": {"bbox": [[0.4083495, 0.14044949999999998, 0.163479, 0.221559], [0.382696, 0.3865875, 0.157416, 0.191713], [0.3136655, 0.373596, 0.072295, 0.156952], [0.444263, 0.699087, 0.08722, 0.125], [0.7747195, 0.369031, 0.065299, 0.154494], [0.22108200000000003, 0.5596909999999999, 0.116604, 0.158006]], "categories": [3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3004.JPG", "objects": {"bbox": [[0.4629195, 0.012640000000000012, 0.247435, 0.303722], [0.4503265, 0.37359549999999997, 0.239739, 0.291433], [0.34305050000000004, 0.356039, 0.123601, 0.251756], [0.21874949999999999, 0.6509830000000001, 0.181903, 0.213132]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3005.JPG", "objects": {"bbox": [[0.31436600000000003, 0.298806, 0.279384, 0.442416], [0.578125, 0.316362, 0.275886, 0.49368], [0.004897499999999999, 0.9097615000000001, 0.119869, 0.087781]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3006.JPG", "objects": {"bbox": [[0.571829, 0.38764049999999994, 0.29944, 0.417837], [0.776353, 0.8160115, 0.222248, 0.183989]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3007.JPG", "objects": {"bbox": [[0.2763525, 0.022121000000000002, 0.273787, 0.411166], [0.5321835, 0.366573, 0.278451, 0.46243]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3008.JPG", "objects": {"bbox": [[0.592817, 0.3911515, 0.292444, 0.372191]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3009.JPG", "objects": {"bbox": [[0.17607299999999998, 0.42626450000000005, 0.158582, 0.262289], [0.3027055, 0.318469, 0.131297, 0.230688], [0.4675835, 0.13693799999999998, 0.161847, 0.30934], [0.6823695000000001, 0.256672, 0.152985, 0.327598], [0.833955, 0.27879200000000004, 0.062034, 0.202598], [0.35634350000000004, 0.742276, 0.071595, 0.126404], [0.28568099999999996, 0.729283, 0.078358, 0.11236]], "categories": [3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3010.JPG", "objects": {"bbox": [[0.0002334999999999976, 0.00035100000000001796, 0.296175, 0.472612], [0.3400185, 0.1274575, 0.513293, 0.663975]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3011.JPG", "objects": {"bbox": [[0.285681, 0.1555475, 0.616604, 0.759831]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3012.JPG", "objects": {"bbox": [[0.2544305, 0.43785099999999993, 0.216185, 0.248244], [0.535448, 0.30793499999999996, 0.11194, 0.210674], [0.7280785, 0.32689599999999996, 0.152519, 0.266854], [0.8556435, 0.5972615, 0.123601, 0.141503], [0.760728, 0.643961, 0.08792, 0.073736], [0.292677, 0.7247195, 0.103312, 0.130969]], "categories": [3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3013.JPG", "objects": {"bbox": [[0.22341400000000003, 0.21313200000000002, 0.116604, 0.176966], [0.5093285, 0.030548000000000006, 0.132463, 0.210674], [0.253032, 0.581461, 0.16791, 0.245084], [0.3330225, 0.45540749999999997, 0.086287, 0.105337], [0.466651, 0.182936, 0.079524, 0.108848], [0.6310635, 0.25316, 0.088619, 0.119382], [0.7460355000000001, 0.545646, 0.098647, 0.092346], [0.42793800000000004, 0.8195224999999999, 0.073228, 0.130969], [0.736707, 0.8591989999999999, 0.052938, 0.096208]], "categories": [3, 3, 3, 3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3014.JPG", "objects": {"bbox": [[0.5471085, 0.15800550000000002, 0.372201, 0.578301], [0.432602, 0.5783005, 0.229478, 0.280899], [0.0002334999999999976, 0.7187494999999999, 0.112873, 0.275281], [0.8889925, 0.742275, 0.111007, 0.25632]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3015.JPG", "objects": {"bbox": [[0.40531700000000004, 0.2833565, 0.36334, 0.484551], [0.8260259999999999, 0.8451550000000001, 0.173974, 0.154494]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3016.JPG", "objects": {"bbox": [[0.55014, 0.0035109999999999864, 0.239506, 0.276334], [0.5524715, 0.30442349999999996, 0.279851, 0.385183], [0.4186095000000001, 0.581812, 0.357743, 0.388694]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3017.JPG", "objects": {"bbox": [[0.49486949999999996, 0.27984549999999997, 0.398787, 0.496489]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3018.JPG", "objects": {"bbox": [[0.40461700000000006, 0.400632, 0.236474, 0.253862]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/DSC_3019.JPG", "objects": {"bbox": [[0.37733250000000007, 0.23911500000000002, 0.459655, 0.661166]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S3"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 22.00.21.jpeg", "objects": {"bbox": [[0.0010419999999999874, 0.0031255000000000033, 0.480208, 0.375781], [0.017708500000000016, 0.384375, 0.522917, 0.266406], [0.2885415, 0.5031245, 0.535417, 0.376563], [0.078125, 0.667188, 0.161458, 0.116406]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 22.02.49.jpeg", "objects": {"bbox": [[0.09062549999999997, 0.15625049999999996, 0.864583, 0.657031], [0.0010420000000000013, 0.1015625, 0.080208, 0.574219]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 22.19.22.jpeg", "objects": {"bbox": [[0.45520800000000006, 0.17578100000000002, 0.407292, 0.298438], [0.10625000000000001, 0.45781249999999996, 0.501042, 0.386719]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 22.19.29.jpeg", "objects": {"bbox": [[0.08020849999999999, 0.2906255, 0.404167, 0.310937], [0.6416665, 0.33515649999999997, 0.346875, 0.228125]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 22.25.52.jpeg", "objects": {"bbox": [[0.29270799999999997, 0.329688, 0.39375, 0.272656], [0.8395835, 0.327344, 0.160417, 0.227344]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 22.25.54.jpeg", "objects": {"bbox": [[0.007291500000000006, 0.0007814999999999905, 0.484375, 0.349219], [0.31666700000000003, 0.4945315, 0.498958, 0.350781], [0.03854149999999995, 0.36015600000000003, 0.560417, 0.276562], [0.11875, 0.6570315, 0.15625, 0.109375]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 23.07.31.jpeg", "objects": {"bbox": [[0.3416665, 0.2859375, 0.283333, 0.198437]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 23.07.36.jpeg", "objects": {"bbox": [[0.0289065, 0.2, 0.328125, 0.538542], [0.3390625, 0.1374995, 0.567187, 0.828125], [0.09218699999999999, 0.0010415000000000008, 0.333594, 0.195833]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 23.07.40.jpeg", "objects": {"bbox": [[0.08229149999999999, 0.2929695, 0.408333, 0.292187], [0.6385419999999999, 0.31640650000000003, 0.342708, 0.238281]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-08 at 23.07.41.jpeg", "objects": {"bbox": [[0.0989585, 0.2781255, 0.753125, 0.375781]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.01.06.jpeg", "objects": {"bbox": [[0.1177085, 0.200781, 0.860417, 0.558594]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.02.12.jpeg", "objects": {"bbox": [[0.08541650000000006, 0.2210935, 0.866667, 0.589063]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.42.32.jpeg", "objects": {"bbox": [[0.6257815, 0.7781245, 0.225781, 0.221875], [0.3085945, 0.157292, 0.142187, 0.255208]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.44.10.jpeg", "objects": {"bbox": [[0.18906249999999997, 0.0010415000000000285, 0.651563, 0.934375]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.44.14.jpeg", "objects": {"bbox": [[0.12421899999999997, 0.0010419999999999874, 0.652344, 0.9]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.44.15 (1).jpeg", "objects": {"bbox": [[0.05312449999999996, 0.13749999999999998, 0.728125, 0.429688], [0.32083300000000003, 0.708594, 0.41875, 0.291406]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.44.15.jpeg", "objects": {"bbox": [[0.042708000000000024, 0.11640649999999997, 0.9125, 0.685937]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.44.16.jpeg", "objects": {"bbox": [[0.08541700000000002, 0.185156, 0.813542, 0.560156], [0.8687499999999999, 0.402344, 0.13125, 0.226562]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.44.31.jpeg", "objects": {"bbox": [[0.05312450000000002, 0.05156299999999997, 0.903125, 0.757812]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.45.27.jpeg", "objects": {"bbox": [[0.35625, 0.0010419999999999874, 0.591406, 0.848958], [0.0007810000000000039, 0.5552079999999999, 0.289844, 0.39375]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.45.45.jpeg", "objects": {"bbox": [[0.10520850000000004, 0.21328100000000005, 0.858333, 0.597656]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.02.jpeg", "objects": {"bbox": [[0.0010415000000000285, 0.09843750000000001, 0.934375, 0.717187]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.14.jpeg", "objects": {"bbox": [[0.1499995, 0.21718749999999998, 0.516667, 0.404687]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.17.jpeg", "objects": {"bbox": [[0.20312499999999994, 0.12395849999999997, 0.698438, 0.829167], [0.314844, 0.0010419999999999943, 0.29375, 0.123958]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.18 (1).jpeg", "objects": {"bbox": [[0.19843800000000006, 0.15520800000000007, 0.622656, 0.819792], [0.338281, 0.0010420000000000013, 0.272656, 0.173958]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.18.jpeg", "objects": {"bbox": [[0.1874995, 0.1890625, 0.397917, 0.275781]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.19 (1).jpeg", "objects": {"bbox": [[0.366406, 0.007291500000000006, 0.5625, 0.954167], [0.0007810000000000039, 0.8010415000000001, 0.392188, 0.196875]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.19.jpeg", "objects": {"bbox": [[0.0864585, 0.178906, 0.828125, 0.639844]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.20 (1).jpeg", "objects": {"bbox": [[0.10103005500000004, 0.23761052, 0.35489285, 0.23683524]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.20.jpeg", "objects": {"bbox": [[0.0010419999999999874, 0.04375000000000001, 0.907292, 0.753906]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.21 (1).jpeg", "objects": {"bbox": [[0.37500049999999996, 0.0007815000000000183, 0.421875, 0.313281], [0.004167000000000004, 0.41484449999999995, 0.267708, 0.204687], [0.42708350000000006, 0.49218749999999994, 0.152083, 0.080469]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.21 (2).jpeg", "objects": {"bbox": [[0.21484399999999998, 0.13124999999999998, 0.653906, 0.823958], [0.339063, 0.0010415000000000008, 0.285156, 0.145833]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.21 (3).jpeg", "objects": {"bbox": [[0.006250000000000033, 0.039063000000000014, 0.923958, 0.716406]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.21.jpeg", "objects": {"bbox": [[0.09895849999999998, 0.16874949999999997, 0.403125, 0.280469]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.22 (1).jpeg", "objects": {"bbox": [[0.1802085, 0.16328149999999997, 0.541667, 0.404687], [0.290625, 0.6656255, 0.301042, 0.253125], [0.005208500000000005, 0.2062505, 0.196875, 0.132031]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-09 at 15.47.22.jpeg", "objects": {"bbox": [[0.127083, 0.16718700000000003, 0.432292, 0.298438]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.46.48.jpeg", "objects": {"bbox": [[0.4177085, 0.27265649999999997, 0.103125, 0.060937], [0.294792, 0.3046875, 0.125, 0.063281], [0.6020835, 0.35, 0.139583, 0.052344]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.00.jpeg", "objects": {"bbox": [[0.41770799999999997, 0.3031245, 0.107292, 0.061719], [0.3364585, 0.3578125, 0.122917, 0.071875], [0.7374999999999999, 0.477344, 0.048958, 0.041406], [0.6104160000000001, 0.3109375, 0.151042, 0.055469], [0.4416665, 0.48906299999999997, 0.053125, 0.05625]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.23.jpeg", "objects": {"bbox": [[0.4822915, 0.336719, 0.108333, 0.101562], [0.5895834999999999, 0.383594, 0.128125, 0.08125]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.29.jpeg", "objects": {"bbox": [[0.497917, 0.33125, 0.119792, 0.092188], [0.6114585, 0.37734399999999996, 0.134375, 0.070312], [0.2614585, 0.4742185, 0.135417, 0.065625]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.41.jpeg", "objects": {"bbox": [[0.509375, 0.285937, 0.123958, 0.102344], [0.535417, 0.39375000000000004, 0.138542, 0.085938]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.48.jpeg", "objects": {"bbox": [[0.49791650000000004, 0.2906245, 0.116667, 0.086719], [0.558333, 0.382032, 0.1125, 0.082812]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.57.jpeg", "objects": {"bbox": [[0.574797885, 0.36890637, 0.12485903, 0.07423492], [0.6383449000000001, 0.44180602, 0.1510454, 0.07738548]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.58.jpeg", "objects": {"bbox": [[0.5218745, 0.2929685, 0.096875, 0.117969], [0.3937495, 0.407813, 0.104167, 0.085156], [0.603125, 0.396875, 0.1375, 0.08125], [0.23020850000000004, 0.492969, 0.115625, 0.072656]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.59 (1).jpeg", "objects": {"bbox": [[0.388542, 0.3265625, 0.11875, 0.076563], [0.28020799999999996, 0.359375, 0.117708, 0.075], [0.5895835, 0.39375, 0.141667, 0.064844], [0.325, 0.515625, 0.088542, 0.066406]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.59 (2).jpeg", "objects": {"bbox": [[0.367708, 0.38906250000000003, 0.11875, 0.084375], [0.28645849999999995, 0.4445315, 0.127083, 0.079687], [0.5874999999999999, 0.399219, 0.1, 0.053906], [0.661458, 0.5789059999999999, 0.0875, 0.06875], [0.3593755, 0.5843754999999999, 0.071875, 0.067187]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.48.59.jpeg", "objects": {"bbox": [[0.3177085, 0.3726565, 0.108333, 0.086719], [0.264583, 0.453125, 0.111458, 0.075], [0.6906249999999999, 0.510156, 0.08125, 0.078906], [0.547917, 0.3562495, 0.061458, 0.042969]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.00.jpeg", "objects": {"bbox": [[0.16249999999999998, 0.367187, 0.11875, 0.13125], [0.573958, 0.372656, 0.1875, 0.092188]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.01.jpeg", "objects": {"bbox": [[0.6395835, 0.398438, 0.160417, 0.091406], [0.29166650000000005, 0.5007809999999999, 0.095833, 0.122656]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.02 (1).jpeg", "objects": {"bbox": [[0.3239585, 0.44531299999999996, 0.385417, 0.272656]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.02 (2).jpeg", "objects": {"bbox": [[0.48124999999999996, 0.6257809999999999, 0.155208, 0.085938], [0.09895849999999999, 0.345312, 0.152083, 0.085938]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.02.jpeg", "objects": {"bbox": [[0.3999995, 0.561719, 0.141667, 0.08125], [0.33125, 0.4984375, 0.123958, 0.069531]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.03 (1).jpeg", "objects": {"bbox": [[0.33854199999999995, 0.309375, 0.3375, 0.202344], [0.578125, 0.28749949999999996, 0.288542, 0.321875]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.03 (2).jpeg", "objects": {"bbox": [[0.36104809000000004, 0.25735129, 0.4496223, 0.21049616]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.03 (3).jpeg", "objects": {"bbox": [[0.273958, 0.309375, 0.307292, 0.227344], [0.49895849999999997, 0.654688, 0.108333, 0.066406]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.03 (4).jpeg", "objects": {"bbox": [[0.21041649999999998, 0.2554685, 0.339583, 0.236719], [0.5552085, 0.577344, 0.110417, 0.103906]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.03 (5).jpeg", "objects": {"bbox": [[0.3677085, 0.26796849999999994, 0.429167, 0.311719]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.03.jpeg", "objects": {"bbox": [[0.3239585, 0.4468745, 0.385417, 0.271875]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.04 (1).jpeg", "objects": {"bbox": [[0.48541600000000007, 0.503906, 0.169792, 0.097656], [0.05729150000000001, 0.20078150000000003, 0.160417, 0.105469]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.04 (2).jpeg", "objects": {"bbox": [[0.21875, 0.245312, 0.342708, 0.335938]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.04 (3).jpeg", "objects": {"bbox": [[0.37291700000000005, 0.29843749999999997, 0.325, 0.290625]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.04.jpeg", "objects": {"bbox": [[0.353125, 0.346094, 0.373958, 0.214062]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.05 (1).jpeg", "objects": {"bbox": [[0.2843755, 0.3140625, 0.314583, 0.324219], [0.590625, 0.33984400000000003, 0.1875, 0.151562]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.05 (2).jpeg", "objects": {"bbox": [[0.270833, 0.401563, 0.30625, 0.253906], [0.604167, 0.3593745, 0.19375, 0.145313], [0.520833, 0.53125, 0.169792, 0.125]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.05 (3).jpeg", "objects": {"bbox": [[0.5750005, 0.32578150000000006, 0.189583, 0.159375], [0.1697915, 0.5617185, 0.347917, 0.215625], [0.7447919999999999, 0.5499999999999999, 0.182292, 0.14375]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.05.jpeg", "objects": {"bbox": [[0.40625, 0.2281255, 0.34375, 0.250781]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.06 (1).jpeg", "objects": {"bbox": [[0.20937450000000002, 0.1765625, 0.596875, 0.390625]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.06.jpeg", "objects": {"bbox": [[0.08229150000000002, 0.23750049999999998, 0.577083, 0.394531]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.07 (1).jpeg", "objects": {"bbox": [[0.1666665, 0.21484349999999997, 0.208333, 0.134375], [0.65625, 0.6085935, 0.11875, 0.150781]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.49.07.jpeg", "objects": {"bbox": [[0.26145799999999997, 0.3781245, 0.2, 0.139063]], "categories": [3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.53.20.jpeg", "objects": {"bbox": [[0.6885415, 0.5195310000000001, 0.133333, 0.0875], [0.4531255, 0.34765599999999997, 0.114583, 0.092188], [0.1624995, 0.5109375, 0.104167, 0.078125], [0.69375, 0.6546875, 0.09375, 0.050781]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.53.32.jpeg", "objects": {"bbox": [[0.696875, 0.434375, 0.119792, 0.102344], [0.475, 0.3, 0.107292, 0.08125]], "categories": [3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.53.33 (1).jpeg", "objects": {"bbox": [[0.145833, 0.39453099999999997, 0.144792, 0.110156], [0.5666665000000001, 0.38125000000000003, 0.103125, 0.095312], [0.6333335, 0.4835935, 0.089583, 0.059375]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.53.33.jpeg", "objects": {"bbox": [[0.4260415, 0.253125, 0.115625, 0.08125], [0.636459, 0.4328125, 0.155208, 0.094531], [0.130208, 0.42265600000000003, 0.105208, 0.083594], [0.6437505, 0.571094, 0.102083, 0.047656]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.57.54.jpeg", "objects": {"bbox": [[0.5479164999999999, 0.19062450000000003, 0.240625, 0.186719], [0.048958, 0.7078119999999999, 0.26875, 0.127344], [0.21666649999999998, 0.5757815000000001, 0.177083, 0.086719]], "categories": [3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.58.32.jpeg", "objects": {"bbox": [[0.5218745, 0.16328150000000002, 0.246875, 0.207031], [0.0010420000000000013, 0.690625, 0.213542, 0.1375], [0.16875, 0.8101565, 0.176042, 0.176563], [0.177083, 0.2546875, 0.223958, 0.209375]], "categories": [3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 11.58.33.jpeg", "objects": {"bbox": [[0.5479164999999999, 0.19062450000000003, 0.240625, 0.186719], [0.048958, 0.707813, 0.276042, 0.11875], [0.2541665, 0.8023435, 0.170833, 0.173437], [0.25104200000000004, 0.26328149999999995, 0.230208, 0.204687], [0.2020835, 0.5710930000000001, 0.189583, 0.104688]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 16.17.53.jpeg", "objects": {"bbox": [[0.4552085, 0.3507815, 0.071875, 0.053125], [0.146875, 0.5210935, 0.09375, 0.055469], [0.661458, 0.5281254999999999, 0.1, 0.053125], [0.6333335, 0.574219, 0.066667, 0.04375], [0.519792, 0.5789059999999999, 0.055208, 0.042188], [0.633333, 0.494531, 0.088542, 0.0375]], "categories": [3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 16.17.57.jpeg", "objects": {"bbox": [[0.6583335, 0.6085940000000001, 0.109375, 0.0875], [0.2791665, 0.14062449999999999, 0.170833, 0.115625], [0.419792, 0.601562, 0.10625, 0.092188], [0.698958, 0.525, 0.16875, 0.129688], [0.651041, 0.457031, 0.163542, 0.082812]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 16.18.01.jpeg", "objects": {"bbox": [[0.697917, 0.117188, 0.15625, 0.128906], [0.29583349999999997, 0.227344, 0.191667, 0.147656], [0.771875, 0.313281, 0.125, 0.096094], [0.658334, 0.364844, 0.111458, 0.082812], [0.0010420000000000013, 0.565625, 0.14375, 0.0875]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 16.18.03.jpeg", "objects": {"bbox": [[0.7020839999999999, 0.125, 0.130208, 0.1125], [0.2802085, 0.221875, 0.203125, 0.153906], [0.771875, 0.313281, 0.125, 0.096094], [0.6583335, 0.3648435, 0.103125, 0.055469], [0.0010420000000000013, 0.565625, 0.14375, 0.0875]], "categories": [3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
{"file_name": "images/WhatsApp Image 2022-10-10 at 16.18.06.jpeg", "objects": {"bbox": [[0.4770835, 0.3125, 0.066667, 0.0625], [0.5458335000000001, 0.5351560000000001, 0.041667, 0.070312], [0.170833, 0.492969, 0.0875, 0.052344], [0.6520835, 0.47421800000000003, 0.079167, 0.048438], [0.6791665, 0.5031249999999999, 0.096875, 0.058594], [0.6468755, 0.542969, 0.070833, 0.047656]], "categories": [3, 3, 3, 3, 3, 3]}, "species": "bouisthami", "location": "bouisthami/S4"}
|