src
stringlengths
51
3.39k
tgt
stringlengths
51
3.39k
bleu
float64
0
1
tgt_index
listlengths
1
495
original_filename
stringlengths
7
201
filename
stringlengths
8
13
page_idx
int64
0
1.6k
src_layout
listlengths
1
495
tgt_layout
listlengths
1
495
Searching and Reporting: Cryptographic protocols that support searching and reporting on encrypted data – any information about the plaintext not deducible from the search criteria are guaranteed to be hidden. Fully Homomorphic Encryption: Cryptographic protocols that support operations on the underlying plaintext of an encryption – any information about the plaintext is guaranteed to be hidden. Secure Data Aggregation: Aggregating data without compromising privacy. Key Management Provenance End-point Input Validation: Mechanism to validate whether input data is coming from an authenticated source, such as digital signatures. Syntactic: Validation at a syntactic level. Semantic: Semantic validation is an important concern. Generally, semantic validation would validate typical business rules such as a due date. This capability can extend to the relationship of the particular file format and that the constructs which may be based on a standard can have a variance that may poise a denial of service in the form of a lockup of an application. This may also be observed even when using data translators which may not recognize the particular variant. Protocols and data formats may be altered by a vendor using reserved data field for example that will allow their products to have capabilities that differentiate their products from other products. This may also appears in differences in versions of systems for consumer devices, such as mobile devices such as cell phones. The semantic of a message and the data that is to be transported should be validated to assure at minimum conformant with standards. The use of digital signatures will be important to provide assurance that the data has been verified using a validator or data checker. This may be important to provide assurance that data from a sensor or from the data provider. This capability is important particularly if the data is to be Transformed or in the Curation of the data. If that data fails to meet the requirements it may be discarded and if that data continues to present a problem the source may be restricted in its ability to submit the data. These types of errors would be logged and prevented from being able to be disseminated to consumers. The Big Data system is a special case where use of digital signatures will be very important. Communication Integrity: Integrity of data in transit, enforced for example by using TLS.
Searching and Reporting: Cryptographic protocols that support searching and reporting on encrypted data – any information about the plaintext not deducible from the search criteria are guaranteed to be hidden. Fully Homomorphic Encryption: Cryptographic protocols that support operations on the underlying plaintext of an encryption – any information about the plaintext is guaranteed to be hidden. Secure Data Aggregation: Aggregating data without compromising privacy. Key Management Provenance End-point Input Validation: Mechanism to validate whether input data is coming from an authenticated source, such as digital signatures. Syntactic: Validation at a syntactic level. Semantic: Semantic validation is an important concern. Generally, semantic validation would validate typical business rules such as a due date. This capability can extend to the relationship of the particular file format and that the constructs which may be based on a standard can have a variance that may poise a denial of service in the form of a lockup of an application. This may also be observed even when using data translators which may not recognize the particular variant. Protocols and data formats may be altered by a vendor using reserved data field for example that will allow their products to have capabilities that differentiate their products from other products. This may also appears in differences in versions of systems for consumer devices, such as mobile devices such as cell phones. The semantic of a message and the data that is to be transported should be validated to assure at minimum conformant with standards. The use of digital signatures will be important to provide assurance that the data has been verified using a validator or data checker. This may be important to provide assurance that data from a sensor or from the data provider. This capability is important particularly if the data is to be Transformed or in the Curation of the data. If that data fails to meet the requirements it may be discarded and if that data continues to present a problem the source may be restricted in its ability to submit the data. These types of errors would be logged and prevented from being able to be disseminated to consumers. The Big Data system is a special case where use of digital signatures will be very important. Communication Integrity: Integrity of data in transit, enforced for example by using TLS.
1
[ 0, 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 ]
M0110_v9_2689493468.docx
task-1430-681
22
[ [ 264, 93, 337, 107 ], [ 341, 93, 369, 107 ], [ 373, 93, 452, 107 ], [ 456, 93, 559, 107 ], [ 563, 93, 632, 107 ], [ 636, 93, 666, 107 ], [ 670, 93, 727, 107 ], [ 731, 93, 801, 107 ], [ 805, 93, 833, 107 ], [ 264, 113, 333, 126 ], [ 337, 113, 356, 126 ], [ 360, 113, 434, 126 ], [ 438, 113, 471, 126 ], [ 475, 113, 484, 126 ], [ 488, 113, 514, 126 ], [ 518, 113, 605, 126 ], [ 609, 113, 652, 126 ], [ 656, 113, 681, 126 ], [ 685, 113, 749, 126 ], [ 753, 113, 778, 126 ], [ 782, 113, 854, 126 ], [ 264, 132, 300, 146 ], [ 304, 132, 329, 146 ], [ 333, 132, 381, 146 ], [ 384, 132, 437, 146 ], [ 441, 132, 464, 146 ], [ 468, 132, 553, 146 ], [ 557, 132, 572, 146 ], [ 576, 132, 595, 146 ], [ 599, 132, 654, 146 ], [ 264, 164, 300, 178 ], [ 304, 164, 411, 178 ], [ 415, 164, 500, 178 ], [ 504, 164, 607, 178 ], [ 611, 164, 680, 178 ], [ 684, 164, 714, 178 ], [ 718, 164, 775, 178 ], [ 779, 164, 858, 178 ], [ 862, 164, 881, 178 ], [ 264, 184, 289, 198 ], [ 293, 184, 371, 198 ], [ 375, 184, 439, 198 ], [ 443, 184, 458, 198 ], [ 462, 184, 480, 198 ], [ 484, 184, 564, 198 ], [ 568, 184, 577, 198 ], [ 581, 184, 607, 198 ], [ 611, 184, 698, 198 ], [ 702, 184, 745, 198 ], [ 749, 184, 773, 198 ], [ 777, 184, 842, 198 ], [ 846, 184, 857, 198 ], [ 264, 203, 349, 217 ], [ 353, 203, 368, 217 ], [ 372, 203, 391, 217 ], [ 395, 203, 450, 217 ], [ 205, 235, 256, 249 ], [ 260, 235, 295, 249 ], [ 299, 235, 395, 249 ], [ 399, 235, 486, 249 ], [ 490, 235, 523, 249 ], [ 527, 235, 585, 249 ], [ 589, 235, 693, 249 ], [ 697, 235, 754, 249 ], [ 205, 268, 233, 281 ], [ 237, 268, 337, 281 ], [ 164, 329, 280, 348 ], [ 205, 354, 279, 368 ], [ 283, 354, 323, 368 ], [ 327, 354, 408, 368 ], [ 413, 354, 498, 368 ], [ 502, 354, 517, 368 ], [ 521, 354, 579, 368 ], [ 583, 354, 645, 368 ], [ 649, 354, 688, 368 ], [ 692, 354, 725, 368 ], [ 729, 354, 740, 368 ], [ 744, 354, 797, 368 ], [ 801, 354, 837, 368 ], [ 841, 354, 859, 368 ], [ 205, 374, 308, 387 ], [ 312, 374, 366, 387 ], [ 370, 374, 403, 387 ], [ 407, 374, 423, 387 ], [ 427, 374, 472, 387 ], [ 476, 374, 556, 387 ], [ 264, 406, 337, 420 ], [ 341, 406, 415, 420 ], [ 419, 406, 434, 420 ], [ 438, 406, 446, 420 ], [ 451, 406, 515, 420 ], [ 519, 406, 558, 420 ], [ 264, 438, 338, 452 ], [ 350, 438, 418, 452 ], [ 430, 438, 502, 452 ], [ 514, 438, 525, 452 ], [ 538, 438, 556, 452 ], [ 568, 438, 642, 452 ], [ 654, 438, 717, 452 ], [ 729, 438, 804, 452 ], [ 816, 438, 882, 452 ], [ 264, 457, 337, 471 ], [ 342, 457, 388, 471 ], [ 393, 457, 451, 471 ], [ 457, 457, 505, 471 ], [ 511, 457, 573, 471 ], [ 579, 457, 615, 471 ], [ 620, 457, 654, 471 ], [ 659, 457, 675, 471 ], [ 680, 457, 689, 471 ], [ 695, 457, 723, 471 ], [ 728, 457, 766, 471 ], [ 777, 457, 806, 471 ], [ 812, 457, 882, 471 ], [ 264, 477, 290, 490 ], [ 296, 477, 346, 490 ], [ 352, 477, 368, 490 ], [ 373, 477, 398, 490 ], [ 403, 477, 490, 490 ], [ 496, 477, 511, 490 ], [ 517, 477, 541, 490 ], [ 547, 477, 617, 490 ], [ 623, 477, 646, 490 ], [ 651, 477, 702, 490 ], [ 707, 477, 735, 490 ], [ 740, 477, 771, 490 ], [ 776, 477, 801, 490 ], [ 806, 477, 882, 490 ], [ 264, 496, 308, 510 ], [ 313, 496, 345, 510 ], [ 350, 496, 369, 510 ], [ 374, 496, 418, 510 ], [ 423, 496, 442, 510 ], [ 448, 496, 456, 510 ], [ 462, 496, 527, 510 ], [ 532, 496, 558, 510 ], [ 564, 496, 599, 510 ], [ 604, 496, 613, 510 ], [ 618, 496, 680, 510 ], [ 686, 496, 716, 510 ], [ 721, 496, 753, 510 ], [ 758, 496, 797, 510 ], [ 803, 496, 811, 510 ], [ 817, 496, 862, 510 ], [ 867, 496, 882, 510 ], [ 264, 515, 315, 529 ], [ 321, 515, 335, 529 ], [ 340, 515, 365, 529 ], [ 371, 515, 406, 529 ], [ 412, 515, 427, 529 ], [ 433, 515, 441, 529 ], [ 447, 515, 495, 529 ], [ 501, 515, 516, 529 ], [ 522, 515, 540, 529 ], [ 545, 515, 631, 529 ], [ 642, 515, 672, 529 ], [ 677, 515, 709, 529 ], [ 714, 515, 743, 529 ], [ 749, 515, 768, 529 ], [ 773, 515, 841, 529 ], [ 847, 515, 882, 529 ], [ 264, 535, 305, 549 ], [ 316, 535, 354, 549 ], [ 365, 535, 398, 549 ], [ 408, 535, 487, 549 ], [ 498, 535, 541, 549 ], [ 552, 535, 583, 549 ], [ 594, 535, 619, 549 ], [ 629, 535, 699, 549 ], [ 710, 535, 735, 549 ], [ 745, 535, 816, 549 ], [ 826, 535, 882, 549 ], [ 264, 555, 333, 569 ], [ 338, 555, 365, 569 ], [ 370, 555, 403, 569 ], [ 407, 555, 464, 569 ], [ 469, 555, 500, 569 ], [ 504, 555, 523, 569 ], [ 527, 555, 580, 569 ], [ 584, 555, 602, 569 ], [ 606, 555, 615, 569 ], [ 619, 555, 671, 569 ], [ 675, 555, 714, 569 ], [ 718, 555, 783, 569 ], [ 787, 555, 820, 569 ], [ 824, 555, 857, 569 ], [ 861, 555, 882, 569 ], [ 264, 574, 327, 588 ], [ 333, 574, 363, 588 ], [ 370, 574, 395, 588 ], [ 402, 574, 441, 588 ], [ 447, 574, 482, 588 ], [ 489, 574, 553, 588 ], [ 560, 574, 575, 588 ], [ 582, 574, 617, 588 ], [ 624, 574, 706, 588 ], [ 712, 574, 742, 588 ], [ 749, 574, 841, 588 ], [ 847, 574, 882, 588 ], [ 264, 594, 329, 607 ], [ 335, 594, 371, 607 ], [ 377, 594, 418, 607 ], [ 424, 594, 493, 607 ], [ 499, 594, 529, 607 ], [ 535, 594, 566, 607 ], [ 572, 594, 602, 607 ], [ 608, 594, 666, 607 ], [ 673, 594, 686, 607 ], [ 692, 594, 774, 607 ], [ 781, 594, 794, 607 ], [ 800, 594, 861, 607 ], [ 867, 594, 882, 607 ], [ 264, 613, 323, 627 ], [ 334, 613, 355, 627 ], [ 366, 613, 439, 627 ], [ 450, 613, 508, 627 ], [ 519, 613, 553, 627 ], [ 564, 613, 580, 627 ], [ 590, 613, 641, 627 ], [ 652, 613, 706, 627 ], [ 717, 613, 751, 627 ], [ 762, 613, 777, 627 ], [ 788, 613, 813, 627 ], [ 824, 613, 882, 627 ], [ 272, 632, 300, 646 ], [ 308, 632, 374, 646 ], [ 382, 632, 397, 646 ], [ 405, 632, 414, 646 ], [ 422, 632, 486, 646 ], [ 494, 632, 521, 646 ], [ 530, 632, 554, 646 ], [ 562, 632, 595, 646 ], [ 603, 632, 634, 646 ], [ 642, 632, 653, 646 ], [ 661, 632, 676, 646 ], [ 685, 632, 703, 646 ], [ 711, 632, 798, 646 ], [ 807, 632, 855, 646 ], [ 864, 632, 882, 646 ], [ 264, 652, 332, 666 ], [ 341, 652, 356, 666 ], [ 365, 652, 412, 666 ], [ 421, 652, 435, 666 ], [ 444, 652, 514, 666 ], [ 523, 652, 609, 666 ], [ 618, 652, 650, 666 ], [ 659, 652, 735, 666 ], [ 744, 652, 771, 666 ], [ 780, 652, 805, 666 ], [ 814, 652, 829, 666 ], [ 837, 652, 882, 666 ], [ 264, 672, 340, 685 ], [ 346, 672, 371, 685 ], [ 378, 672, 396, 685 ], [ 403, 672, 476, 685 ], [ 483, 672, 498, 685 ], [ 504, 672, 560, 685 ], [ 567, 672, 640, 685 ], [ 646, 672, 676, 685 ], [ 682, 672, 707, 685 ], [ 713, 672, 746, 685 ], [ 752, 672, 777, 685 ], [ 784, 672, 821, 685 ], [ 827, 672, 882, 685 ], [ 264, 691, 303, 705 ], [ 308, 691, 317, 705 ], [ 322, 691, 387, 705 ], [ 392, 691, 408, 705 ], [ 413, 691, 446, 705 ], [ 451, 691, 513, 705 ], [ 518, 691, 548, 705 ], [ 553, 691, 584, 705 ], [ 589, 691, 608, 705 ], [ 613, 691, 687, 705 ], [ 692, 691, 708, 705 ], [ 713, 691, 769, 705 ], [ 774, 691, 847, 705 ], [ 852, 691, 882, 705 ], [ 264, 710, 297, 724 ], [ 308, 710, 344, 724 ], [ 355, 710, 364, 724 ], [ 375, 710, 423, 724 ], [ 434, 710, 450, 724 ], [ 461, 710, 496, 724 ], [ 507, 710, 532, 724 ], [ 543, 710, 576, 724 ], [ 587, 710, 653, 724 ], [ 664, 710, 694, 724 ], [ 705, 710, 775, 724 ], [ 786, 710, 797, 724 ], [ 808, 710, 882, 724 ], [ 264, 730, 347, 744 ], [ 353, 730, 363, 744 ], [ 369, 730, 393, 744 ], [ 399, 730, 432, 744 ], [ 438, 730, 449, 744 ], [ 455, 730, 470, 744 ], [ 476, 730, 495, 744 ], [ 501, 730, 595, 744 ], [ 601, 730, 617, 744 ], [ 623, 730, 636, 744 ], [ 642, 730, 666, 744 ], [ 673, 730, 736, 744 ], [ 741, 730, 757, 744 ], [ 762, 730, 787, 744 ], [ 793, 730, 830, 744 ], [ 836, 730, 846, 744 ], [ 852, 730, 882, 744 ], [ 264, 749, 297, 763 ], [ 302, 749, 332, 763 ], [ 337, 749, 353, 763 ], [ 358, 749, 397, 763 ], [ 402, 749, 426, 763 ], [ 432, 749, 531, 763 ], [ 537, 749, 547, 763 ], [ 552, 749, 583, 763 ], [ 589, 749, 607, 763 ], [ 613, 749, 683, 763 ], [ 689, 749, 716, 763 ], [ 722, 749, 731, 763 ], [ 737, 749, 767, 763 ], [ 773, 749, 805, 763 ], [ 811, 749, 882, 763 ], [ 264, 769, 280, 783 ], [ 285, 769, 341, 783 ], [ 347, 769, 355, 783 ], [ 361, 769, 422, 783 ], [ 428, 769, 452, 783 ], [ 458, 769, 506, 783 ], [ 512, 769, 543, 783 ], [ 548, 769, 566, 783 ], [ 572, 769, 642, 783 ], [ 648, 769, 661, 783 ], [ 666, 769, 684, 783 ], [ 689, 769, 734, 783 ], [ 739, 769, 754, 783 ], [ 760, 769, 810, 783 ], [ 816, 769, 840, 783 ], [ 845, 769, 882, 783 ], [ 264, 789, 308, 803 ], [ 317, 789, 356, 803 ], [ 365, 789, 380, 803 ], [ 390, 789, 434, 803 ], [ 443, 789, 488, 803 ], [ 497, 789, 516, 803 ], [ 525, 789, 574, 803 ], [ 583, 789, 611, 803 ], [ 620, 789, 695, 803 ], [ 705, 789, 740, 803 ], [ 749, 789, 790, 803 ], [ 799, 789, 830, 803 ], [ 839, 789, 854, 803 ], [ 864, 789, 882, 803 ], [ 264, 808, 362, 822 ], [ 369, 808, 385, 822 ], [ 392, 808, 476, 822 ], [ 484, 808, 511, 822 ], [ 518, 808, 541, 822 ], [ 548, 808, 583, 822 ], [ 590, 808, 641, 822 ], [ 649, 808, 660, 822 ], [ 667, 808, 676, 822 ], [ 683, 808, 733, 822 ], [ 741, 808, 773, 822 ], [ 780, 808, 827, 822 ], [ 834, 808, 860, 822 ], [ 867, 808, 882, 822 ], [ 264, 828, 309, 842 ], [ 313, 828, 389, 842 ], [ 393, 828, 418, 842 ], [ 422, 828, 441, 842 ], [ 444, 828, 476, 842 ], [ 480, 828, 558, 842 ], [ 205, 860, 324, 874 ], [ 328, 860, 397, 874 ], [ 401, 860, 463, 874 ], [ 467, 860, 482, 874 ], [ 486, 860, 519, 874 ], [ 523, 860, 536, 874 ], [ 540, 860, 592, 874 ], [ 596, 860, 662, 874 ], [ 666, 860, 687, 874 ], [ 691, 860, 754, 874 ], [ 758, 860, 775, 874 ], [ 779, 860, 818, 874 ], [ 822, 860, 851, 874 ] ]
[ [ 264, 93, 337, 107 ], [ 341, 93, 369, 107 ], [ 373, 93, 452, 107 ], [ 456, 93, 559, 107 ], [ 563, 93, 632, 107 ], [ 636, 93, 666, 107 ], [ 670, 93, 727, 107 ], [ 731, 93, 801, 107 ], [ 805, 93, 833, 107 ], [ 264, 113, 333, 126 ], [ 337, 113, 356, 126 ], [ 360, 113, 434, 126 ], [ 438, 113, 471, 126 ], [ 475, 113, 484, 126 ], [ 488, 113, 514, 126 ], [ 518, 113, 605, 126 ], [ 609, 113, 652, 126 ], [ 656, 113, 681, 126 ], [ 685, 113, 749, 126 ], [ 753, 113, 778, 126 ], [ 782, 113, 854, 126 ], [ 264, 132, 300, 146 ], [ 304, 132, 329, 146 ], [ 333, 132, 381, 146 ], [ 384, 132, 437, 146 ], [ 441, 132, 464, 146 ], [ 468, 132, 553, 146 ], [ 557, 132, 572, 146 ], [ 576, 132, 595, 146 ], [ 599, 132, 654, 146 ], [ 264, 164, 300, 178 ], [ 304, 164, 411, 178 ], [ 415, 164, 500, 178 ], [ 504, 164, 607, 178 ], [ 611, 164, 680, 178 ], [ 684, 164, 714, 178 ], [ 718, 164, 775, 178 ], [ 779, 164, 858, 178 ], [ 862, 164, 881, 178 ], [ 264, 184, 289, 198 ], [ 293, 184, 371, 198 ], [ 375, 184, 439, 198 ], [ 443, 184, 458, 198 ], [ 462, 184, 480, 198 ], [ 484, 184, 564, 198 ], [ 568, 184, 577, 198 ], [ 581, 184, 607, 198 ], [ 611, 184, 698, 198 ], [ 702, 184, 745, 198 ], [ 749, 184, 773, 198 ], [ 777, 184, 842, 198 ], [ 846, 184, 857, 198 ], [ 264, 203, 349, 217 ], [ 353, 203, 368, 217 ], [ 372, 203, 391, 217 ], [ 395, 203, 450, 217 ], [ 205, 235, 256, 249 ], [ 260, 235, 295, 249 ], [ 299, 235, 395, 249 ], [ 399, 235, 486, 249 ], [ 490, 235, 523, 249 ], [ 527, 235, 585, 249 ], [ 589, 235, 693, 249 ], [ 697, 235, 754, 249 ], [ 205, 268, 233, 281 ], [ 237, 268, 337, 281 ], [ 164, 329, 280, 348 ], [ 205, 354, 279, 368 ], [ 283, 354, 323, 368 ], [ 327, 354, 408, 368 ], [ 413, 354, 498, 368 ], [ 502, 354, 517, 368 ], [ 521, 354, 579, 368 ], [ 583, 354, 645, 368 ], [ 649, 354, 688, 368 ], [ 692, 354, 725, 368 ], [ 729, 354, 740, 368 ], [ 744, 354, 797, 368 ], [ 801, 354, 837, 368 ], [ 841, 354, 859, 368 ], [ 205, 374, 308, 387 ], [ 312, 374, 366, 387 ], [ 370, 374, 403, 387 ], [ 407, 374, 423, 387 ], [ 427, 374, 472, 387 ], [ 476, 374, 556, 387 ], [ 264, 406, 337, 420 ], [ 341, 406, 415, 420 ], [ 419, 406, 434, 420 ], [ 438, 406, 446, 420 ], [ 451, 406, 515, 420 ], [ 519, 406, 558, 420 ], [ 264, 438, 338, 452 ], [ 350, 438, 418, 452 ], [ 430, 438, 502, 452 ], [ 514, 438, 525, 452 ], [ 538, 438, 556, 452 ], [ 568, 438, 642, 452 ], [ 654, 438, 717, 452 ], [ 729, 438, 804, 452 ], [ 816, 438, 882, 452 ], [ 264, 457, 337, 471 ], [ 342, 457, 388, 471 ], [ 393, 457, 451, 471 ], [ 457, 457, 505, 471 ], [ 511, 457, 573, 471 ], [ 579, 457, 615, 471 ], [ 620, 457, 654, 471 ], [ 659, 457, 675, 471 ], [ 680, 457, 689, 471 ], [ 695, 457, 723, 471 ], [ 728, 457, 766, 471 ], [ 777, 457, 806, 471 ], [ 812, 457, 882, 471 ], [ 264, 477, 290, 490 ], [ 296, 477, 346, 490 ], [ 352, 477, 368, 490 ], [ 373, 477, 398, 490 ], [ 403, 477, 490, 490 ], [ 496, 477, 511, 490 ], [ 517, 477, 541, 490 ], [ 547, 477, 617, 490 ], [ 623, 477, 646, 490 ], [ 651, 477, 702, 490 ], [ 707, 477, 735, 490 ], [ 740, 477, 771, 490 ], [ 776, 477, 801, 490 ], [ 806, 477, 882, 490 ], [ 264, 496, 308, 510 ], [ 313, 496, 345, 510 ], [ 350, 496, 369, 510 ], [ 374, 496, 418, 510 ], [ 423, 496, 442, 510 ], [ 448, 496, 456, 510 ], [ 462, 496, 527, 510 ], [ 532, 496, 558, 510 ], [ 564, 496, 599, 510 ], [ 604, 496, 613, 510 ], [ 618, 496, 680, 510 ], [ 686, 496, 716, 510 ], [ 721, 496, 753, 510 ], [ 758, 496, 797, 510 ], [ 803, 496, 811, 510 ], [ 817, 496, 862, 510 ], [ 867, 496, 882, 510 ], [ 264, 515, 315, 529 ], [ 321, 515, 335, 529 ], [ 340, 515, 365, 529 ], [ 371, 515, 406, 529 ], [ 412, 515, 427, 529 ], [ 433, 515, 441, 529 ], [ 447, 515, 495, 529 ], [ 501, 515, 516, 529 ], [ 522, 515, 540, 529 ], [ 545, 515, 631, 529 ], [ 642, 515, 672, 529 ], [ 677, 515, 709, 529 ], [ 714, 515, 743, 529 ], [ 749, 515, 768, 529 ], [ 773, 515, 841, 529 ], [ 847, 515, 882, 529 ], [ 264, 535, 305, 549 ], [ 316, 535, 354, 549 ], [ 365, 535, 398, 549 ], [ 408, 535, 487, 549 ], [ 498, 535, 541, 549 ], [ 552, 535, 583, 549 ], [ 594, 535, 619, 549 ], [ 629, 535, 699, 549 ], [ 710, 535, 735, 549 ], [ 745, 535, 816, 549 ], [ 826, 535, 882, 549 ], [ 264, 555, 333, 569 ], [ 338, 555, 365, 569 ], [ 370, 555, 403, 569 ], [ 407, 555, 464, 569 ], [ 469, 555, 500, 569 ], [ 504, 555, 523, 569 ], [ 527, 555, 580, 569 ], [ 584, 555, 602, 569 ], [ 606, 555, 615, 569 ], [ 619, 555, 671, 569 ], [ 675, 555, 714, 569 ], [ 718, 555, 783, 569 ], [ 787, 555, 820, 569 ], [ 824, 555, 857, 569 ], [ 861, 555, 882, 569 ], [ 264, 574, 327, 588 ], [ 333, 574, 363, 588 ], [ 370, 574, 395, 588 ], [ 402, 574, 441, 588 ], [ 447, 574, 482, 588 ], [ 489, 574, 553, 588 ], [ 560, 574, 575, 588 ], [ 582, 574, 617, 588 ], [ 624, 574, 706, 588 ], [ 712, 574, 742, 588 ], [ 749, 574, 841, 588 ], [ 847, 574, 882, 588 ], [ 264, 594, 329, 607 ], [ 335, 594, 371, 607 ], [ 377, 594, 418, 607 ], [ 424, 594, 493, 607 ], [ 499, 594, 529, 607 ], [ 535, 594, 566, 607 ], [ 572, 594, 602, 607 ], [ 608, 594, 666, 607 ], [ 673, 594, 686, 607 ], [ 692, 594, 774, 607 ], [ 781, 594, 794, 607 ], [ 800, 594, 861, 607 ], [ 867, 594, 882, 607 ], [ 264, 613, 323, 627 ], [ 334, 613, 355, 627 ], [ 366, 613, 439, 627 ], [ 450, 613, 508, 627 ], [ 519, 613, 553, 627 ], [ 564, 613, 580, 627 ], [ 590, 613, 641, 627 ], [ 652, 613, 706, 627 ], [ 717, 613, 751, 627 ], [ 762, 613, 777, 627 ], [ 788, 613, 813, 627 ], [ 824, 613, 882, 627 ], [ 272, 632, 300, 646 ], [ 308, 632, 374, 646 ], [ 382, 632, 397, 646 ], [ 405, 632, 414, 646 ], [ 422, 632, 486, 646 ], [ 494, 632, 521, 646 ], [ 530, 632, 554, 646 ], [ 562, 632, 595, 646 ], [ 603, 632, 634, 646 ], [ 642, 632, 653, 646 ], [ 661, 632, 676, 646 ], [ 685, 632, 703, 646 ], [ 711, 632, 798, 646 ], [ 807, 632, 855, 646 ], [ 864, 632, 882, 646 ], [ 264, 652, 332, 666 ], [ 341, 652, 356, 666 ], [ 365, 652, 412, 666 ], [ 421, 652, 435, 666 ], [ 444, 652, 514, 666 ], [ 523, 652, 609, 666 ], [ 618, 652, 650, 666 ], [ 659, 652, 735, 666 ], [ 744, 652, 771, 666 ], [ 780, 652, 805, 666 ], [ 814, 652, 829, 666 ], [ 837, 652, 882, 666 ], [ 264, 672, 340, 685 ], [ 346, 672, 371, 685 ], [ 378, 672, 396, 685 ], [ 403, 672, 476, 685 ], [ 483, 672, 498, 685 ], [ 504, 672, 560, 685 ], [ 567, 672, 640, 685 ], [ 646, 672, 676, 685 ], [ 682, 672, 707, 685 ], [ 713, 672, 746, 685 ], [ 752, 672, 777, 685 ], [ 784, 672, 821, 685 ], [ 827, 672, 882, 685 ], [ 264, 691, 303, 705 ], [ 308, 691, 317, 705 ], [ 322, 691, 387, 705 ], [ 392, 691, 408, 705 ], [ 413, 691, 446, 705 ], [ 451, 691, 513, 705 ], [ 518, 691, 548, 705 ], [ 553, 691, 584, 705 ], [ 589, 691, 608, 705 ], [ 613, 691, 687, 705 ], [ 692, 691, 708, 705 ], [ 713, 691, 769, 705 ], [ 774, 691, 847, 705 ], [ 852, 691, 882, 705 ], [ 264, 710, 297, 724 ], [ 308, 710, 344, 724 ], [ 355, 710, 364, 724 ], [ 375, 710, 423, 724 ], [ 434, 710, 450, 724 ], [ 461, 710, 496, 724 ], [ 507, 710, 532, 724 ], [ 543, 710, 576, 724 ], [ 587, 710, 653, 724 ], [ 664, 710, 694, 724 ], [ 705, 710, 775, 724 ], [ 786, 710, 797, 724 ], [ 808, 710, 882, 724 ], [ 264, 730, 347, 744 ], [ 353, 730, 363, 744 ], [ 369, 730, 393, 744 ], [ 399, 730, 432, 744 ], [ 438, 730, 449, 744 ], [ 455, 730, 470, 744 ], [ 476, 730, 495, 744 ], [ 501, 730, 595, 744 ], [ 601, 730, 617, 744 ], [ 623, 730, 636, 744 ], [ 642, 730, 666, 744 ], [ 673, 730, 736, 744 ], [ 741, 730, 757, 744 ], [ 762, 730, 787, 744 ], [ 793, 730, 830, 744 ], [ 836, 730, 846, 744 ], [ 852, 730, 882, 744 ], [ 264, 749, 297, 763 ], [ 302, 749, 332, 763 ], [ 337, 749, 353, 763 ], [ 358, 749, 397, 763 ], [ 402, 749, 426, 763 ], [ 432, 749, 531, 763 ], [ 537, 749, 547, 763 ], [ 552, 749, 583, 763 ], [ 589, 749, 607, 763 ], [ 613, 749, 683, 763 ], [ 689, 749, 716, 763 ], [ 722, 749, 731, 763 ], [ 737, 749, 767, 763 ], [ 773, 749, 805, 763 ], [ 811, 749, 882, 763 ], [ 264, 769, 280, 783 ], [ 285, 769, 341, 783 ], [ 347, 769, 355, 783 ], [ 361, 769, 422, 783 ], [ 428, 769, 452, 783 ], [ 458, 769, 506, 783 ], [ 512, 769, 543, 783 ], [ 548, 769, 566, 783 ], [ 572, 769, 642, 783 ], [ 648, 769, 661, 783 ], [ 666, 769, 684, 783 ], [ 689, 769, 734, 783 ], [ 739, 769, 754, 783 ], [ 760, 769, 810, 783 ], [ 816, 769, 840, 783 ], [ 845, 769, 882, 783 ], [ 264, 789, 308, 803 ], [ 317, 789, 356, 803 ], [ 365, 789, 380, 803 ], [ 390, 789, 434, 803 ], [ 443, 789, 488, 803 ], [ 497, 789, 516, 803 ], [ 525, 789, 574, 803 ], [ 583, 789, 611, 803 ], [ 620, 789, 695, 803 ], [ 705, 789, 740, 803 ], [ 749, 789, 790, 803 ], [ 799, 789, 830, 803 ], [ 839, 789, 854, 803 ], [ 864, 789, 882, 803 ], [ 264, 808, 362, 822 ], [ 369, 808, 385, 822 ], [ 392, 808, 476, 822 ], [ 484, 808, 511, 822 ], [ 518, 808, 541, 822 ], [ 548, 808, 583, 822 ], [ 590, 808, 641, 822 ], [ 649, 808, 660, 822 ], [ 667, 808, 676, 822 ], [ 683, 808, 733, 822 ], [ 741, 808, 773, 822 ], [ 780, 808, 827, 822 ], [ 834, 808, 860, 822 ], [ 867, 808, 882, 822 ], [ 264, 828, 309, 842 ], [ 313, 828, 389, 842 ], [ 393, 828, 418, 842 ], [ 422, 828, 441, 842 ], [ 444, 828, 476, 842 ], [ 480, 828, 558, 842 ], [ 205, 860, 324, 874 ], [ 328, 860, 397, 874 ], [ 401, 860, 463, 874 ], [ 467, 860, 482, 874 ], [ 486, 860, 519, 874 ], [ 523, 860, 536, 874 ], [ 540, 860, 592, 874 ], [ 596, 860, 662, 874 ], [ 666, 860, 687, 874 ], [ 691, 860, 754, 874 ], [ 758, 860, 775, 874 ], [ 779, 860, 818, 874 ], [ 822, 860, 851, 874 ] ]
Transformation Data Centric Security such as Usually feature of O.S. ↔ Data identity/policy-based encryption Infrastructure Policy management for access control E.g.: Windows group policy for event log Computing on the encrypted data: Vendor, platform-specific searching/filtering/deduplicate/fully homomorphic encryption Audits Complex – audits possible throughout Data Securing Data Storage and Transaction logs Vendor, platform-specific Infrastructure Key Management CSO, SIEM product keys Security Best Practices for non-relational TBD data stores Security against DoS attacks N/A Data Provenance E.g., how know an intrusion record was actually associated w/ specific workstation General Analytics for security intelligence Feature Event detection Feature Forensics Feature Consumer Digital Media Usage General Description of the Industry / Use Case: Content owners license data for usage by consumers through presentation portals, e.g., Netflix, iTunes, etc. Usage is Big Data, including demographics at user level, patterns of use such as play sequence, recommendations, content navigation. Mapping to the Security Reference Architecture: RA Component Security & Privacy Topic Use Case Mapping Sources → End-Point Input Validation Varies, vendor-dependent. Spoofing Transformation is possible. E.g., Protections afforded by securing Microsoft Rights Management Services [10]. S/MIME Real Time Security Monitoring Content creation security Data Discovery and Classification Discovery / classification possible across media, populations, channels Secure Data Aggregation Vendor-supplied aggregation
Transformation ↔ Data Infrastructure Data Centric Security such as identity/policy-based encryption Usually feature of O.S. Policy management for access control E.g.: Windows group policy for event log Computing on the encrypted data: searching/filtering/deduplicate/fully homomorphic encryption Vendor, platform-specific Audits Complex – audits possible throughout Data Infrastructure Securing Data Storage and Transaction logs Vendor, platform-specific Key Management CSO, SIEM product keys Security Best Practices for non-relational data stores TBD Security against DoS attacks N/A Data Provenance E.g., how know an intrusion record was actually associated w/ specific workstation General Analytics for security intelligence Feature Event detection Feature Forensics Feature Consumer Digital Media Usage General Description of the Industry / Use Case: Content owners license data for usage by consumers through presentation portals, e.g., Netflix, iTunes, etc. Usage is Big Data, including demographics at user level, patterns of use such as play sequence, recommendations, content navigation. Mapping to the Security Reference Architecture: RA Component Security & Privacy Topic Use Case Mapping Sources → Transformation End-Point Input Validation Varies, vendor-dependent. Spoofing is possible. E.g., Protections afforded by securing Microsoft Rights Management Services [10]. S/MIME Real Time Security Monitoring Content creation security Data Discovery and Classification Discovery / classification possible across media, populations, channels Secure Data Aggregation Vendor-supplied aggregation
0.88662
[ 0, 10, 11, 14, 1, 2, 3, 4, 5, 12, 13, 6, 7, 8, 9, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 36, 32, 33, 37, 38, 39, 40, 41, 42, 43, 52, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 64, 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, 166, 160, 161, 162, 163, 164, 165, 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 ]
M0110_v9_2689493468.docx
task-1430-681
30
[ [ 117, 113, 233, 126 ], [ 274, 113, 309, 126 ], [ 313, 113, 365, 126 ], [ 369, 113, 428, 126 ], [ 432, 113, 466, 126 ], [ 469, 113, 485, 126 ], [ 617, 113, 670, 126 ], [ 674, 113, 728, 126 ], [ 732, 113, 747, 126 ], [ 751, 113, 780, 126 ], [ 117, 129, 141, 143 ], [ 145, 129, 180, 143 ], [ 274, 129, 430, 143 ], [ 434, 129, 513, 143 ], [ 117, 146, 221, 160 ], [ 274, 148, 317, 162 ], [ 321, 148, 419, 162 ], [ 423, 148, 444, 162 ], [ 448, 148, 495, 162 ], [ 499, 148, 551, 162 ], [ 617, 148, 648, 162 ], [ 653, 148, 721, 162 ], [ 725, 148, 768, 162 ], [ 772, 148, 815, 162 ], [ 819, 148, 840, 162 ], [ 617, 165, 659, 179 ], [ 663, 165, 685, 179 ], [ 274, 183, 355, 197 ], [ 359, 183, 378, 197 ], [ 382, 183, 406, 197 ], [ 411, 183, 485, 197 ], [ 489, 183, 526, 197 ], [ 617, 183, 676, 197 ], [ 680, 183, 803, 197 ], [ 274, 200, 540, 214 ], [ 274, 217, 378, 231 ], [ 382, 217, 461, 231 ], [ 274, 235, 321, 249 ], [ 617, 235, 681, 249 ], [ 685, 235, 694, 249 ], [ 698, 235, 743, 249 ], [ 747, 235, 807, 249 ], [ 617, 252, 701, 266 ], [ 117, 288, 153, 302 ], [ 274, 288, 337, 302 ], [ 341, 288, 376, 302 ], [ 380, 288, 436, 302 ], [ 440, 288, 467, 302 ], [ 471, 288, 557, 302 ], [ 561, 288, 590, 302 ], [ 617, 288, 676, 302 ], [ 680, 288, 803, 302 ], [ 117, 305, 221, 319 ], [ 274, 307, 301, 320 ], [ 305, 307, 403, 320 ], [ 617, 307, 652, 320 ], [ 656, 307, 693, 320 ], [ 697, 307, 754, 320 ], [ 758, 307, 791, 320 ], [ 274, 325, 333, 339 ], [ 337, 325, 369, 339 ], [ 373, 325, 439, 339 ], [ 443, 325, 464, 339 ], [ 468, 325, 572, 339 ], [ 617, 325, 647, 339 ], [ 274, 342, 307, 356 ], [ 311, 342, 356, 356 ], [ 274, 360, 333, 374 ], [ 338, 360, 390, 374 ], [ 394, 360, 423, 374 ], [ 427, 360, 479, 374 ], [ 617, 360, 646, 374 ], [ 274, 378, 309, 392 ], [ 313, 378, 399, 392 ], [ 617, 378, 648, 392 ], [ 652, 378, 684, 392 ], [ 688, 378, 728, 392 ], [ 732, 378, 750, 392 ], [ 754, 378, 820, 392 ], [ 824, 378, 872, 392 ], [ 617, 395, 646, 409 ], [ 650, 395, 707, 409 ], [ 711, 395, 788, 409 ], [ 792, 395, 812, 409 ], [ 815, 395, 870, 409 ], [ 617, 412, 705, 426 ], [ 117, 449, 176, 462 ], [ 274, 449, 340, 462 ], [ 344, 449, 365, 462 ], [ 370, 449, 427, 462 ], [ 431, 449, 515, 462 ], [ 617, 449, 674, 462 ], [ 274, 467, 316, 481 ], [ 320, 467, 390, 481 ], [ 617, 467, 674, 481 ], [ 274, 485, 343, 499 ], [ 617, 485, 674, 499 ], [ 164, 533, 264, 552 ], [ 268, 533, 333, 552 ], [ 338, 533, 398, 552 ], [ 403, 533, 461, 552 ], [ 294, 567, 359, 584 ], [ 363, 567, 460, 584 ], [ 464, 567, 480, 584 ], [ 484, 567, 511, 584 ], [ 514, 567, 586, 584 ], [ 590, 567, 599, 584 ], [ 603, 567, 633, 584 ], [ 637, 567, 680, 584 ], [ 164, 599, 225, 615 ], [ 229, 599, 286, 615 ], [ 290, 599, 343, 615 ], [ 347, 599, 381, 615 ], [ 385, 599, 407, 615 ], [ 411, 599, 455, 615 ], [ 459, 599, 478, 615 ], [ 482, 599, 566, 615 ], [ 570, 599, 632, 615 ], [ 636, 599, 734, 615 ], [ 738, 599, 796, 615 ], [ 800, 599, 829, 615 ], [ 164, 618, 219, 634 ], [ 223, 618, 279, 634 ], [ 283, 618, 309, 634 ], [ 313, 618, 359, 634 ], [ 363, 618, 376, 634 ], [ 380, 618, 405, 634 ], [ 409, 618, 448, 634 ], [ 452, 618, 523, 634 ], [ 527, 618, 636, 634 ], [ 640, 618, 655, 634 ], [ 659, 618, 693, 634 ], [ 697, 618, 737, 634 ], [ 741, 618, 806, 634 ], [ 810, 618, 825, 634 ], [ 829, 618, 855, 634 ], [ 164, 636, 200, 653 ], [ 204, 636, 220, 653 ], [ 224, 636, 257, 653 ], [ 261, 636, 336, 653 ], [ 340, 636, 483, 653 ], [ 487, 636, 546, 653 ], [ 550, 636, 635, 653 ], [ 294, 670, 366, 686 ], [ 370, 670, 387, 686 ], [ 391, 670, 418, 686 ], [ 422, 670, 490, 686 ], [ 493, 670, 577, 686 ], [ 581, 670, 690, 686 ], [ 117, 725, 138, 739 ], [ 142, 725, 230, 739 ], [ 274, 725, 335, 739 ], [ 339, 725, 352, 739 ], [ 356, 725, 409, 739 ], [ 414, 725, 454, 739 ], [ 617, 725, 645, 739 ], [ 649, 725, 684, 739 ], [ 688, 725, 754, 739 ], [ 117, 743, 175, 757 ], [ 179, 743, 196, 757 ], [ 274, 743, 346, 757 ], [ 350, 743, 389, 757 ], [ 393, 743, 467, 757 ], [ 617, 743, 667, 757 ], [ 671, 743, 813, 757 ], [ 817, 743, 881, 757 ], [ 117, 760, 233, 774 ], [ 617, 760, 628, 774 ], [ 633, 760, 697, 774 ], [ 701, 760, 732, 774 ], [ 736, 760, 819, 774 ], [ 617, 777, 681, 791 ], [ 685, 777, 702, 791 ], [ 706, 777, 768, 791 ], [ 772, 777, 842, 791 ], [ 617, 794, 662, 808 ], [ 666, 794, 764, 808 ], [ 769, 794, 828, 808 ], [ 832, 794, 866, 808 ], [ 617, 811, 677, 825 ], [ 274, 829, 306, 843 ], [ 310, 829, 346, 843 ], [ 350, 829, 409, 843 ], [ 413, 829, 495, 843 ], [ 617, 829, 676, 843 ], [ 680, 829, 741, 843 ], [ 745, 829, 803, 843 ], [ 274, 847, 309, 861 ], [ 313, 847, 384, 861 ], [ 388, 847, 415, 861 ], [ 419, 847, 515, 861 ], [ 617, 847, 688, 861 ], [ 692, 847, 699, 861 ], [ 703, 847, 797, 861 ], [ 801, 847, 860, 861 ], [ 617, 864, 664, 878 ], [ 667, 864, 717, 878 ], [ 722, 864, 813, 878 ], [ 817, 864, 881, 878 ], [ 274, 882, 324, 896 ], [ 328, 882, 363, 896 ], [ 367, 882, 455, 896 ], [ 617, 882, 739, 896 ], [ 743, 882, 830, 896 ] ]
[ [ 117, 113, 233, 126 ], [ 117, 129, 141, 143 ], [ 145, 129, 180, 143 ], [ 117, 146, 221, 160 ], [ 274, 113, 309, 126 ], [ 313, 113, 365, 126 ], [ 369, 113, 428, 126 ], [ 432, 113, 466, 126 ], [ 469, 113, 485, 126 ], [ 274, 129, 430, 143 ], [ 434, 129, 513, 143 ], [ 617, 113, 670, 126 ], [ 674, 113, 728, 126 ], [ 732, 113, 747, 126 ], [ 751, 113, 780, 126 ], [ 274, 148, 317, 162 ], [ 321, 148, 419, 162 ], [ 423, 148, 444, 162 ], [ 448, 148, 495, 162 ], [ 499, 148, 551, 162 ], [ 617, 148, 648, 162 ], [ 653, 148, 721, 162 ], [ 725, 148, 768, 162 ], [ 772, 148, 815, 162 ], [ 819, 148, 840, 162 ], [ 617, 165, 659, 179 ], [ 663, 165, 685, 179 ], [ 274, 183, 355, 197 ], [ 359, 183, 378, 197 ], [ 382, 183, 406, 197 ], [ 411, 183, 485, 197 ], [ 489, 183, 526, 197 ], [ 274, 200, 540, 214 ], [ 274, 217, 378, 231 ], [ 382, 217, 461, 231 ], [ 617, 183, 676, 197 ], [ 680, 183, 803, 197 ], [ 274, 235, 321, 249 ], [ 617, 235, 681, 249 ], [ 685, 235, 694, 249 ], [ 698, 235, 743, 249 ], [ 747, 235, 807, 249 ], [ 617, 252, 701, 266 ], [ 117, 288, 153, 302 ], [ 117, 305, 221, 319 ], [ 274, 288, 337, 302 ], [ 341, 288, 376, 302 ], [ 380, 288, 436, 302 ], [ 440, 288, 467, 302 ], [ 471, 288, 557, 302 ], [ 561, 288, 590, 302 ], [ 617, 288, 676, 302 ], [ 680, 288, 803, 302 ], [ 274, 307, 301, 320 ], [ 305, 307, 403, 320 ], [ 617, 307, 652, 320 ], [ 656, 307, 693, 320 ], [ 697, 307, 754, 320 ], [ 758, 307, 791, 320 ], [ 274, 325, 333, 339 ], [ 337, 325, 369, 339 ], [ 373, 325, 439, 339 ], [ 443, 325, 464, 339 ], [ 468, 325, 572, 339 ], [ 274, 342, 307, 356 ], [ 311, 342, 356, 356 ], [ 617, 325, 647, 339 ], [ 274, 360, 333, 374 ], [ 338, 360, 390, 374 ], [ 394, 360, 423, 374 ], [ 427, 360, 479, 374 ], [ 617, 360, 646, 374 ], [ 274, 378, 309, 392 ], [ 313, 378, 399, 392 ], [ 617, 378, 648, 392 ], [ 652, 378, 684, 392 ], [ 688, 378, 728, 392 ], [ 732, 378, 750, 392 ], [ 754, 378, 820, 392 ], [ 824, 378, 872, 392 ], [ 617, 395, 646, 409 ], [ 650, 395, 707, 409 ], [ 711, 395, 788, 409 ], [ 792, 395, 812, 409 ], [ 815, 395, 870, 409 ], [ 617, 412, 705, 426 ], [ 117, 449, 176, 462 ], [ 274, 449, 340, 462 ], [ 344, 449, 365, 462 ], [ 370, 449, 427, 462 ], [ 431, 449, 515, 462 ], [ 617, 449, 674, 462 ], [ 274, 467, 316, 481 ], [ 320, 467, 390, 481 ], [ 617, 467, 674, 481 ], [ 274, 485, 343, 499 ], [ 617, 485, 674, 499 ], [ 164, 533, 264, 552 ], [ 268, 533, 333, 552 ], [ 338, 533, 398, 552 ], [ 403, 533, 461, 552 ], [ 294, 567, 359, 584 ], [ 363, 567, 460, 584 ], [ 464, 567, 480, 584 ], [ 484, 567, 511, 584 ], [ 514, 567, 586, 584 ], [ 590, 567, 599, 584 ], [ 603, 567, 633, 584 ], [ 637, 567, 680, 584 ], [ 164, 599, 225, 615 ], [ 229, 599, 286, 615 ], [ 290, 599, 343, 615 ], [ 347, 599, 381, 615 ], [ 385, 599, 407, 615 ], [ 411, 599, 455, 615 ], [ 459, 599, 478, 615 ], [ 482, 599, 566, 615 ], [ 570, 599, 632, 615 ], [ 636, 599, 734, 615 ], [ 738, 599, 796, 615 ], [ 800, 599, 829, 615 ], [ 164, 618, 219, 634 ], [ 223, 618, 279, 634 ], [ 283, 618, 309, 634 ], [ 313, 618, 359, 634 ], [ 363, 618, 376, 634 ], [ 380, 618, 405, 634 ], [ 409, 618, 448, 634 ], [ 452, 618, 523, 634 ], [ 527, 618, 636, 634 ], [ 640, 618, 655, 634 ], [ 659, 618, 693, 634 ], [ 697, 618, 737, 634 ], [ 741, 618, 806, 634 ], [ 810, 618, 825, 634 ], [ 829, 618, 855, 634 ], [ 164, 636, 200, 653 ], [ 204, 636, 220, 653 ], [ 224, 636, 257, 653 ], [ 261, 636, 336, 653 ], [ 340, 636, 483, 653 ], [ 487, 636, 546, 653 ], [ 550, 636, 635, 653 ], [ 294, 670, 366, 686 ], [ 370, 670, 387, 686 ], [ 391, 670, 418, 686 ], [ 422, 670, 490, 686 ], [ 493, 670, 577, 686 ], [ 581, 670, 690, 686 ], [ 117, 725, 138, 739 ], [ 142, 725, 230, 739 ], [ 274, 725, 335, 739 ], [ 339, 725, 352, 739 ], [ 356, 725, 409, 739 ], [ 414, 725, 454, 739 ], [ 617, 725, 645, 739 ], [ 649, 725, 684, 739 ], [ 688, 725, 754, 739 ], [ 117, 743, 175, 757 ], [ 179, 743, 196, 757 ], [ 117, 760, 233, 774 ], [ 274, 743, 346, 757 ], [ 350, 743, 389, 757 ], [ 393, 743, 467, 757 ], [ 617, 743, 667, 757 ], [ 671, 743, 813, 757 ], [ 817, 743, 881, 757 ], [ 617, 760, 628, 774 ], [ 633, 760, 697, 774 ], [ 701, 760, 732, 774 ], [ 736, 760, 819, 774 ], [ 617, 777, 681, 791 ], [ 685, 777, 702, 791 ], [ 706, 777, 768, 791 ], [ 772, 777, 842, 791 ], [ 617, 794, 662, 808 ], [ 666, 794, 764, 808 ], [ 769, 794, 828, 808 ], [ 832, 794, 866, 808 ], [ 617, 811, 677, 825 ], [ 274, 829, 306, 843 ], [ 310, 829, 346, 843 ], [ 350, 829, 409, 843 ], [ 413, 829, 495, 843 ], [ 617, 829, 676, 843 ], [ 680, 829, 741, 843 ], [ 745, 829, 803, 843 ], [ 274, 847, 309, 861 ], [ 313, 847, 384, 861 ], [ 388, 847, 415, 861 ], [ 419, 847, 515, 861 ], [ 617, 847, 688, 861 ], [ 692, 847, 699, 861 ], [ 703, 847, 797, 861 ], [ 801, 847, 860, 861 ], [ 617, 864, 664, 878 ], [ 667, 864, 717, 878 ], [ 722, 864, 813, 878 ], [ 817, 864, 881, 878 ], [ 274, 882, 324, 896 ], [ 328, 882, 363, 896 ], [ 367, 882, 455, 896 ], [ 617, 882, 739, 896 ], [ 743, 882, 830, 896 ] ]
possible ordering of a set of videos for a user (household) within a given context in real-time; maximize movie consumption. Use Case Description Digital movies stored in cloud with metadata; user profiles and rankings for small fraction of movies for each user. Use multiple criteria – content based recommender system; user-based recommender system; diversity. Refine algorithms continuously with A/B testing. Current Compute(System) Amazon Web Services AWS Solutions Storage Uses Cassandra NoSQL technology with Hive, Teradata Networking Need Content Delivery System to support effective streaming video Software Hadoop and Pig; Cassandra; Teradata Big Data Data Source Add movies institutionally. Collect user rankings and Characteristics (distributed/centralized) profiles in a distributed fashion Volume (size) Summer 2012. 25 million subscribers; 4 million ratings per day; 3 million searches per day; 1 billion hours streamed in June 2012. Cloud storage 2 petabytes (June 2013) Velocity Media (video and properties) and Rankings (e.g. real time) continually updated Variety Data varies from digital media to user rankings, (multiple datasets, user profiles and media properties for mashup) recommendations Variability (rate of Very competitive business. Need to aware of other change) companies and trends in both content (which Movies are hot) and technology. Need to investigate new business initiatives such as Netflix sponsored content Big Data Science Veracity (Robustness Success of business requires excellent quality of (collection, Issues) service curation, Visualization Streaming media and quality user-experience to analysis, allow choice of content action) Data Quality Rankings are intrinsically “rough” data and need robust learning algorithms Data Types Media content, user of user rankings profiles, “bag” Data Analytics Recommender systems and streaming video delivery. Recommender systems are always personalized and use logistic/linear regression, elastic nets, matrix factorization, clustering, latent Dirichlet allocation, association rules, gradient boosted decision trees and others. Winner of Netflix competition (to improve ratings by 10%) combined over 100 different algorithms. Big Data Specific Analytics needs continued monitoring and improvement. Challenges (Gaps) Big Data Specific Mobile access important Challenges in Mobility Security & Privacy Need to preserve privacy for users and digital rights for media.
possible ordering of a set of videos for a user (household) within a given context in real-time; maximize movie consumption. Use Case Description Digital movies stored in cloud with metadata; user profiles and rankings for small fraction of movies for each user. Use multiple criteria – content based recommender system; user-based recommender system; diversity. Refine algorithms continuously with A/B testing. Current Solutions Compute(System) Amazon Web Services AWS Storage Uses Cassandra NoSQL technology with Hive, Teradata Networking Need Content Delivery System to support effective streaming video Software Hadoop and Pig; Cassandra; Teradata Big Data Characteristics Data Source (distributed/centralized) Add movies institutionally. Collect user rankings and profiles in a distributed fashion Volume (size) Summer 2012. 25 million subscribers; 4 million ratings per day; 3 million searches per day; 1 billion hours streamed in June 2012. Cloud storage 2 petabytes (June 2013) Velocity (e.g. real time) Media (video and properties) and Rankings continually updated Variety (multiple datasets, mashup) Data varies from digital media to user rankings, user profiles and media properties for recommendations Variability (rate of change) Very competitive business. Need to aware of other companies and trends in both content (which Movies are hot) and technology. Need to investigate new business initiatives such as Netflix sponsored content Big Data Science (collection, curation, analysis, action) Veracity (Robustness Issues) Success of business requires excellent quality of service Visualization Streaming media and quality user-experience to allow choice of content Data Quality Rankings are intrinsically “rough” data and need robust learning algorithms Data Types Media content, user profiles, “bag” of user rankings Data Analytics Recommender systems and streaming video delivery. Recommender systems are always personalized and use logistic/linear regression, elastic nets, matrix factorization, clustering, latent Dirichlet allocation, association rules, gradient boosted decision trees and others. Winner of Netflix competition (to improve ratings by 10%) combined over 100 different algorithms. Big Data Specific Challenges (Gaps) Analytics needs continued monitoring and improvement. Big Data Specific Challenges in Mobility Mobile access important Security & Privacy Need to preserve privacy for users and digital rights for media.
0.847789
[ 0, 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, 66, 61, 62, 63, 64, 65, 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, 102, 93, 94, 103, 95, 96, 97, 98, 99, 100, 101, 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, 146, 147, 148, 140, 141, 142, 143, 144, 145, 149, 150, 151, 160, 161, 168, 152, 153, 154, 155, 156, 157, 158, 159, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 181, 173, 174, 175, 176, 177, 178, 179, 180, 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, 217, 220, 228, 233, 208, 209, 218, 210, 211, 212, 213, 214, 215, 216, 219, 221, 222, 223, 224, 225, 226, 227, 229, 230, 231, 232, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 254, 255, 251, 252, 253, 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, 312, 313, 306, 307, 308, 309, 310, 311, 314, 315, 316, 320, 321, 322, 317, 318, 319, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336 ]
M0180_v2_1513248729.docx
task-1430-702
17
[ [ 346, 94, 406, 108 ], [ 410, 94, 472, 108 ], [ 476, 94, 491, 108 ], [ 495, 94, 504, 108 ], [ 508, 94, 530, 108 ], [ 534, 94, 549, 108 ], [ 553, 94, 600, 108 ], [ 604, 94, 626, 108 ], [ 630, 94, 638, 108 ], [ 642, 94, 674, 108 ], [ 678, 94, 766, 108 ], [ 770, 94, 817, 108 ], [ 821, 94, 829, 108 ], [ 833, 94, 873, 108 ], [ 346, 111, 401, 125 ], [ 406, 111, 419, 125 ], [ 423, 111, 495, 125 ], [ 499, 111, 568, 125 ], [ 572, 111, 617, 125 ], [ 621, 111, 722, 125 ], [ 160, 124, 190, 141 ], [ 195, 124, 234, 141 ], [ 238, 124, 328, 141 ], [ 346, 128, 393, 142 ], [ 397, 128, 449, 142 ], [ 453, 128, 500, 142 ], [ 504, 128, 518, 142 ], [ 522, 128, 562, 142 ], [ 566, 128, 598, 142 ], [ 602, 128, 678, 142 ], [ 682, 128, 714, 142 ], [ 718, 128, 773, 142 ], [ 777, 128, 804, 142 ], [ 808, 128, 870, 142 ], [ 346, 145, 367, 159 ], [ 372, 145, 410, 159 ], [ 414, 145, 471, 159 ], [ 475, 145, 490, 159 ], [ 494, 145, 546, 159 ], [ 550, 145, 571, 159 ], [ 575, 145, 610, 159 ], [ 614, 145, 650, 159 ], [ 654, 145, 682, 159 ], [ 686, 145, 746, 159 ], [ 750, 145, 803, 159 ], [ 807, 145, 816, 159 ], [ 346, 162, 403, 176 ], [ 407, 162, 451, 176 ], [ 455, 162, 559, 176 ], [ 563, 162, 619, 176 ], [ 623, 162, 704, 176 ], [ 708, 162, 812, 176 ], [ 816, 162, 872, 176 ], [ 346, 179, 413, 193 ], [ 417, 179, 464, 193 ], [ 468, 179, 546, 193 ], [ 550, 179, 643, 193 ], [ 647, 179, 680, 193 ], [ 684, 179, 711, 193 ], [ 715, 179, 770, 193 ], [ 215, 192, 274, 209 ], [ 338, 192, 477, 209 ], [ 495, 197, 555, 211 ], [ 559, 197, 593, 211 ], [ 597, 197, 656, 211 ], [ 661, 197, 695, 211 ], [ 200, 207, 274, 224 ], [ 417, 215, 477, 232 ], [ 495, 219, 530, 233 ], [ 534, 219, 608, 233 ], [ 612, 219, 661, 233 ], [ 666, 219, 747, 233 ], [ 751, 219, 783, 233 ], [ 788, 219, 824, 233 ], [ 495, 236, 561, 250 ], [ 388, 249, 477, 267 ], [ 495, 249, 534, 267 ], [ 539, 249, 596, 267 ], [ 600, 249, 659, 267 ], [ 664, 249, 718, 267 ], [ 723, 249, 737, 267 ], [ 741, 249, 796, 267 ], [ 800, 249, 861, 267 ], [ 495, 264, 567, 281 ], [ 571, 264, 610, 281 ], [ 408, 279, 477, 296 ], [ 495, 284, 553, 298 ], [ 557, 284, 585, 298 ], [ 588, 284, 615, 298 ], [ 619, 284, 699, 298 ], [ 703, 284, 768, 298 ], [ 208, 302, 235, 319 ], [ 239, 302, 274, 319 ], [ 382, 302, 418, 319 ], [ 422, 302, 477, 319 ], [ 495, 302, 524, 319 ], [ 528, 302, 580, 319 ], [ 585, 302, 683, 319 ], [ 688, 302, 737, 319 ], [ 742, 302, 774, 319 ], [ 778, 302, 840, 319 ], [ 845, 302, 872, 319 ], [ 156, 316, 274, 334 ], [ 292, 316, 477, 334 ], [ 495, 316, 548, 334 ], [ 552, 316, 565, 334 ], [ 569, 316, 578, 334 ], [ 583, 316, 658, 334 ], [ 663, 316, 716, 334 ], [ 372, 331, 431, 349 ], [ 435, 331, 477, 349 ], [ 495, 336, 557, 350 ], [ 561, 336, 602, 350 ], [ 606, 336, 624, 350 ], [ 628, 336, 678, 350 ], [ 682, 336, 770, 350 ], [ 774, 336, 783, 350 ], [ 787, 336, 837, 350 ], [ 495, 353, 545, 367 ], [ 549, 353, 574, 367 ], [ 578, 353, 609, 367 ], [ 613, 353, 622, 367 ], [ 626, 353, 676, 367 ], [ 680, 353, 744, 367 ], [ 748, 353, 773, 367 ], [ 777, 353, 808, 367 ], [ 812, 353, 821, 367 ], [ 825, 353, 870, 367 ], [ 495, 370, 537, 384 ], [ 541, 370, 611, 384 ], [ 615, 370, 628, 384 ], [ 632, 370, 666, 384 ], [ 670, 370, 711, 384 ], [ 715, 370, 757, 384 ], [ 761, 370, 816, 384 ], [ 820, 370, 829, 384 ], [ 495, 387, 568, 401 ], [ 572, 387, 611, 401 ], [ 615, 387, 657, 401 ], [ 415, 400, 477, 417 ], [ 495, 404, 542, 418 ], [ 546, 404, 591, 418 ], [ 595, 404, 623, 418 ], [ 627, 404, 708, 418 ], [ 712, 404, 740, 418 ], [ 744, 404, 809, 418 ], [ 367, 414, 400, 432 ], [ 405, 414, 434, 432 ], [ 438, 414, 477, 432 ], [ 495, 421, 576, 435 ], [ 580, 421, 641, 435 ], [ 423, 434, 477, 452 ], [ 495, 439, 530, 453 ], [ 534, 439, 577, 453 ], [ 581, 439, 616, 453 ], [ 620, 439, 665, 453 ], [ 669, 439, 715, 453 ], [ 719, 439, 734, 453 ], [ 739, 439, 770, 453 ], [ 774, 439, 840, 453 ], [ 334, 449, 402, 466 ], [ 407, 449, 477, 466 ], [ 495, 456, 527, 470 ], [ 531, 456, 586, 470 ], [ 590, 456, 618, 470 ], [ 621, 456, 667, 470 ], [ 671, 456, 747, 470 ], [ 751, 456, 772, 470 ], [ 409, 464, 477, 481 ], [ 543, 473, 676, 487 ], [ 340, 486, 418, 503 ], [ 422, 486, 457, 503 ], [ 462, 486, 477, 503 ], [ 495, 486, 529, 503 ], [ 533, 486, 616, 503 ], [ 620, 486, 689, 503 ], [ 694, 486, 733, 503 ], [ 737, 486, 751, 503 ], [ 756, 486, 800, 503 ], [ 805, 486, 818, 503 ], [ 823, 486, 860, 503 ], [ 415, 501, 477, 518 ], [ 495, 501, 574, 518 ], [ 579, 501, 606, 518 ], [ 610, 501, 656, 518 ], [ 660, 501, 673, 518 ], [ 678, 501, 709, 518 ], [ 714, 501, 767, 518 ], [ 772, 501, 819, 518 ], [ 495, 515, 547, 532 ], [ 551, 515, 575, 532 ], [ 579, 515, 608, 532 ], [ 612, 515, 639, 532 ], [ 644, 515, 727, 532 ], [ 732, 515, 771, 532 ], [ 776, 515, 789, 532 ], [ 794, 515, 872, 532 ], [ 495, 530, 525, 547 ], [ 529, 530, 594, 547 ], [ 599, 530, 666, 547 ], [ 670, 530, 705, 547 ], [ 709, 530, 727, 547 ], [ 731, 530, 776, 547 ], [ 781, 530, 857, 547 ], [ 495, 544, 548, 561 ], [ 142, 559, 168, 576 ], [ 173, 559, 208, 576 ], [ 213, 559, 274, 576 ], [ 311, 559, 374, 576 ], [ 378, 559, 477, 576 ], [ 495, 564, 551, 578 ], [ 555, 564, 570, 578 ], [ 574, 564, 637, 578 ], [ 641, 564, 701, 578 ], [ 705, 564, 771, 578 ], [ 776, 564, 825, 578 ], [ 829, 564, 844, 578 ], [ 188, 574, 274, 591 ], [ 421, 574, 477, 591 ], [ 495, 581, 546, 595 ], [ 205, 588, 274, 606 ], [ 378, 594, 477, 611 ], [ 495, 598, 570, 612 ], [ 574, 598, 619, 612 ], [ 623, 598, 651, 612 ], [ 655, 598, 705, 612 ], [ 709, 598, 827, 612 ], [ 831, 598, 846, 612 ], [ 205, 603, 274, 620 ], [ 495, 615, 534, 629 ], [ 538, 615, 586, 629 ], [ 590, 615, 605, 629 ], [ 609, 615, 666, 629 ], [ 221, 617, 274, 635 ], [ 382, 628, 417, 646 ], [ 422, 628, 477, 646 ], [ 495, 633, 560, 647 ], [ 564, 633, 588, 647 ], [ 592, 633, 675, 647 ], [ 679, 633, 738, 647 ], [ 742, 633, 775, 647 ], [ 778, 633, 806, 647 ], [ 810, 633, 847, 647 ], [ 495, 650, 543, 664 ], [ 547, 650, 606, 664 ], [ 610, 650, 688, 664 ], [ 390, 663, 425, 680 ], [ 430, 663, 477, 680 ], [ 495, 663, 539, 680 ], [ 544, 663, 602, 680 ], [ 607, 663, 638, 680 ], [ 748, 663, 761, 680 ], [ 766, 663, 797, 680 ], [ 802, 663, 864, 680 ], [ 643, 665, 700, 679 ], [ 705, 665, 743, 679 ], [ 365, 680, 400, 698 ], [ 405, 680, 477, 698 ], [ 495, 685, 603, 699 ], [ 607, 685, 665, 699 ], [ 669, 685, 697, 699 ], [ 701, 685, 774, 699 ], [ 778, 685, 819, 699 ], [ 495, 702, 558, 716 ], [ 562, 702, 670, 716 ], [ 674, 702, 732, 716 ], [ 736, 702, 760, 716 ], [ 764, 702, 814, 716 ], [ 495, 719, 588, 733 ], [ 592, 719, 620, 733 ], [ 624, 719, 649, 733 ], [ 653, 719, 753, 733 ], [ 757, 719, 837, 733 ], [ 495, 736, 542, 750 ], [ 546, 736, 582, 750 ], [ 586, 736, 633, 750 ], [ 637, 736, 734, 750 ], [ 738, 736, 814, 750 ], [ 818, 736, 861, 750 ], [ 495, 753, 557, 767 ], [ 561, 753, 637, 767 ], [ 641, 753, 723, 767 ], [ 727, 753, 767, 767 ], [ 771, 753, 832, 767 ], [ 495, 770, 555, 784 ], [ 559, 770, 619, 784 ], [ 623, 770, 660, 784 ], [ 665, 770, 692, 784 ], [ 696, 770, 748, 784 ], [ 752, 770, 806, 784 ], [ 810, 770, 825, 784 ], [ 495, 787, 543, 801 ], [ 547, 787, 637, 801 ], [ 641, 787, 661, 801 ], [ 665, 787, 726, 801 ], [ 730, 787, 780, 801 ], [ 785, 787, 802, 801 ], [ 806, 787, 843, 801 ], [ 495, 804, 568, 818 ], [ 572, 804, 605, 818 ], [ 609, 804, 636, 818 ], [ 640, 804, 704, 818 ], [ 709, 804, 791, 818 ], [ 195, 817, 221, 834 ], [ 226, 817, 261, 834 ], [ 266, 817, 328, 834 ], [ 346, 821, 412, 835 ], [ 416, 821, 460, 835 ], [ 464, 821, 538, 835 ], [ 542, 821, 623, 835 ], [ 627, 821, 655, 835 ], [ 659, 821, 763, 835 ], [ 185, 831, 272, 848 ], [ 276, 831, 328, 848 ], [ 195, 855, 221, 872 ], [ 226, 855, 261, 872 ], [ 266, 855, 328, 872 ], [ 346, 855, 394, 872 ], [ 399, 855, 449, 872 ], [ 454, 855, 522, 872 ], [ 156, 869, 243, 887 ], [ 247, 869, 262, 887 ], [ 266, 869, 328, 887 ], [ 185, 884, 249, 902 ], [ 254, 884, 265, 902 ], [ 270, 884, 328, 902 ], [ 346, 889, 385, 903 ], [ 389, 889, 405, 903 ], [ 409, 889, 473, 903 ], [ 477, 889, 529, 903 ], [ 533, 889, 554, 903 ], [ 558, 889, 597, 903 ], [ 601, 889, 629, 903 ], [ 633, 889, 678, 903 ], [ 682, 889, 723, 903 ], [ 727, 889, 748, 903 ], [ 752, 889, 803, 903 ] ]
[ [ 346, 94, 406, 108 ], [ 410, 94, 472, 108 ], [ 476, 94, 491, 108 ], [ 495, 94, 504, 108 ], [ 508, 94, 530, 108 ], [ 534, 94, 549, 108 ], [ 553, 94, 600, 108 ], [ 604, 94, 626, 108 ], [ 630, 94, 638, 108 ], [ 642, 94, 674, 108 ], [ 678, 94, 766, 108 ], [ 770, 94, 817, 108 ], [ 821, 94, 829, 108 ], [ 833, 94, 873, 108 ], [ 346, 111, 401, 125 ], [ 406, 111, 419, 125 ], [ 423, 111, 495, 125 ], [ 499, 111, 568, 125 ], [ 572, 111, 617, 125 ], [ 621, 111, 722, 125 ], [ 160, 124, 190, 141 ], [ 195, 124, 234, 141 ], [ 238, 124, 328, 141 ], [ 346, 128, 393, 142 ], [ 397, 128, 449, 142 ], [ 453, 128, 500, 142 ], [ 504, 128, 518, 142 ], [ 522, 128, 562, 142 ], [ 566, 128, 598, 142 ], [ 602, 128, 678, 142 ], [ 682, 128, 714, 142 ], [ 718, 128, 773, 142 ], [ 777, 128, 804, 142 ], [ 808, 128, 870, 142 ], [ 346, 145, 367, 159 ], [ 372, 145, 410, 159 ], [ 414, 145, 471, 159 ], [ 475, 145, 490, 159 ], [ 494, 145, 546, 159 ], [ 550, 145, 571, 159 ], [ 575, 145, 610, 159 ], [ 614, 145, 650, 159 ], [ 654, 145, 682, 159 ], [ 686, 145, 746, 159 ], [ 750, 145, 803, 159 ], [ 807, 145, 816, 159 ], [ 346, 162, 403, 176 ], [ 407, 162, 451, 176 ], [ 455, 162, 559, 176 ], [ 563, 162, 619, 176 ], [ 623, 162, 704, 176 ], [ 708, 162, 812, 176 ], [ 816, 162, 872, 176 ], [ 346, 179, 413, 193 ], [ 417, 179, 464, 193 ], [ 468, 179, 546, 193 ], [ 550, 179, 643, 193 ], [ 647, 179, 680, 193 ], [ 684, 179, 711, 193 ], [ 715, 179, 770, 193 ], [ 215, 192, 274, 209 ], [ 200, 207, 274, 224 ], [ 338, 192, 477, 209 ], [ 495, 197, 555, 211 ], [ 559, 197, 593, 211 ], [ 597, 197, 656, 211 ], [ 661, 197, 695, 211 ], [ 417, 215, 477, 232 ], [ 495, 219, 530, 233 ], [ 534, 219, 608, 233 ], [ 612, 219, 661, 233 ], [ 666, 219, 747, 233 ], [ 751, 219, 783, 233 ], [ 788, 219, 824, 233 ], [ 495, 236, 561, 250 ], [ 388, 249, 477, 267 ], [ 495, 249, 534, 267 ], [ 539, 249, 596, 267 ], [ 600, 249, 659, 267 ], [ 664, 249, 718, 267 ], [ 723, 249, 737, 267 ], [ 741, 249, 796, 267 ], [ 800, 249, 861, 267 ], [ 495, 264, 567, 281 ], [ 571, 264, 610, 281 ], [ 408, 279, 477, 296 ], [ 495, 284, 553, 298 ], [ 557, 284, 585, 298 ], [ 588, 284, 615, 298 ], [ 619, 284, 699, 298 ], [ 703, 284, 768, 298 ], [ 208, 302, 235, 319 ], [ 239, 302, 274, 319 ], [ 156, 316, 274, 334 ], [ 382, 302, 418, 319 ], [ 422, 302, 477, 319 ], [ 292, 316, 477, 334 ], [ 495, 302, 524, 319 ], [ 528, 302, 580, 319 ], [ 585, 302, 683, 319 ], [ 688, 302, 737, 319 ], [ 742, 302, 774, 319 ], [ 778, 302, 840, 319 ], [ 845, 302, 872, 319 ], [ 495, 316, 548, 334 ], [ 552, 316, 565, 334 ], [ 569, 316, 578, 334 ], [ 583, 316, 658, 334 ], [ 663, 316, 716, 334 ], [ 372, 331, 431, 349 ], [ 435, 331, 477, 349 ], [ 495, 336, 557, 350 ], [ 561, 336, 602, 350 ], [ 606, 336, 624, 350 ], [ 628, 336, 678, 350 ], [ 682, 336, 770, 350 ], [ 774, 336, 783, 350 ], [ 787, 336, 837, 350 ], [ 495, 353, 545, 367 ], [ 549, 353, 574, 367 ], [ 578, 353, 609, 367 ], [ 613, 353, 622, 367 ], [ 626, 353, 676, 367 ], [ 680, 353, 744, 367 ], [ 748, 353, 773, 367 ], [ 777, 353, 808, 367 ], [ 812, 353, 821, 367 ], [ 825, 353, 870, 367 ], [ 495, 370, 537, 384 ], [ 541, 370, 611, 384 ], [ 615, 370, 628, 384 ], [ 632, 370, 666, 384 ], [ 670, 370, 711, 384 ], [ 715, 370, 757, 384 ], [ 761, 370, 816, 384 ], [ 820, 370, 829, 384 ], [ 495, 387, 568, 401 ], [ 572, 387, 611, 401 ], [ 615, 387, 657, 401 ], [ 415, 400, 477, 417 ], [ 367, 414, 400, 432 ], [ 405, 414, 434, 432 ], [ 438, 414, 477, 432 ], [ 495, 404, 542, 418 ], [ 546, 404, 591, 418 ], [ 595, 404, 623, 418 ], [ 627, 404, 708, 418 ], [ 712, 404, 740, 418 ], [ 744, 404, 809, 418 ], [ 495, 421, 576, 435 ], [ 580, 421, 641, 435 ], [ 423, 434, 477, 452 ], [ 334, 449, 402, 466 ], [ 407, 449, 477, 466 ], [ 409, 464, 477, 481 ], [ 495, 439, 530, 453 ], [ 534, 439, 577, 453 ], [ 581, 439, 616, 453 ], [ 620, 439, 665, 453 ], [ 669, 439, 715, 453 ], [ 719, 439, 734, 453 ], [ 739, 439, 770, 453 ], [ 774, 439, 840, 453 ], [ 495, 456, 527, 470 ], [ 531, 456, 586, 470 ], [ 590, 456, 618, 470 ], [ 621, 456, 667, 470 ], [ 671, 456, 747, 470 ], [ 751, 456, 772, 470 ], [ 543, 473, 676, 487 ], [ 340, 486, 418, 503 ], [ 422, 486, 457, 503 ], [ 462, 486, 477, 503 ], [ 415, 501, 477, 518 ], [ 495, 486, 529, 503 ], [ 533, 486, 616, 503 ], [ 620, 486, 689, 503 ], [ 694, 486, 733, 503 ], [ 737, 486, 751, 503 ], [ 756, 486, 800, 503 ], [ 805, 486, 818, 503 ], [ 823, 486, 860, 503 ], [ 495, 501, 574, 518 ], [ 579, 501, 606, 518 ], [ 610, 501, 656, 518 ], [ 660, 501, 673, 518 ], [ 678, 501, 709, 518 ], [ 714, 501, 767, 518 ], [ 772, 501, 819, 518 ], [ 495, 515, 547, 532 ], [ 551, 515, 575, 532 ], [ 579, 515, 608, 532 ], [ 612, 515, 639, 532 ], [ 644, 515, 727, 532 ], [ 732, 515, 771, 532 ], [ 776, 515, 789, 532 ], [ 794, 515, 872, 532 ], [ 495, 530, 525, 547 ], [ 529, 530, 594, 547 ], [ 599, 530, 666, 547 ], [ 670, 530, 705, 547 ], [ 709, 530, 727, 547 ], [ 731, 530, 776, 547 ], [ 781, 530, 857, 547 ], [ 495, 544, 548, 561 ], [ 142, 559, 168, 576 ], [ 173, 559, 208, 576 ], [ 213, 559, 274, 576 ], [ 188, 574, 274, 591 ], [ 205, 588, 274, 606 ], [ 205, 603, 274, 620 ], [ 221, 617, 274, 635 ], [ 311, 559, 374, 576 ], [ 378, 559, 477, 576 ], [ 421, 574, 477, 591 ], [ 495, 564, 551, 578 ], [ 555, 564, 570, 578 ], [ 574, 564, 637, 578 ], [ 641, 564, 701, 578 ], [ 705, 564, 771, 578 ], [ 776, 564, 825, 578 ], [ 829, 564, 844, 578 ], [ 495, 581, 546, 595 ], [ 378, 594, 477, 611 ], [ 495, 598, 570, 612 ], [ 574, 598, 619, 612 ], [ 623, 598, 651, 612 ], [ 655, 598, 705, 612 ], [ 709, 598, 827, 612 ], [ 831, 598, 846, 612 ], [ 495, 615, 534, 629 ], [ 538, 615, 586, 629 ], [ 590, 615, 605, 629 ], [ 609, 615, 666, 629 ], [ 382, 628, 417, 646 ], [ 422, 628, 477, 646 ], [ 495, 633, 560, 647 ], [ 564, 633, 588, 647 ], [ 592, 633, 675, 647 ], [ 679, 633, 738, 647 ], [ 742, 633, 775, 647 ], [ 778, 633, 806, 647 ], [ 810, 633, 847, 647 ], [ 495, 650, 543, 664 ], [ 547, 650, 606, 664 ], [ 610, 650, 688, 664 ], [ 390, 663, 425, 680 ], [ 430, 663, 477, 680 ], [ 495, 663, 539, 680 ], [ 544, 663, 602, 680 ], [ 607, 663, 638, 680 ], [ 643, 665, 700, 679 ], [ 705, 665, 743, 679 ], [ 748, 663, 761, 680 ], [ 766, 663, 797, 680 ], [ 802, 663, 864, 680 ], [ 365, 680, 400, 698 ], [ 405, 680, 477, 698 ], [ 495, 685, 603, 699 ], [ 607, 685, 665, 699 ], [ 669, 685, 697, 699 ], [ 701, 685, 774, 699 ], [ 778, 685, 819, 699 ], [ 495, 702, 558, 716 ], [ 562, 702, 670, 716 ], [ 674, 702, 732, 716 ], [ 736, 702, 760, 716 ], [ 764, 702, 814, 716 ], [ 495, 719, 588, 733 ], [ 592, 719, 620, 733 ], [ 624, 719, 649, 733 ], [ 653, 719, 753, 733 ], [ 757, 719, 837, 733 ], [ 495, 736, 542, 750 ], [ 546, 736, 582, 750 ], [ 586, 736, 633, 750 ], [ 637, 736, 734, 750 ], [ 738, 736, 814, 750 ], [ 818, 736, 861, 750 ], [ 495, 753, 557, 767 ], [ 561, 753, 637, 767 ], [ 641, 753, 723, 767 ], [ 727, 753, 767, 767 ], [ 771, 753, 832, 767 ], [ 495, 770, 555, 784 ], [ 559, 770, 619, 784 ], [ 623, 770, 660, 784 ], [ 665, 770, 692, 784 ], [ 696, 770, 748, 784 ], [ 752, 770, 806, 784 ], [ 810, 770, 825, 784 ], [ 495, 787, 543, 801 ], [ 547, 787, 637, 801 ], [ 641, 787, 661, 801 ], [ 665, 787, 726, 801 ], [ 730, 787, 780, 801 ], [ 785, 787, 802, 801 ], [ 806, 787, 843, 801 ], [ 495, 804, 568, 818 ], [ 572, 804, 605, 818 ], [ 609, 804, 636, 818 ], [ 640, 804, 704, 818 ], [ 709, 804, 791, 818 ], [ 195, 817, 221, 834 ], [ 226, 817, 261, 834 ], [ 266, 817, 328, 834 ], [ 185, 831, 272, 848 ], [ 276, 831, 328, 848 ], [ 346, 821, 412, 835 ], [ 416, 821, 460, 835 ], [ 464, 821, 538, 835 ], [ 542, 821, 623, 835 ], [ 627, 821, 655, 835 ], [ 659, 821, 763, 835 ], [ 195, 855, 221, 872 ], [ 226, 855, 261, 872 ], [ 266, 855, 328, 872 ], [ 156, 869, 243, 887 ], [ 247, 869, 262, 887 ], [ 266, 869, 328, 887 ], [ 346, 855, 394, 872 ], [ 399, 855, 449, 872 ], [ 454, 855, 522, 872 ], [ 185, 884, 249, 902 ], [ 254, 884, 265, 902 ], [ 270, 884, 328, 902 ], [ 346, 889, 385, 903 ], [ 389, 889, 405, 903 ], [ 409, 889, 473, 903 ], [ 477, 889, 529, 903 ], [ 533, 889, 554, 903 ], [ 558, 889, 597, 903 ], [ 601, 889, 629, 903 ], [ 633, 889, 678, 903 ], [ 682, 889, 723, 903 ], [ 727, 889, 748, 903 ], [ 752, 889, 803, 903 ] ]
data and irregular simulation computation Study 3. variety of nature of graph system output datasets processing (platform) depends on the 3. summary of 3. Charm++ on complexity of the various runs of multi-nodes model simulation (software) 4. network file system (storage) 5. infiniband network (networking) 1. traditional and 1. large scale 1. computing 1. multi-levels 1. protection of 1. data fusion 1. efficient new architecture modeling for infrastructure detail network PII on from variety of method of Social for dynamic various events which can representations individuals used dta sources moving data Contagion distributed (disease, capture 2. visualization in modeling 2. data Modeling processing on emotions, with interactions 2. data protection consistency and for commondity behaviors, etc.) interactions on and secure no corruption Planning clusters 2. scalable fusion various social platform for 3. preprocessing 2. fine-resolution between events via the computation of raw data models and combined Internet datasets in to datasets (infrastructure) support Twitter 3. multi-levels 2. file servers network traffic analysis while and databases 3. huge data generate (platform) storage per year sufficient results 3. Ethernet and 24 quickly Infiniband networking (networking) 4. specialized simulators, open source software, and proprietary modeling (application) 5. huge user accounts across country boundaries (networking) 1. special 1. Web Services 1. expandable 1. access by 1. Federated 1. data storage -- dedicated or based, Grid on-demand based mobile users identity and archiving, overlay sensor based services, storage resource 2. advanced / management for data exchange and network relational for global users rich / high mobile and integration LifeWatch 2. storage databases and 2. cloud definition researchers and 2. data lifecycle Distributed, NoSQL community visualization mobile sensors management: historical and 2. personalized resource required 3. 4D 2. access control data provenance, trends data virtual labs visualization and accounting referral integrity 25 archiving 3. grid and cloud computational and identification 3. data sources based resources models traceability back distributed, and 4. data analysed to initial include incrementally observational observation and and/or real-time data monitoring at varying rates 3. [In addition to facilities, sensor due to variations original source network, and in source data,] processed satellites. processes. (secondary) data
Study data 3. variety of output datasets depends on the complexity of the model and irregular nature of graph processing 3. summary of various runs of simulation simulation system (platform) 3. Charm++ on multi-nodes (software) 4. network file system (storage) 5. infiniband network (networking) computation 24 Social Contagion Modeling for Planning 1. traditional and new architecture for dynamic distributed processing on commondity clusters 2. fine-resolution models and datasets in to support Twitter network traffic 3. huge data storage per year 1. large scale modeling for various events (disease, emotions, behaviors, etc.) 2. scalable fusion between combined datasets 3. multi-levels analysis while generate sufficient results quickly 1. computing infrastructure which can capture interactions on various social events via the Internet (infrastructure) 2. file servers and databases (platform) 3. Ethernet and Infiniband networking (networking) 4. specialized simulators, open source software, and proprietary modeling (application) 5. huge user accounts across country boundaries (networking) 1. multi-levels detail network representations 2. visualization with interactions 1. protection of PII on individuals used in modeling 2. data protection and secure platform for computation 1. data fusion from variety of dta sources 2. data consistency and no corruption 3. preprocessing of raw data 1. efficient method of moving data 25 and LifeWatch 1. special dedicated or overlay sensor network 2. storage Distributed, historical and trends data archiving 3. data sources distributed, and include observation and monitoring facilities, sensor network, and satellites. 1. Web Services based, Grid based services, relational databases and NoSQL 2. personalized virtual labs 3. grid and cloud based resources 4. data analysed incrementally and/or real-time at varying rates due to variations in source processes. 1. expandable on-demand based storage resource for global users 2. cloud community resource required 1. access by mobile users 2. advanced / rich / high definition visualization 3. 4D visualization computational models 1. Federated identity management for mobile researchers and mobile sensors 2. access control and accounting 1. data storage and archiving, data exchange and integration 2. data lifecycle management: data provenance, referral integrity and identification traceability back to initial observational data 3. [In addition to original source data,] processed (secondary) data --
0.304828
[ 5, 0, 6, 7, 8, 13, 14, 17, 18, 19, 26, 27, 28, 33, 1, 2, 9, 10, 11, 15, 20, 21, 22, 29, 30, 31, 34, 3, 12, 16, 23, 24, 25, 32, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 4, 178, 77, 91, 101, 112, 122, 45, 46, 47, 63, 64, 78, 79, 92, 102, 103, 113, 123, 133, 134, 143, 144, 147, 148, 149, 152, 153, 159, 160, 165, 166, 167, 170, 171, 172, 48, 49, 50, 65, 66, 80, 81, 93, 104, 114, 115, 124, 125, 126, 135, 145, 150, 154, 155, 161, 162, 168, 173, 174, 179, 51, 52, 67, 82, 83, 94, 116, 117, 127, 128, 136, 137, 138, 146, 151, 156, 157, 158, 163, 164, 169, 175, 176, 177, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 53, 54, 68, 69, 84, 95, 96, 105, 106, 55, 56, 57, 70, 71, 85, 86, 97, 98, 107, 108, 109, 118, 119, 129, 130, 139, 58, 59, 60, 72, 73, 74, 87, 88, 99, 100, 110, 111, 120, 121, 131, 132, 140, 141, 142, 61, 62, 75, 76, 89, 90, 295, 241, 253, 201, 202, 217, 218, 228, 229, 242, 254, 255, 266, 273, 274, 286, 287, 296, 304, 305, 306, 312, 313, 319, 322, 323, 327, 335, 336, 342, 343, 348, 203, 204, 205, 219, 220, 230, 231, 243, 256, 257, 267, 275, 276, 288, 289, 297, 298, 299, 300, 307, 308, 314, 315, 316, 320, 324, 325, 328, 329, 330, 337, 338, 339, 344, 345, 349, 206, 207, 221, 222, 232, 233, 244, 245, 246, 258, 259, 268, 277, 278, 208, 209, 210, 223, 224, 234, 235, 236, 247, 248, 249, 260, 269, 279, 280, 290, 301, 309, 211, 212, 225, 237, 238, 250, 261, 262, 270, 271, 281, 282, 283, 291, 292, 213, 214, 215, 226, 227, 239, 240, 251, 252, 263, 264, 265, 272, 284, 285, 293, 294, 302, 303, 310, 311, 317, 318, 321, 326, 331, 332, 333, 334, 340, 341, 346, 347, 350, 351, 216 ]
M0245_v2_8244561618.docx
task-1430-727
51
[ [ 158, 138, 182, 153 ], [ 270, 138, 291, 153 ], [ 295, 138, 345, 153 ], [ 381, 138, 443, 153 ], [ 605, 138, 678, 153 ], [ 81, 140, 118, 153 ], [ 158, 151, 169, 166 ], [ 173, 151, 213, 166 ], [ 217, 151, 229, 166 ], [ 270, 151, 306, 166 ], [ 310, 151, 322, 166 ], [ 326, 151, 359, 166 ], [ 381, 151, 422, 166 ], [ 158, 164, 196, 179 ], [ 199, 164, 246, 179 ], [ 270, 164, 333, 179 ], [ 381, 164, 442, 179 ], [ 158, 177, 206, 192 ], [ 210, 177, 225, 192 ], [ 228, 177, 246, 192 ], [ 270, 177, 281, 192 ], [ 284, 177, 339, 192 ], [ 343, 177, 355, 192 ], [ 381, 177, 392, 192 ], [ 396, 177, 453, 192 ], [ 456, 177, 471, 192 ], [ 158, 190, 224, 206 ], [ 227, 190, 240, 206 ], [ 243, 190, 262, 206 ], [ 270, 190, 313, 206 ], [ 317, 190, 342, 206 ], [ 346, 190, 358, 206 ], [ 381, 190, 452, 206 ], [ 158, 203, 194, 219 ], [ 270, 203, 332, 219 ], [ 381, 203, 442, 219 ], [ 381, 216, 392, 232 ], [ 396, 216, 444, 232 ], [ 448, 216, 467, 232 ], [ 381, 230, 422, 245 ], [ 426, 230, 478, 245 ], [ 381, 243, 392, 258 ], [ 396, 243, 457, 258 ], [ 381, 256, 429, 271 ], [ 381, 269, 458, 284 ], [ 158, 288, 169, 303 ], [ 173, 288, 233, 303 ], [ 237, 288, 258, 303 ], [ 270, 288, 281, 303 ], [ 284, 288, 314, 303 ], [ 317, 288, 347, 303 ], [ 381, 288, 392, 303 ], [ 396, 288, 459, 303 ], [ 493, 288, 504, 303 ], [ 508, 288, 578, 303 ], [ 605, 288, 616, 303 ], [ 620, 288, 679, 303 ], [ 683, 288, 695, 303 ], [ 717, 288, 728, 303 ], [ 732, 288, 756, 303 ], [ 760, 288, 796, 303 ], [ 828, 288, 840, 303 ], [ 843, 288, 892, 303 ], [ 158, 301, 182, 316 ], [ 186, 301, 255, 316 ], [ 270, 301, 325, 316 ], [ 329, 301, 346, 316 ], [ 381, 301, 461, 316 ], [ 493, 301, 526, 316 ], [ 530, 301, 578, 316 ], [ 605, 301, 623, 316 ], [ 627, 301, 641, 316 ], [ 717, 301, 745, 316 ], [ 749, 301, 790, 316 ], [ 793, 301, 806, 316 ], [ 828, 301, 873, 316 ], [ 876, 301, 889, 316 ], [ 81, 305, 119, 317 ], [ 158, 314, 175, 329 ], [ 179, 314, 229, 329 ], [ 270, 314, 313, 329 ], [ 317, 314, 354, 329 ], [ 381, 314, 417, 329 ], [ 421, 314, 441, 329 ], [ 493, 314, 582, 329 ], [ 605, 314, 670, 329 ], [ 674, 314, 701, 329 ], [ 717, 314, 735, 329 ], [ 738, 314, 783, 329 ], [ 828, 314, 873, 329 ], [ 877, 314, 901, 329 ], [ 81, 320, 146, 332 ], [ 158, 327, 221, 342 ], [ 270, 327, 320, 342 ], [ 381, 327, 425, 342 ], [ 493, 327, 504, 342 ], [ 508, 327, 583, 342 ], [ 605, 327, 616, 342 ], [ 620, 327, 676, 342 ], [ 717, 327, 728, 342 ], [ 732, 327, 756, 342 ], [ 81, 335, 141, 347 ], [ 158, 340, 221, 355 ], [ 224, 340, 239, 355 ], [ 270, 340, 327, 355 ], [ 493, 340, 519, 355 ], [ 523, 340, 592, 355 ], [ 605, 340, 616, 355 ], [ 620, 340, 644, 355 ], [ 648, 340, 708, 355 ], [ 717, 340, 785, 355 ], [ 789, 340, 810, 355 ], [ 81, 350, 100, 362 ], [ 158, 353, 232, 368 ], [ 270, 353, 330, 368 ], [ 334, 353, 360, 368 ], [ 381, 353, 450, 368 ], [ 454, 353, 469, 368 ], [ 605, 353, 626, 368 ], [ 630, 353, 668, 368 ], [ 717, 353, 731, 368 ], [ 735, 353, 796, 368 ], [ 81, 365, 137, 377 ], [ 158, 366, 203, 381 ], [ 270, 366, 281, 381 ], [ 284, 366, 332, 381 ], [ 335, 366, 372, 381 ], [ 381, 366, 425, 381 ], [ 428, 366, 463, 381 ], [ 605, 366, 656, 381 ], [ 659, 366, 676, 381 ], [ 717, 366, 728, 381 ], [ 732, 366, 813, 381 ], [ 158, 379, 169, 394 ], [ 173, 379, 259, 394 ], [ 270, 379, 318, 394 ], [ 381, 379, 419, 394 ], [ 423, 379, 440, 394 ], [ 444, 379, 462, 394 ], [ 605, 379, 678, 394 ], [ 717, 379, 729, 394 ], [ 733, 379, 755, 394 ], [ 758, 379, 783, 394 ], [ 158, 392, 200, 407 ], [ 204, 392, 225, 407 ], [ 270, 392, 327, 407 ], [ 381, 392, 427, 407 ], [ 158, 405, 204, 420 ], [ 208, 405, 219, 420 ], [ 223, 405, 235, 420 ], [ 270, 405, 316, 420 ], [ 381, 405, 470, 420 ], [ 158, 418, 202, 433 ], [ 206, 418, 249, 433 ], [ 270, 418, 281, 433 ], [ 284, 418, 354, 433 ], [ 381, 418, 392, 433 ], [ 396, 418, 416, 433 ], [ 419, 418, 461, 433 ], [ 158, 431, 206, 446 ], [ 210, 431, 245, 446 ], [ 270, 431, 317, 446 ], [ 321, 431, 353, 446 ], [ 381, 431, 403, 446 ], [ 406, 431, 463, 446 ], [ 158, 444, 169, 460 ], [ 173, 444, 201, 460 ], [ 205, 444, 229, 460 ], [ 270, 444, 319, 460 ], [ 381, 444, 442, 460 ], [ 158, 457, 200, 473 ], [ 204, 457, 223, 473 ], [ 226, 457, 251, 473 ], [ 270, 457, 325, 473 ], [ 329, 457, 367, 473 ], [ 381, 457, 392, 473 ], [ 396, 457, 446, 473 ], [ 450, 457, 471, 473 ], [ 58, 459, 73, 471 ], [ 270, 470, 314, 486 ], [ 381, 470, 443, 486 ], [ 381, 484, 448, 499 ], [ 381, 497, 458, 512 ], [ 381, 510, 392, 525 ], [ 396, 510, 461, 525 ], [ 381, 523, 446, 538 ], [ 450, 523, 479, 538 ], [ 381, 536, 420, 551 ], [ 424, 536, 478, 551 ], [ 381, 549, 403, 564 ], [ 406, 549, 472, 564 ], [ 381, 562, 437, 577 ], [ 381, 575, 457, 590 ], [ 381, 588, 392, 603 ], [ 396, 588, 425, 603 ], [ 428, 588, 453, 603 ], [ 381, 601, 433, 616 ], [ 437, 601, 473, 616 ], [ 381, 614, 426, 629 ], [ 381, 627, 446, 642 ], [ 381, 640, 458, 656 ], [ 158, 659, 169, 674 ], [ 173, 659, 213, 674 ], [ 270, 659, 281, 674 ], [ 284, 659, 312, 674 ], [ 316, 659, 365, 674 ], [ 381, 659, 392, 674 ], [ 396, 659, 463, 674 ], [ 493, 659, 504, 674 ], [ 508, 659, 545, 674 ], [ 549, 659, 564, 674 ], [ 605, 659, 616, 674 ], [ 620, 659, 678, 674 ], [ 717, 659, 728, 674 ], [ 732, 659, 756, 674 ], [ 760, 659, 802, 674 ], [ 828, 659, 838, 674 ], [ 158, 672, 214, 687 ], [ 218, 672, 230, 687 ], [ 270, 672, 307, 687 ], [ 311, 672, 337, 687 ], [ 381, 672, 447, 687 ], [ 451, 672, 485, 687 ], [ 493, 672, 534, 687 ], [ 538, 672, 568, 687 ], [ 605, 672, 650, 687 ], [ 717, 672, 738, 687 ], [ 742, 672, 801, 687 ], [ 158, 685, 202, 701 ], [ 205, 685, 243, 701 ], [ 270, 685, 303, 701 ], [ 307, 685, 358, 701 ], [ 381, 685, 424, 701 ], [ 427, 685, 477, 701 ], [ 493, 685, 504, 701 ], [ 508, 685, 563, 701 ], [ 567, 685, 571, 701 ], [ 605, 685, 680, 701 ], [ 684, 685, 701, 701 ], [ 717, 685, 741, 701 ], [ 745, 685, 800, 701 ], [ 92, 691, 116, 704 ], [ 158, 698, 206, 714 ], [ 270, 698, 325, 714 ], [ 381, 698, 398, 714 ], [ 402, 698, 439, 714 ], [ 443, 698, 473, 714 ], [ 493, 698, 516, 714 ], [ 520, 698, 524, 714 ], [ 527, 698, 554, 714 ], [ 605, 698, 646, 714 ], [ 717, 698, 738, 714 ], [ 742, 698, 805, 714 ], [ 81, 706, 148, 719 ], [ 158, 711, 169, 727 ], [ 173, 711, 215, 727 ], [ 270, 711, 326, 727 ], [ 330, 711, 351, 727 ], [ 381, 711, 392, 727 ], [ 396, 711, 429, 727 ], [ 493, 711, 550, 727 ], [ 605, 711, 671, 727 ], [ 675, 711, 696, 727 ], [ 717, 711, 728, 727 ], [ 732, 711, 756, 727 ], [ 760, 711, 810, 727 ], [ 158, 724, 228, 740 ], [ 270, 724, 315, 740 ], [ 381, 724, 448, 740 ], [ 493, 724, 568, 740 ], [ 605, 724, 646, 740 ], [ 649, 724, 693, 740 ], [ 717, 724, 796, 740 ], [ 158, 738, 213, 753 ], [ 216, 738, 237, 753 ], [ 270, 738, 281, 753 ], [ 284, 738, 359, 753 ], [ 381, 738, 431, 753 ], [ 435, 738, 484, 753 ], [ 493, 738, 504, 753 ], [ 508, 738, 526, 753 ], [ 605, 738, 616, 753 ], [ 620, 738, 657, 753 ], [ 661, 738, 703, 753 ], [ 717, 738, 741, 753 ], [ 745, 738, 816, 753 ], [ 158, 751, 194, 766 ], [ 198, 751, 222, 766 ], [ 270, 751, 308, 766 ], [ 312, 751, 335, 766 ], [ 493, 751, 568, 766 ], [ 605, 751, 626, 766 ], [ 630, 751, 695, 766 ], [ 717, 751, 760, 766 ], [ 764, 751, 814, 766 ], [ 58, 759, 73, 771 ], [ 158, 764, 213, 779 ], [ 270, 764, 281, 779 ], [ 284, 764, 308, 779 ], [ 312, 764, 333, 779 ], [ 337, 764, 369, 779 ], [ 493, 764, 577, 779 ], [ 717, 764, 738, 779 ], [ 742, 764, 820, 779 ], [ 158, 777, 169, 792 ], [ 173, 777, 197, 792 ], [ 201, 777, 245, 792 ], [ 270, 777, 303, 792 ], [ 307, 777, 362, 792 ], [ 493, 777, 535, 792 ], [ 717, 777, 783, 792 ], [ 786, 777, 814, 792 ], [ 158, 790, 225, 805 ], [ 228, 790, 249, 805 ], [ 270, 790, 281, 805 ], [ 284, 790, 309, 805 ], [ 313, 790, 364, 805 ], [ 717, 790, 728, 805 ], [ 732, 790, 766, 805 ], [ 158, 803, 201, 818 ], [ 270, 803, 350, 818 ], [ 717, 803, 796, 818 ], [ 158, 816, 226, 831 ], [ 230, 816, 251, 831 ], [ 270, 816, 307, 831 ], [ 311, 816, 364, 831 ], [ 717, 816, 741, 831 ], [ 158, 829, 223, 844 ], [ 270, 829, 280, 844 ], [ 284, 829, 329, 844 ], [ 332, 829, 360, 844 ], [ 717, 829, 728, 844 ], [ 731, 829, 749, 844 ], [ 752, 829, 801, 844 ], [ 804, 829, 816, 844 ], [ 158, 842, 212, 857 ], [ 216, 842, 253, 857 ], [ 270, 842, 291, 857 ], [ 295, 842, 306, 857 ], [ 310, 842, 368, 857 ], [ 717, 842, 763, 857 ], [ 766, 842, 805, 857 ], [ 158, 855, 209, 870 ], [ 213, 855, 235, 870 ], [ 270, 855, 281, 870 ], [ 285, 855, 323, 870 ], [ 717, 855, 750, 870 ], [ 754, 855, 811, 870 ], [ 158, 868, 213, 883 ], [ 270, 868, 329, 883 ], [ 717, 868, 786, 883 ], [ 790, 868, 814, 883 ] ]
[ [ 81, 140, 118, 153 ], [ 158, 138, 182, 153 ], [ 158, 151, 169, 166 ], [ 173, 151, 213, 166 ], [ 217, 151, 229, 166 ], [ 158, 164, 196, 179 ], [ 199, 164, 246, 179 ], [ 158, 177, 206, 192 ], [ 210, 177, 225, 192 ], [ 228, 177, 246, 192 ], [ 158, 190, 224, 206 ], [ 227, 190, 240, 206 ], [ 243, 190, 262, 206 ], [ 158, 203, 194, 219 ], [ 270, 138, 291, 153 ], [ 295, 138, 345, 153 ], [ 270, 151, 306, 166 ], [ 310, 151, 322, 166 ], [ 326, 151, 359, 166 ], [ 270, 164, 333, 179 ], [ 270, 177, 281, 192 ], [ 284, 177, 339, 192 ], [ 343, 177, 355, 192 ], [ 270, 190, 313, 206 ], [ 317, 190, 342, 206 ], [ 346, 190, 358, 206 ], [ 270, 203, 332, 219 ], [ 381, 138, 443, 153 ], [ 381, 151, 422, 166 ], [ 381, 164, 442, 179 ], [ 381, 177, 392, 192 ], [ 396, 177, 453, 192 ], [ 456, 177, 471, 192 ], [ 381, 190, 452, 206 ], [ 381, 203, 442, 219 ], [ 381, 216, 392, 232 ], [ 396, 216, 444, 232 ], [ 448, 216, 467, 232 ], [ 381, 230, 422, 245 ], [ 426, 230, 478, 245 ], [ 381, 243, 392, 258 ], [ 396, 243, 457, 258 ], [ 381, 256, 429, 271 ], [ 381, 269, 458, 284 ], [ 605, 138, 678, 153 ], [ 58, 459, 73, 471 ], [ 81, 305, 119, 317 ], [ 81, 320, 146, 332 ], [ 81, 335, 141, 347 ], [ 81, 350, 100, 362 ], [ 81, 365, 137, 377 ], [ 158, 288, 169, 303 ], [ 173, 288, 233, 303 ], [ 237, 288, 258, 303 ], [ 158, 301, 182, 316 ], [ 186, 301, 255, 316 ], [ 158, 314, 175, 329 ], [ 179, 314, 229, 329 ], [ 158, 327, 221, 342 ], [ 158, 340, 221, 355 ], [ 224, 340, 239, 355 ], [ 158, 353, 232, 368 ], [ 158, 366, 203, 381 ], [ 158, 379, 169, 394 ], [ 173, 379, 259, 394 ], [ 158, 392, 200, 407 ], [ 204, 392, 225, 407 ], [ 158, 405, 204, 420 ], [ 208, 405, 219, 420 ], [ 223, 405, 235, 420 ], [ 158, 418, 202, 433 ], [ 206, 418, 249, 433 ], [ 158, 431, 206, 446 ], [ 210, 431, 245, 446 ], [ 158, 444, 169, 460 ], [ 173, 444, 201, 460 ], [ 205, 444, 229, 460 ], [ 158, 457, 200, 473 ], [ 204, 457, 223, 473 ], [ 226, 457, 251, 473 ], [ 270, 288, 281, 303 ], [ 284, 288, 314, 303 ], [ 317, 288, 347, 303 ], [ 270, 301, 325, 316 ], [ 329, 301, 346, 316 ], [ 270, 314, 313, 329 ], [ 317, 314, 354, 329 ], [ 270, 327, 320, 342 ], [ 270, 340, 327, 355 ], [ 270, 353, 330, 368 ], [ 334, 353, 360, 368 ], [ 270, 366, 281, 381 ], [ 284, 366, 332, 381 ], [ 335, 366, 372, 381 ], [ 270, 379, 318, 394 ], [ 270, 392, 327, 407 ], [ 270, 405, 316, 420 ], [ 270, 418, 281, 433 ], [ 284, 418, 354, 433 ], [ 270, 431, 317, 446 ], [ 321, 431, 353, 446 ], [ 270, 444, 319, 460 ], [ 270, 457, 325, 473 ], [ 329, 457, 367, 473 ], [ 270, 470, 314, 486 ], [ 381, 288, 392, 303 ], [ 396, 288, 459, 303 ], [ 381, 301, 461, 316 ], [ 381, 314, 417, 329 ], [ 421, 314, 441, 329 ], [ 381, 327, 425, 342 ], [ 381, 353, 450, 368 ], [ 454, 353, 469, 368 ], [ 381, 366, 425, 381 ], [ 428, 366, 463, 381 ], [ 381, 379, 419, 394 ], [ 423, 379, 440, 394 ], [ 444, 379, 462, 394 ], [ 381, 392, 427, 407 ], [ 381, 405, 470, 420 ], [ 381, 418, 392, 433 ], [ 396, 418, 416, 433 ], [ 419, 418, 461, 433 ], [ 381, 431, 403, 446 ], [ 406, 431, 463, 446 ], [ 381, 444, 442, 460 ], [ 381, 457, 392, 473 ], [ 396, 457, 446, 473 ], [ 450, 457, 471, 473 ], [ 381, 470, 443, 486 ], [ 381, 484, 448, 499 ], [ 381, 497, 458, 512 ], [ 381, 510, 392, 525 ], [ 396, 510, 461, 525 ], [ 381, 523, 446, 538 ], [ 450, 523, 479, 538 ], [ 381, 536, 420, 551 ], [ 424, 536, 478, 551 ], [ 381, 549, 403, 564 ], [ 406, 549, 472, 564 ], [ 381, 562, 437, 577 ], [ 381, 575, 457, 590 ], [ 381, 588, 392, 603 ], [ 396, 588, 425, 603 ], [ 428, 588, 453, 603 ], [ 381, 601, 433, 616 ], [ 437, 601, 473, 616 ], [ 381, 614, 426, 629 ], [ 381, 627, 446, 642 ], [ 381, 640, 458, 656 ], [ 493, 288, 504, 303 ], [ 508, 288, 578, 303 ], [ 493, 301, 526, 316 ], [ 530, 301, 578, 316 ], [ 493, 314, 582, 329 ], [ 493, 327, 504, 342 ], [ 508, 327, 583, 342 ], [ 493, 340, 519, 355 ], [ 523, 340, 592, 355 ], [ 605, 288, 616, 303 ], [ 620, 288, 679, 303 ], [ 683, 288, 695, 303 ], [ 605, 301, 623, 316 ], [ 627, 301, 641, 316 ], [ 605, 314, 670, 329 ], [ 674, 314, 701, 329 ], [ 605, 327, 616, 342 ], [ 620, 327, 676, 342 ], [ 605, 340, 616, 355 ], [ 620, 340, 644, 355 ], [ 648, 340, 708, 355 ], [ 605, 353, 626, 368 ], [ 630, 353, 668, 368 ], [ 605, 366, 656, 381 ], [ 659, 366, 676, 381 ], [ 605, 379, 678, 394 ], [ 717, 288, 728, 303 ], [ 732, 288, 756, 303 ], [ 760, 288, 796, 303 ], [ 717, 301, 745, 316 ], [ 749, 301, 790, 316 ], [ 793, 301, 806, 316 ], [ 717, 314, 735, 329 ], [ 738, 314, 783, 329 ], [ 717, 327, 728, 342 ], [ 732, 327, 756, 342 ], [ 717, 340, 785, 355 ], [ 789, 340, 810, 355 ], [ 717, 353, 731, 368 ], [ 735, 353, 796, 368 ], [ 717, 366, 728, 381 ], [ 732, 366, 813, 381 ], [ 717, 379, 729, 394 ], [ 733, 379, 755, 394 ], [ 758, 379, 783, 394 ], [ 828, 288, 840, 303 ], [ 843, 288, 892, 303 ], [ 828, 301, 873, 316 ], [ 876, 301, 889, 316 ], [ 828, 314, 873, 329 ], [ 877, 314, 901, 329 ], [ 58, 759, 73, 771 ], [ 92, 691, 116, 704 ], [ 81, 706, 148, 719 ], [ 158, 659, 169, 674 ], [ 173, 659, 213, 674 ], [ 158, 672, 214, 687 ], [ 218, 672, 230, 687 ], [ 158, 685, 202, 701 ], [ 205, 685, 243, 701 ], [ 158, 698, 206, 714 ], [ 158, 711, 169, 727 ], [ 173, 711, 215, 727 ], [ 158, 724, 228, 740 ], [ 158, 738, 213, 753 ], [ 216, 738, 237, 753 ], [ 158, 751, 194, 766 ], [ 198, 751, 222, 766 ], [ 158, 764, 213, 779 ], [ 158, 777, 169, 792 ], [ 173, 777, 197, 792 ], [ 201, 777, 245, 792 ], [ 158, 790, 225, 805 ], [ 228, 790, 249, 805 ], [ 158, 803, 201, 818 ], [ 158, 816, 226, 831 ], [ 230, 816, 251, 831 ], [ 158, 829, 223, 844 ], [ 158, 842, 212, 857 ], [ 216, 842, 253, 857 ], [ 158, 855, 209, 870 ], [ 213, 855, 235, 870 ], [ 158, 868, 213, 883 ], [ 270, 659, 281, 674 ], [ 284, 659, 312, 674 ], [ 316, 659, 365, 674 ], [ 270, 672, 307, 687 ], [ 311, 672, 337, 687 ], [ 270, 685, 303, 701 ], [ 307, 685, 358, 701 ], [ 270, 698, 325, 714 ], [ 270, 711, 326, 727 ], [ 330, 711, 351, 727 ], [ 270, 724, 315, 740 ], [ 270, 738, 281, 753 ], [ 284, 738, 359, 753 ], [ 270, 751, 308, 766 ], [ 312, 751, 335, 766 ], [ 270, 764, 281, 779 ], [ 284, 764, 308, 779 ], [ 312, 764, 333, 779 ], [ 337, 764, 369, 779 ], [ 270, 777, 303, 792 ], [ 307, 777, 362, 792 ], [ 270, 790, 281, 805 ], [ 284, 790, 309, 805 ], [ 313, 790, 364, 805 ], [ 270, 803, 350, 818 ], [ 270, 816, 307, 831 ], [ 311, 816, 364, 831 ], [ 270, 829, 280, 844 ], [ 284, 829, 329, 844 ], [ 332, 829, 360, 844 ], [ 270, 842, 291, 857 ], [ 295, 842, 306, 857 ], [ 310, 842, 368, 857 ], [ 270, 855, 281, 870 ], [ 285, 855, 323, 870 ], [ 270, 868, 329, 883 ], [ 381, 659, 392, 674 ], [ 396, 659, 463, 674 ], [ 381, 672, 447, 687 ], [ 451, 672, 485, 687 ], [ 381, 685, 424, 701 ], [ 427, 685, 477, 701 ], [ 381, 698, 398, 714 ], [ 402, 698, 439, 714 ], [ 443, 698, 473, 714 ], [ 381, 711, 392, 727 ], [ 396, 711, 429, 727 ], [ 381, 724, 448, 740 ], [ 381, 738, 431, 753 ], [ 435, 738, 484, 753 ], [ 493, 659, 504, 674 ], [ 508, 659, 545, 674 ], [ 549, 659, 564, 674 ], [ 493, 672, 534, 687 ], [ 538, 672, 568, 687 ], [ 493, 685, 504, 701 ], [ 508, 685, 563, 701 ], [ 567, 685, 571, 701 ], [ 493, 698, 516, 714 ], [ 520, 698, 524, 714 ], [ 527, 698, 554, 714 ], [ 493, 711, 550, 727 ], [ 493, 724, 568, 740 ], [ 493, 738, 504, 753 ], [ 508, 738, 526, 753 ], [ 493, 751, 568, 766 ], [ 493, 764, 577, 779 ], [ 493, 777, 535, 792 ], [ 605, 659, 616, 674 ], [ 620, 659, 678, 674 ], [ 605, 672, 650, 687 ], [ 605, 685, 680, 701 ], [ 684, 685, 701, 701 ], [ 605, 698, 646, 714 ], [ 605, 711, 671, 727 ], [ 675, 711, 696, 727 ], [ 605, 724, 646, 740 ], [ 649, 724, 693, 740 ], [ 605, 738, 616, 753 ], [ 620, 738, 657, 753 ], [ 661, 738, 703, 753 ], [ 605, 751, 626, 766 ], [ 630, 751, 695, 766 ], [ 717, 659, 728, 674 ], [ 732, 659, 756, 674 ], [ 760, 659, 802, 674 ], [ 717, 672, 738, 687 ], [ 742, 672, 801, 687 ], [ 717, 685, 741, 701 ], [ 745, 685, 800, 701 ], [ 717, 698, 738, 714 ], [ 742, 698, 805, 714 ], [ 717, 711, 728, 727 ], [ 732, 711, 756, 727 ], [ 760, 711, 810, 727 ], [ 717, 724, 796, 740 ], [ 717, 738, 741, 753 ], [ 745, 738, 816, 753 ], [ 717, 751, 760, 766 ], [ 764, 751, 814, 766 ], [ 717, 764, 738, 779 ], [ 742, 764, 820, 779 ], [ 717, 777, 783, 792 ], [ 786, 777, 814, 792 ], [ 717, 790, 728, 805 ], [ 732, 790, 766, 805 ], [ 717, 803, 796, 818 ], [ 717, 816, 741, 831 ], [ 717, 829, 728, 844 ], [ 731, 829, 749, 844 ], [ 752, 829, 801, 844 ], [ 804, 829, 816, 844 ], [ 717, 842, 763, 857 ], [ 766, 842, 805, 857 ], [ 717, 855, 750, 870 ], [ 754, 855, 811, 870 ], [ 717, 868, 786, 883 ], [ 790, 868, 814, 883 ], [ 828, 659, 838, 674 ] ]
country boundaries (networking) 1. special 1. Web Services 1. expandable 1. access by 1. Federated 1. data storage and -- dedicated or based, Grid on-demand based mobile users identity archiving, data Biodiversity overlay sensor based services, storage resource 2. advanced / management for exchange and and network relational for global users rich / high mobile integration LifeWatch 2. storage databases and 2. cloud definition researchers and 2. data lifecycle Distributed, NoSQL community visualization mobile sensors management: data historical and 2. personalized resource required 3. 4D 2. access control provenance, referral trends data virtual labs visualization and accounting integrity and archiving 3. grid and cloud computational identification 3. data sources based resources models traceability back to distributed, and 4. data analysed initial observational include incrementally data observation and/or real-time 3. [In addition to and monitoring at varying rates original source facilities, due to variations data,] processed sensor in source (secondary) data network, and processes. may be stored for satellites. 5. a variety of future uses 25 4. wide variety data, analytical 4. provenance (and of data, and modeling persistent including tools to support identification (PID)) satellite analytics for control of data, diverse scientific algorithms, and climate communities. workflows and weather 6. parallel data 5. curated data, photos, streams and (authorized) video, sound streaming reference data (i.e. analytics species names lists), recordings… 5. multi-type 7. access and algorithms, software data integration of code, workflows combination multiple and linkage distributed potentially databases unlimited data variety 6. data streaming -- -- 1. GPU -- -- -- -- 2. high Large-scale performance MPI Deep and HPC Learning Infiniband cluster 3. libraries for single-machine or single-GPU 26 computation are available (e.g., BLAS, CuBLAS, MAGMA, etc.), distributed computation of dense BLAS-like or LAPACK-like
country boundaries (networking) 25 Biodiversity and LifeWatch 1. special dedicated or overlay sensor network 2. storage Distributed, historical and trends data archiving 3. data sources distributed, and include observation and monitoring facilities, sensor network, and satellites. 4. wide variety of data, including satellite climate and weather data, photos, video, sound recordings… 5. multi-type data combination and linkage potentially unlimited data variety 6. data streaming 1. Web Services based, Grid based services, relational databases and NoSQL 2. personalized virtual labs 3. grid and cloud based resources 4. data analysed incrementally and/or real-time at varying rates due to variations in source processes. 5. a variety of data, analytical and modeling tools to support analytics for diverse scientific communities. 6. parallel data streams and streaming analytics 7. access and integration of multiple distributed databases 1. expandable on-demand based storage resource for global users 2. cloud community resource required 1. access by mobile users 2. advanced / rich / high definition visualization 3. 4D visualization computational models 1. Federated identity management for mobile researchers and mobile sensors 2. access control and accounting 1. data storage and archiving, data exchange and integration 2. data lifecycle management: data provenance, referral integrity and identification traceability back to initial observational data 3. [In addition to original source data,] processed (secondary) data may be stored for future uses 4. provenance (and persistent identification (PID)) control of data, algorithms, and workflows 5. curated (authorized) reference data (i.e. species names lists), algorithms, software code, workflows -- 26 Large-scale Deep Learning -- -- 1. GPU 2. high performance MPI and HPC Infiniband cluster 3. libraries for single-machine or single-GPU computation are available (e.g., BLAS, CuBLAS, MAGMA, etc.), distributed computation of dense BLAS-like or LAPACK-like -- -- -- --
0.319587
[ 0, 1, 2, 164, 31, 45, 56, 3, 4, 20, 21, 32, 33, 46, 57, 58, 69, 77, 78, 90, 91, 99, 106, 107, 108, 115, 116, 122, 125, 132, 133, 139, 145, 150, 151, 157, 165, 166, 167, 173, 174, 178, 184, 194, 197, 198, 204, 205, 209, 210, 219, 220, 221, 227, 232, 234, 235, 237, 239, 240, 241, 242, 243, 244, 5, 6, 7, 22, 23, 34, 35, 47, 59, 60, 70, 79, 80, 92, 93, 100, 101, 102, 103, 109, 110, 117, 118, 119, 123, 126, 127, 134, 135, 136, 140, 141, 142, 146, 147, 152, 158, 159, 160, 161, 168, 169, 175, 176, 179, 180, 181, 185, 186, 190, 191, 195, 199, 200, 201, 206, 207, 211, 215, 222, 223, 224, 228, 229, 233, 236, 238, 8, 9, 24, 25, 36, 37, 48, 49, 50, 61, 62, 71, 81, 82, 10, 11, 12, 26, 27, 38, 39, 40, 51, 52, 53, 63, 72, 83, 84, 94, 104, 111, 13, 14, 28, 41, 42, 54, 64, 65, 73, 74, 85, 86, 87, 95, 96, 15, 16, 17, 18, 29, 30, 43, 44, 55, 66, 67, 68, 75, 76, 88, 89, 97, 98, 105, 112, 113, 114, 120, 121, 124, 128, 129, 130, 131, 137, 138, 143, 144, 148, 149, 153, 154, 155, 156, 162, 163, 170, 171, 172, 177, 182, 183, 187, 188, 189, 192, 193, 196, 202, 203, 208, 212, 213, 214, 216, 217, 218, 225, 226, 230, 231, 19, 270, 255, 258, 261, 245, 246, 247, 248, 253, 254, 256, 257, 259, 260, 262, 263, 264, 265, 266, 267, 268, 269, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 249, 250, 251, 252 ]
M0245_v4_9775320899.docx
task-1430-729
54
[ [ 390, 139, 435, 154 ], [ 390, 152, 455, 167 ], [ 390, 165, 467, 180 ], [ 178, 184, 189, 199 ], [ 193, 184, 234, 199 ], [ 278, 184, 289, 199 ], [ 293, 184, 321, 199 ], [ 324, 184, 374, 199 ], [ 390, 184, 401, 199 ], [ 405, 184, 472, 199 ], [ 502, 184, 513, 199 ], [ 517, 184, 554, 199 ], [ 558, 184, 572, 199 ], [ 614, 184, 625, 199 ], [ 628, 184, 686, 199 ], [ 725, 184, 736, 199 ], [ 740, 184, 765, 199 ], [ 768, 184, 811, 199 ], [ 814, 184, 836, 199 ], [ 856, 184, 866, 199 ], [ 178, 197, 234, 212 ], [ 238, 197, 251, 212 ], [ 278, 197, 315, 212 ], [ 319, 197, 346, 212 ], [ 390, 197, 456, 212 ], [ 460, 197, 493, 212 ], [ 502, 197, 543, 212 ], [ 546, 197, 577, 212 ], [ 614, 197, 659, 212 ], [ 725, 197, 784, 212 ], [ 788, 197, 813, 212 ], [ 90, 201, 166, 214 ], [ 178, 210, 222, 225 ], [ 226, 210, 263, 225 ], [ 278, 210, 312, 225 ], [ 315, 210, 366, 225 ], [ 390, 210, 432, 225 ], [ 436, 210, 486, 225 ], [ 502, 210, 513, 225 ], [ 517, 210, 572, 225 ], [ 576, 210, 580, 225 ], [ 614, 210, 689, 225 ], [ 692, 210, 709, 225 ], [ 725, 210, 781, 225 ], [ 784, 210, 806, 225 ], [ 90, 216, 114, 229 ], [ 178, 223, 226, 238 ], [ 278, 223, 334, 238 ], [ 390, 223, 407, 238 ], [ 411, 223, 448, 238 ], [ 451, 223, 482, 238 ], [ 502, 223, 525, 238 ], [ 528, 223, 532, 238 ], [ 536, 223, 562, 238 ], [ 614, 223, 654, 238 ], [ 725, 223, 789, 238 ], [ 90, 231, 157, 244 ], [ 178, 236, 189, 251 ], [ 193, 236, 235, 251 ], [ 278, 236, 334, 251 ], [ 338, 236, 359, 251 ], [ 390, 236, 401, 251 ], [ 405, 236, 438, 251 ], [ 502, 236, 559, 251 ], [ 614, 236, 679, 251 ], [ 683, 236, 704, 251 ], [ 725, 236, 736, 251 ], [ 740, 236, 765, 251 ], [ 768, 236, 819, 251 ], [ 178, 249, 248, 264 ], [ 278, 249, 324, 264 ], [ 390, 249, 457, 264 ], [ 502, 249, 577, 264 ], [ 614, 249, 654, 264 ], [ 658, 249, 701, 264 ], [ 725, 249, 804, 264 ], [ 808, 249, 833, 264 ], [ 178, 262, 233, 278 ], [ 237, 262, 258, 278 ], [ 278, 262, 289, 278 ], [ 293, 262, 367, 278 ], [ 390, 262, 440, 278 ], [ 444, 262, 493, 278 ], [ 502, 262, 513, 278 ], [ 517, 262, 535, 278 ], [ 614, 262, 625, 278 ], [ 628, 262, 666, 278 ], [ 669, 262, 711, 278 ], [ 725, 262, 797, 278 ], [ 801, 262, 843, 278 ], [ 178, 275, 214, 291 ], [ 218, 275, 242, 291 ], [ 278, 275, 317, 291 ], [ 320, 275, 344, 291 ], [ 502, 275, 577, 291 ], [ 614, 275, 635, 291 ], [ 639, 275, 703, 291 ], [ 725, 275, 775, 291 ], [ 779, 275, 800, 291 ], [ 178, 288, 234, 304 ], [ 278, 288, 289, 304 ], [ 293, 288, 317, 304 ], [ 321, 288, 342, 304 ], [ 345, 288, 378, 304 ], [ 502, 288, 586, 304 ], [ 725, 288, 804, 304 ], [ 178, 301, 189, 317 ], [ 193, 301, 217, 317 ], [ 221, 301, 265, 317 ], [ 278, 301, 312, 317 ], [ 315, 301, 371, 317 ], [ 502, 301, 544, 317 ], [ 725, 301, 791, 317 ], [ 795, 301, 823, 317 ], [ 827, 301, 838, 317 ], [ 178, 315, 245, 330 ], [ 248, 315, 270, 330 ], [ 278, 315, 289, 330 ], [ 293, 315, 318, 330 ], [ 321, 315, 372, 330 ], [ 725, 315, 760, 330 ], [ 763, 315, 843, 330 ], [ 178, 328, 221, 343 ], [ 278, 328, 359, 343 ], [ 725, 328, 750, 343 ], [ 178, 341, 247, 356 ], [ 278, 341, 316, 356 ], [ 320, 341, 372, 356 ], [ 725, 341, 736, 356 ], [ 740, 341, 757, 356 ], [ 761, 341, 809, 356 ], [ 813, 341, 824, 356 ], [ 178, 354, 199, 369 ], [ 203, 354, 268, 369 ], [ 278, 354, 289, 369 ], [ 292, 354, 337, 369 ], [ 341, 354, 369, 369 ], [ 725, 354, 771, 369 ], [ 775, 354, 813, 369 ], [ 178, 367, 232, 382 ], [ 278, 367, 300, 382 ], [ 303, 367, 315, 382 ], [ 318, 367, 376, 382 ], [ 725, 367, 758, 382 ], [ 762, 367, 820, 382 ], [ 178, 380, 216, 395 ], [ 278, 380, 290, 395 ], [ 293, 380, 332, 395 ], [ 725, 380, 794, 395 ], [ 798, 380, 823, 395 ], [ 178, 393, 230, 408 ], [ 233, 393, 255, 408 ], [ 278, 393, 338, 408 ], [ 725, 393, 751, 408 ], [ 754, 393, 768, 408 ], [ 772, 393, 808, 408 ], [ 812, 393, 829, 408 ], [ 178, 406, 233, 421 ], [ 278, 406, 289, 421 ], [ 293, 406, 300, 421 ], [ 303, 406, 344, 421 ], [ 347, 406, 360, 421 ], [ 725, 406, 760, 421 ], [ 764, 406, 789, 421 ], [ 66, 414, 81, 427 ], [ 178, 419, 189, 434 ], [ 193, 419, 221, 434 ], [ 225, 419, 266, 434 ], [ 278, 419, 306, 434 ], [ 310, 419, 367, 434 ], [ 725, 419, 736, 434 ], [ 740, 419, 808, 434 ], [ 812, 419, 838, 434 ], [ 178, 432, 190, 447 ], [ 194, 432, 222, 447 ], [ 278, 432, 299, 447 ], [ 303, 432, 359, 447 ], [ 725, 432, 782, 447 ], [ 178, 445, 234, 460 ], [ 278, 445, 307, 460 ], [ 311, 445, 322, 460 ], [ 326, 445, 370, 460 ], [ 725, 445, 804, 460 ], [ 808, 445, 846, 460 ], [ 178, 458, 224, 474 ], [ 278, 458, 330, 474 ], [ 334, 458, 351, 474 ], [ 725, 458, 767, 474 ], [ 771, 458, 783, 474 ], [ 787, 458, 815, 474 ], [ 278, 471, 321, 487 ], [ 324, 471, 378, 487 ], [ 725, 471, 792, 487 ], [ 796, 471, 817, 487 ], [ 208, 485, 251, 500 ], [ 278, 485, 358, 500 ], [ 725, 485, 788, 500 ], [ 178, 498, 199, 513 ], [ 203, 498, 249, 513 ], [ 278, 498, 289, 513 ], [ 293, 498, 337, 513 ], [ 341, 498, 365, 513 ], [ 725, 498, 736, 513 ], [ 740, 498, 783, 513 ], [ 178, 511, 206, 526 ], [ 210, 511, 253, 526 ], [ 278, 511, 323, 526 ], [ 327, 511, 348, 526 ], [ 725, 511, 797, 526 ], [ 178, 524, 214, 539 ], [ 218, 524, 253, 539 ], [ 278, 524, 336, 539 ], [ 725, 524, 780, 539 ], [ 784, 524, 808, 539 ], [ 812, 524, 835, 539 ], [ 278, 537, 330, 552 ], [ 725, 537, 768, 552 ], [ 771, 537, 809, 552 ], [ 813, 537, 845, 552 ], [ 178, 539, 255, 551 ], [ 178, 550, 189, 565 ], [ 193, 550, 254, 565 ], [ 278, 550, 289, 565 ], [ 293, 550, 330, 565 ], [ 334, 550, 355, 565 ], [ 725, 550, 792, 565 ], [ 796, 550, 846, 565 ], [ 178, 563, 202, 578 ], [ 278, 563, 342, 578 ], [ 346, 563, 358, 578 ], [ 725, 563, 757, 578 ], [ 761, 563, 823, 578 ], [ 178, 576, 252, 591 ], [ 278, 576, 327, 591 ], [ 178, 589, 199, 604 ], [ 203, 589, 246, 604 ], [ 278, 589, 341, 604 ], [ 178, 602, 241, 617 ], [ 278, 602, 334, 617 ], [ 178, 615, 234, 630 ], [ 238, 615, 263, 630 ], [ 178, 628, 219, 643 ], [ 178, 641, 189, 657 ], [ 193, 641, 217, 657 ], [ 178, 654, 236, 670 ], [ 178, 673, 188, 688 ], [ 278, 673, 288, 688 ], [ 390, 673, 401, 688 ], [ 405, 673, 434, 688 ], [ 502, 673, 512, 688 ], [ 614, 673, 623, 688 ], [ 725, 673, 735, 688 ], [ 856, 673, 866, 688 ], [ 390, 686, 401, 701 ], [ 405, 686, 431, 701 ], [ 90, 690, 162, 703 ], [ 390, 699, 464, 714 ], [ 468, 699, 494, 714 ], [ 90, 705, 122, 718 ], [ 390, 712, 411, 727 ], [ 415, 712, 444, 727 ], [ 90, 720, 148, 733 ], [ 390, 726, 451, 741 ], [ 455, 726, 494, 741 ], [ 390, 739, 401, 754 ], [ 405, 739, 453, 754 ], [ 457, 739, 474, 754 ], [ 390, 752, 480, 767 ], [ 390, 765, 402, 780 ], [ 406, 765, 475, 780 ], [ 66, 766, 81, 779 ], [ 390, 778, 464, 793 ], [ 467, 778, 485, 793 ], [ 390, 791, 443, 806 ], [ 447, 791, 476, 806 ], [ 390, 804, 431, 819 ], [ 435, 804, 493, 819 ], [ 390, 817, 451, 832 ], [ 455, 817, 485, 832 ], [ 390, 830, 453, 845 ], [ 390, 843, 464, 858 ], [ 467, 843, 480, 858 ], [ 390, 856, 424, 871 ], [ 427, 856, 492, 871 ], [ 390, 869, 402, 884 ], [ 406, 869, 492, 884 ] ]
[ [ 390, 139, 435, 154 ], [ 390, 152, 455, 167 ], [ 390, 165, 467, 180 ], [ 66, 414, 81, 427 ], [ 90, 201, 166, 214 ], [ 90, 216, 114, 229 ], [ 90, 231, 157, 244 ], [ 178, 184, 189, 199 ], [ 193, 184, 234, 199 ], [ 178, 197, 234, 212 ], [ 238, 197, 251, 212 ], [ 178, 210, 222, 225 ], [ 226, 210, 263, 225 ], [ 178, 223, 226, 238 ], [ 178, 236, 189, 251 ], [ 193, 236, 235, 251 ], [ 178, 249, 248, 264 ], [ 178, 262, 233, 278 ], [ 237, 262, 258, 278 ], [ 178, 275, 214, 291 ], [ 218, 275, 242, 291 ], [ 178, 288, 234, 304 ], [ 178, 301, 189, 317 ], [ 193, 301, 217, 317 ], [ 221, 301, 265, 317 ], [ 178, 315, 245, 330 ], [ 248, 315, 270, 330 ], [ 178, 328, 221, 343 ], [ 178, 341, 247, 356 ], [ 178, 354, 199, 369 ], [ 203, 354, 268, 369 ], [ 178, 367, 232, 382 ], [ 178, 380, 216, 395 ], [ 178, 393, 230, 408 ], [ 233, 393, 255, 408 ], [ 178, 406, 233, 421 ], [ 178, 419, 189, 434 ], [ 193, 419, 221, 434 ], [ 225, 419, 266, 434 ], [ 178, 432, 190, 447 ], [ 194, 432, 222, 447 ], [ 178, 445, 234, 460 ], [ 178, 458, 224, 474 ], [ 208, 485, 251, 500 ], [ 178, 498, 199, 513 ], [ 203, 498, 249, 513 ], [ 178, 511, 206, 526 ], [ 210, 511, 253, 526 ], [ 178, 524, 214, 539 ], [ 218, 524, 253, 539 ], [ 178, 539, 255, 551 ], [ 178, 550, 189, 565 ], [ 193, 550, 254, 565 ], [ 178, 563, 202, 578 ], [ 178, 576, 252, 591 ], [ 178, 589, 199, 604 ], [ 203, 589, 246, 604 ], [ 178, 602, 241, 617 ], [ 178, 615, 234, 630 ], [ 238, 615, 263, 630 ], [ 178, 628, 219, 643 ], [ 178, 641, 189, 657 ], [ 193, 641, 217, 657 ], [ 178, 654, 236, 670 ], [ 278, 184, 289, 199 ], [ 293, 184, 321, 199 ], [ 324, 184, 374, 199 ], [ 278, 197, 315, 212 ], [ 319, 197, 346, 212 ], [ 278, 210, 312, 225 ], [ 315, 210, 366, 225 ], [ 278, 223, 334, 238 ], [ 278, 236, 334, 251 ], [ 338, 236, 359, 251 ], [ 278, 249, 324, 264 ], [ 278, 262, 289, 278 ], [ 293, 262, 367, 278 ], [ 278, 275, 317, 291 ], [ 320, 275, 344, 291 ], [ 278, 288, 289, 304 ], [ 293, 288, 317, 304 ], [ 321, 288, 342, 304 ], [ 345, 288, 378, 304 ], [ 278, 301, 312, 317 ], [ 315, 301, 371, 317 ], [ 278, 315, 289, 330 ], [ 293, 315, 318, 330 ], [ 321, 315, 372, 330 ], [ 278, 328, 359, 343 ], [ 278, 341, 316, 356 ], [ 320, 341, 372, 356 ], [ 278, 354, 289, 369 ], [ 292, 354, 337, 369 ], [ 341, 354, 369, 369 ], [ 278, 367, 300, 382 ], [ 303, 367, 315, 382 ], [ 318, 367, 376, 382 ], [ 278, 380, 290, 395 ], [ 293, 380, 332, 395 ], [ 278, 393, 338, 408 ], [ 278, 406, 289, 421 ], [ 293, 406, 300, 421 ], [ 303, 406, 344, 421 ], [ 347, 406, 360, 421 ], [ 278, 419, 306, 434 ], [ 310, 419, 367, 434 ], [ 278, 432, 299, 447 ], [ 303, 432, 359, 447 ], [ 278, 445, 307, 460 ], [ 311, 445, 322, 460 ], [ 326, 445, 370, 460 ], [ 278, 458, 330, 474 ], [ 334, 458, 351, 474 ], [ 278, 471, 321, 487 ], [ 324, 471, 378, 487 ], [ 278, 485, 358, 500 ], [ 278, 498, 289, 513 ], [ 293, 498, 337, 513 ], [ 341, 498, 365, 513 ], [ 278, 511, 323, 526 ], [ 327, 511, 348, 526 ], [ 278, 524, 336, 539 ], [ 278, 537, 330, 552 ], [ 278, 550, 289, 565 ], [ 293, 550, 330, 565 ], [ 334, 550, 355, 565 ], [ 278, 563, 342, 578 ], [ 346, 563, 358, 578 ], [ 278, 576, 327, 591 ], [ 278, 589, 341, 604 ], [ 278, 602, 334, 617 ], [ 390, 184, 401, 199 ], [ 405, 184, 472, 199 ], [ 390, 197, 456, 212 ], [ 460, 197, 493, 212 ], [ 390, 210, 432, 225 ], [ 436, 210, 486, 225 ], [ 390, 223, 407, 238 ], [ 411, 223, 448, 238 ], [ 451, 223, 482, 238 ], [ 390, 236, 401, 251 ], [ 405, 236, 438, 251 ], [ 390, 249, 457, 264 ], [ 390, 262, 440, 278 ], [ 444, 262, 493, 278 ], [ 502, 184, 513, 199 ], [ 517, 184, 554, 199 ], [ 558, 184, 572, 199 ], [ 502, 197, 543, 212 ], [ 546, 197, 577, 212 ], [ 502, 210, 513, 225 ], [ 517, 210, 572, 225 ], [ 576, 210, 580, 225 ], [ 502, 223, 525, 238 ], [ 528, 223, 532, 238 ], [ 536, 223, 562, 238 ], [ 502, 236, 559, 251 ], [ 502, 249, 577, 264 ], [ 502, 262, 513, 278 ], [ 517, 262, 535, 278 ], [ 502, 275, 577, 291 ], [ 502, 288, 586, 304 ], [ 502, 301, 544, 317 ], [ 614, 184, 625, 199 ], [ 628, 184, 686, 199 ], [ 614, 197, 659, 212 ], [ 614, 210, 689, 225 ], [ 692, 210, 709, 225 ], [ 614, 223, 654, 238 ], [ 614, 236, 679, 251 ], [ 683, 236, 704, 251 ], [ 614, 249, 654, 264 ], [ 658, 249, 701, 264 ], [ 614, 262, 625, 278 ], [ 628, 262, 666, 278 ], [ 669, 262, 711, 278 ], [ 614, 275, 635, 291 ], [ 639, 275, 703, 291 ], [ 725, 184, 736, 199 ], [ 740, 184, 765, 199 ], [ 768, 184, 811, 199 ], [ 814, 184, 836, 199 ], [ 725, 197, 784, 212 ], [ 788, 197, 813, 212 ], [ 725, 210, 781, 225 ], [ 784, 210, 806, 225 ], [ 725, 223, 789, 238 ], [ 725, 236, 736, 251 ], [ 740, 236, 765, 251 ], [ 768, 236, 819, 251 ], [ 725, 249, 804, 264 ], [ 808, 249, 833, 264 ], [ 725, 262, 797, 278 ], [ 801, 262, 843, 278 ], [ 725, 275, 775, 291 ], [ 779, 275, 800, 291 ], [ 725, 288, 804, 304 ], [ 725, 301, 791, 317 ], [ 795, 301, 823, 317 ], [ 827, 301, 838, 317 ], [ 725, 315, 760, 330 ], [ 763, 315, 843, 330 ], [ 725, 328, 750, 343 ], [ 725, 341, 736, 356 ], [ 740, 341, 757, 356 ], [ 761, 341, 809, 356 ], [ 813, 341, 824, 356 ], [ 725, 354, 771, 369 ], [ 775, 354, 813, 369 ], [ 725, 367, 758, 382 ], [ 762, 367, 820, 382 ], [ 725, 380, 794, 395 ], [ 798, 380, 823, 395 ], [ 725, 393, 751, 408 ], [ 754, 393, 768, 408 ], [ 772, 393, 808, 408 ], [ 812, 393, 829, 408 ], [ 725, 406, 760, 421 ], [ 764, 406, 789, 421 ], [ 725, 419, 736, 434 ], [ 740, 419, 808, 434 ], [ 812, 419, 838, 434 ], [ 725, 432, 782, 447 ], [ 725, 445, 804, 460 ], [ 808, 445, 846, 460 ], [ 725, 458, 767, 474 ], [ 771, 458, 783, 474 ], [ 787, 458, 815, 474 ], [ 725, 471, 792, 487 ], [ 796, 471, 817, 487 ], [ 725, 485, 788, 500 ], [ 725, 498, 736, 513 ], [ 740, 498, 783, 513 ], [ 725, 511, 797, 526 ], [ 725, 524, 780, 539 ], [ 784, 524, 808, 539 ], [ 812, 524, 835, 539 ], [ 725, 537, 768, 552 ], [ 771, 537, 809, 552 ], [ 813, 537, 845, 552 ], [ 725, 550, 792, 565 ], [ 796, 550, 846, 565 ], [ 725, 563, 757, 578 ], [ 761, 563, 823, 578 ], [ 856, 184, 866, 199 ], [ 66, 766, 81, 779 ], [ 90, 690, 162, 703 ], [ 90, 705, 122, 718 ], [ 90, 720, 148, 733 ], [ 178, 673, 188, 688 ], [ 278, 673, 288, 688 ], [ 390, 673, 401, 688 ], [ 405, 673, 434, 688 ], [ 390, 686, 401, 701 ], [ 405, 686, 431, 701 ], [ 390, 699, 464, 714 ], [ 468, 699, 494, 714 ], [ 390, 712, 411, 727 ], [ 415, 712, 444, 727 ], [ 390, 726, 451, 741 ], [ 455, 726, 494, 741 ], [ 390, 739, 401, 754 ], [ 405, 739, 453, 754 ], [ 457, 739, 474, 754 ], [ 390, 752, 480, 767 ], [ 390, 765, 402, 780 ], [ 406, 765, 475, 780 ], [ 390, 778, 464, 793 ], [ 467, 778, 485, 793 ], [ 390, 791, 443, 806 ], [ 447, 791, 476, 806 ], [ 390, 804, 431, 819 ], [ 435, 804, 493, 819 ], [ 390, 817, 451, 832 ], [ 455, 817, 485, 832 ], [ 390, 830, 453, 845 ], [ 390, 843, 464, 858 ], [ 467, 843, 480, 858 ], [ 390, 856, 424, 871 ], [ 427, 856, 492, 871 ], [ 390, 869, 402, 884 ], [ 406, 869, 492, 884 ], [ 502, 673, 512, 688 ], [ 614, 673, 623, 688 ], [ 725, 673, 735, 688 ], [ 856, 673, 866, 688 ] ]
develops methods and tools for the diagnosis and intercomparison of general circulation models (GCMs) that simulate the global climate. The need for innovative analysis of GCM climate simulations is apparent, as increasingly more complex models are developed, while the disagreements among these simulations and relative to climate observations remain significant and poorly understood. The nature and causes of these disagreements must be accounted for in a systematic fashion in order to confidently use GCMs for simulation of putative global climate change. Variability (rate of Data is produced by codes running at change) supercomputer centers. During runtime, intense periods of data i/O occur regularly, but typically consume only a few percent of the total run time. Runs are carried out routinely, but spike as deadlines for reports approach. Big Data Science Veracity (Robustness Data produced by climate simulations is plays a (collection, Issues) and Quality large role in informing discussion of climate change curation, simulations. Therefore it must be robust, both from analysis, the standpoint of providing a scientifically valid action) representation of processes that influence climate, but also as that data is stored long and transferred world-wide to collaborators and other scientists. Visualization Visualization is crucial to understanding a system as complex as the Earth ecosystem. Data Types Earth system scientists are being inundated by an explosion of data generated by ever-increasing resolution in both global models and remote sensors. Data Analytics There is a need to provide data reduction and analysis web services through the Earth System Grid (ESG). A pressing need is emerging for data analysis capabilities closely linked to data archives. Big Data Specific The rapidly growing size of datasets makes scientific analysis a challenge. Challenges (Gaps) The need to write data from simulations is outpacing supercomputers’ ability to accommodate this need. Big Data Specific Challenges in Mobility Data from simulations and observations must be shared among a large widely distributed community. Security & Privacy Requirements Highlight issues for ESGF is in the early stages of being adapted for use in two additional generalizing this use domains: biology (to accelerate drug design and development) and case (e.g. for ref. energy (infrastructure for California Energy Systems for the 21st Century architecture) (CES21)). More Information (URLs)
develops methods and tools for the diagnosis and intercomparison of general circulation models (GCMs) that simulate the global climate. The need for innovative analysis of GCM climate simulations is apparent, as increasingly more complex models are developed, while the disagreements among these simulations and relative to climate observations remain significant and poorly understood. The nature and causes of these disagreements must be accounted for in a systematic fashion in order to confidently use GCMs for simulation of putative global climate change. Variability (rate of change) Data is produced by codes running at supercomputer centers. During runtime, intense periods of data i/O occur regularly, but typically consume only a few percent of the total run time. Runs are carried out routinely, but spike as deadlines for reports approach. Big Data Science (collection, curation, analysis, action) Veracity (Robustness Issues) and Quality Data produced by climate simulations is plays a large role in informing discussion of climate change simulations. Therefore it must be robust, both from the standpoint of providing a scientifically valid representation of processes that influence climate, but also as that data is stored long and transferred world-wide to collaborators and other scientists. Visualization Visualization is crucial to understanding a system as complex as the Earth ecosystem. Data Types Earth system scientists are being inundated by an explosion of data generated by ever-increasing resolution in both global models and remote sensors. Data Analytics There is a need to provide data reduction and analysis web services through the Earth System Grid (ESG). A pressing need is emerging for data analysis capabilities closely linked to data archives. Big Data Specific Challenges (Gaps) The rapidly growing size of datasets makes scientific analysis a challenge. The need to write data from simulations is outpacing supercomputers’ ability to accommodate this need. Big Data Specific Challenges in Mobility Data from simulations and observations must be shared among a large widely distributed community. Security & Privacy Requirements Highlight issues for generalizing this use case (e.g. for ref. architecture) ESGF is in the early stages of being adapted for use in two additional domains: biology (to accelerate drug design and development) and energy (infrastructure for California Energy Systems for the 21st Century (CES21)). More Information (URLs)
0.914474
[ 0, 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, 91, 84, 85, 86, 87, 88, 89, 90, 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, 140, 152, 161, 169, 130, 131, 141, 142, 143, 132, 133, 134, 135, 136, 137, 138, 139, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 159, 160, 162, 163, 164, 165, 166, 167, 168, 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, 278, 279, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 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, 336, 337, 338, 348, 349, 350, 351, 362, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 339, 340, 341, 342, 343, 344, 345, 346, 347, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 363, 364, 365, 366 ]
M0245_v4_9775320899.docx
task-1430-729
198
[ [ 513, 89, 578, 106 ], [ 583, 89, 646, 106 ], [ 650, 89, 677, 106 ], [ 682, 89, 717, 106 ], [ 721, 89, 740, 106 ], [ 745, 89, 768, 106 ], [ 772, 89, 841, 106 ], [ 846, 89, 873, 106 ], [ 544, 104, 660, 121 ], [ 665, 104, 678, 121 ], [ 683, 104, 737, 121 ], [ 742, 104, 816, 121 ], [ 820, 104, 873, 121 ], [ 509, 118, 566, 136 ], [ 571, 118, 598, 136 ], [ 602, 118, 663, 136 ], [ 668, 118, 690, 136 ], [ 695, 118, 738, 136 ], [ 743, 118, 799, 136 ], [ 804, 118, 832, 136 ], [ 837, 118, 873, 136 ], [ 509, 133, 528, 150 ], [ 532, 133, 606, 150 ], [ 610, 133, 669, 150 ], [ 674, 133, 687, 150 ], [ 692, 133, 730, 150 ], [ 735, 133, 787, 150 ], [ 791, 133, 873, 150 ], [ 510, 147, 522, 164 ], [ 527, 147, 595, 164 ], [ 600, 147, 617, 164 ], [ 622, 147, 708, 164 ], [ 713, 147, 750, 164 ], [ 755, 147, 816, 164 ], [ 820, 147, 873, 164 ], [ 529, 162, 553, 179 ], [ 557, 162, 637, 179 ], [ 642, 162, 679, 179 ], [ 684, 162, 706, 179 ], [ 711, 162, 818, 179 ], [ 823, 162, 873, 179 ], [ 583, 176, 623, 194 ], [ 627, 176, 709, 194 ], [ 714, 176, 741, 194 ], [ 745, 176, 798, 194 ], [ 803, 176, 816, 194 ], [ 821, 176, 873, 194 ], [ 568, 191, 660, 208 ], [ 665, 191, 715, 208 ], [ 719, 191, 792, 208 ], [ 797, 191, 824, 208 ], [ 828, 191, 873, 208 ], [ 552, 205, 638, 223 ], [ 643, 205, 671, 223 ], [ 676, 205, 722, 223 ], [ 727, 205, 754, 223 ], [ 758, 205, 810, 223 ], [ 815, 205, 828, 223 ], [ 833, 205, 873, 223 ], [ 569, 220, 676, 237 ], [ 680, 220, 716, 237 ], [ 720, 220, 738, 237 ], [ 743, 220, 818, 237 ], [ 823, 220, 842, 237 ], [ 847, 220, 859, 237 ], [ 864, 220, 873, 237 ], [ 496, 234, 573, 252 ], [ 578, 234, 630, 252 ], [ 635, 234, 648, 252 ], [ 652, 234, 690, 252 ], [ 695, 234, 708, 252 ], [ 713, 234, 791, 252 ], [ 796, 234, 822, 252 ], [ 827, 234, 873, 252 ], [ 529, 249, 548, 266 ], [ 552, 249, 626, 266 ], [ 630, 249, 644, 266 ], [ 648, 249, 705, 266 ], [ 710, 249, 754, 266 ], [ 758, 249, 810, 266 ], [ 815, 249, 873, 266 ], [ 340, 264, 418, 281 ], [ 422, 264, 457, 281 ], [ 462, 264, 477, 281 ], [ 602, 264, 637, 281 ], [ 641, 264, 653, 281 ], [ 657, 264, 726, 281 ], [ 730, 264, 748, 281 ], [ 752, 264, 795, 281 ], [ 800, 264, 855, 281 ], [ 859, 264, 873, 281 ], [ 415, 278, 477, 296 ], [ 528, 279, 637, 296 ], [ 641, 279, 699, 296 ], [ 704, 279, 752, 296 ], [ 757, 279, 816, 296 ], [ 820, 279, 873, 296 ], [ 533, 293, 587, 310 ], [ 591, 293, 605, 310 ], [ 610, 293, 641, 310 ], [ 646, 293, 667, 310 ], [ 671, 293, 711, 310 ], [ 716, 293, 783, 310 ], [ 788, 293, 810, 310 ], [ 815, 293, 873, 310 ], [ 520, 308, 587, 325 ], [ 591, 308, 621, 325 ], [ 625, 308, 635, 325 ], [ 639, 308, 665, 325 ], [ 669, 308, 724, 325 ], [ 728, 308, 742, 325 ], [ 747, 308, 769, 325 ], [ 774, 308, 804, 325 ], [ 809, 308, 833, 325 ], [ 837, 308, 873, 325 ], [ 562, 322, 600, 340 ], [ 605, 322, 628, 340 ], [ 633, 322, 683, 340 ], [ 687, 322, 710, 340 ], [ 715, 322, 781, 340 ], [ 786, 322, 808, 340 ], [ 813, 322, 851, 340 ], [ 856, 322, 873, 340 ], [ 646, 337, 716, 354 ], [ 721, 337, 740, 354 ], [ 745, 337, 795, 354 ], [ 800, 337, 873, 354 ], [ 142, 352, 168, 369 ], [ 173, 352, 208, 369 ], [ 213, 352, 274, 369 ], [ 311, 352, 374, 369 ], [ 378, 352, 477, 369 ], [ 529, 352, 563, 369 ], [ 568, 352, 636, 369 ], [ 640, 352, 658, 369 ], [ 662, 352, 714, 369 ], [ 718, 352, 800, 369 ], [ 805, 352, 816, 369 ], [ 821, 352, 859, 369 ], [ 864, 352, 873, 369 ], [ 188, 366, 274, 384 ], [ 328, 366, 384, 384 ], [ 388, 366, 417, 384 ], [ 422, 366, 477, 384 ], [ 502, 366, 538, 384 ], [ 543, 366, 570, 384 ], [ 575, 366, 587, 384 ], [ 592, 366, 659, 384 ], [ 664, 366, 740, 384 ], [ 745, 366, 758, 384 ], [ 763, 366, 815, 384 ], [ 819, 366, 873, 384 ], [ 205, 381, 274, 398 ], [ 507, 381, 593, 398 ], [ 598, 381, 669, 398 ], [ 674, 381, 682, 398 ], [ 686, 381, 722, 398 ], [ 726, 381, 744, 398 ], [ 749, 381, 799, 398 ], [ 803, 381, 835, 398 ], [ 840, 381, 872, 398 ], [ 205, 395, 274, 413 ], [ 538, 395, 560, 413 ], [ 565, 395, 640, 413 ], [ 645, 395, 658, 413 ], [ 663, 395, 729, 413 ], [ 734, 395, 743, 413 ], [ 748, 395, 835, 413 ], [ 839, 395, 873, 413 ], [ 221, 410, 274, 427 ], [ 509, 410, 613, 427 ], [ 617, 410, 631, 427 ], [ 636, 410, 710, 427 ], [ 715, 410, 742, 427 ], [ 747, 410, 812, 427 ], [ 817, 410, 873, 427 ], [ 555, 424, 577, 442 ], [ 582, 424, 612, 442 ], [ 616, 424, 634, 442 ], [ 638, 424, 665, 442 ], [ 670, 424, 702, 442 ], [ 706, 424, 718, 442 ], [ 723, 424, 768, 442 ], [ 773, 424, 804, 442 ], [ 846, 424, 873, 442 ], [ 521, 439, 600, 456 ], [ 605, 439, 683, 456 ], [ 687, 439, 701, 456 ], [ 705, 439, 799, 456 ], [ 804, 439, 831, 456 ], [ 836, 439, 873, 456 ], [ 801, 453, 873, 471 ], [ 378, 469, 477, 486 ], [ 495, 469, 587, 486 ], [ 591, 469, 603, 486 ], [ 607, 469, 655, 486 ], [ 659, 469, 673, 486 ], [ 677, 469, 781, 486 ], [ 786, 469, 795, 486 ], [ 799, 469, 851, 486 ], [ 856, 469, 873, 486 ], [ 495, 483, 556, 500 ], [ 560, 483, 578, 500 ], [ 582, 483, 605, 500 ], [ 609, 483, 648, 500 ], [ 653, 483, 736, 500 ], [ 390, 498, 425, 516 ], [ 430, 498, 477, 516 ], [ 533, 498, 572, 516 ], [ 577, 498, 629, 516 ], [ 634, 498, 701, 516 ], [ 706, 498, 729, 516 ], [ 734, 498, 774, 516 ], [ 779, 498, 851, 516 ], [ 856, 498, 873, 516 ], [ 495, 513, 513, 530 ], [ 520, 513, 589, 530 ], [ 596, 513, 610, 530 ], [ 617, 513, 649, 530 ], [ 656, 513, 729, 530 ], [ 736, 513, 754, 530 ], [ 761, 513, 873, 530 ], [ 495, 527, 566, 545 ], [ 570, 527, 582, 545 ], [ 586, 527, 618, 545 ], [ 622, 527, 665, 545 ], [ 669, 527, 721, 545 ], [ 725, 527, 753, 545 ], [ 756, 527, 807, 545 ], [ 811, 527, 873, 545 ], [ 365, 542, 400, 560 ], [ 405, 542, 477, 560 ], [ 495, 543, 538, 560 ], [ 548, 543, 560, 560 ], [ 571, 543, 580, 560 ], [ 590, 543, 627, 560 ], [ 637, 543, 651, 560 ], [ 661, 543, 715, 560 ], [ 725, 543, 757, 560 ], [ 768, 543, 835, 560 ], [ 846, 543, 873, 560 ], [ 495, 557, 554, 574 ], [ 558, 557, 588, 574 ], [ 591, 557, 651, 574 ], [ 655, 557, 711, 574 ], [ 714, 557, 737, 574 ], [ 741, 557, 780, 574 ], [ 784, 557, 838, 574 ], [ 842, 557, 873, 574 ], [ 495, 572, 545, 589 ], [ 549, 572, 559, 589 ], [ 563, 572, 625, 589 ], [ 628, 572, 665, 589 ], [ 668, 572, 680, 589 ], [ 684, 572, 752, 589 ], [ 756, 572, 775, 589 ], [ 778, 572, 810, 589 ], [ 814, 572, 872, 589 ], [ 495, 586, 576, 603 ], [ 580, 586, 630, 603 ], [ 635, 586, 678, 603 ], [ 682, 586, 696, 603 ], [ 700, 586, 732, 603 ], [ 736, 586, 802, 603 ], [ 195, 601, 221, 618 ], [ 226, 601, 261, 618 ], [ 266, 601, 328, 618 ], [ 346, 601, 374, 619 ], [ 378, 601, 426, 619 ], [ 429, 601, 486, 619 ], [ 490, 601, 519, 619 ], [ 523, 601, 536, 619 ], [ 540, 601, 601, 619 ], [ 605, 601, 653, 619 ], [ 657, 601, 719, 619 ], [ 723, 601, 782, 619 ], [ 785, 601, 794, 619 ], [ 798, 601, 872, 619 ], [ 185, 616, 272, 633 ], [ 276, 616, 328, 633 ], [ 346, 616, 374, 633 ], [ 381, 616, 417, 633 ], [ 425, 616, 438, 633 ], [ 446, 616, 480, 633 ], [ 487, 616, 519, 633 ], [ 526, 616, 559, 633 ], [ 566, 616, 648, 633 ], [ 655, 616, 667, 633 ], [ 674, 616, 745, 633 ], [ 752, 618, 873, 632 ], [ 346, 630, 388, 648 ], [ 392, 630, 406, 648 ], [ 410, 630, 513, 648 ], [ 518, 630, 543, 648 ], [ 548, 630, 588, 648 ], [ 195, 645, 221, 663 ], [ 226, 645, 261, 663 ], [ 266, 645, 328, 663 ], [ 156, 660, 243, 677 ], [ 247, 660, 262, 677 ], [ 266, 660, 328, 677 ], [ 346, 660, 380, 677 ], [ 386, 660, 419, 677 ], [ 425, 660, 506, 677 ], [ 513, 660, 540, 677 ], [ 546, 660, 638, 677 ], [ 644, 660, 680, 677 ], [ 686, 660, 704, 677 ], [ 710, 660, 760, 677 ], [ 766, 660, 816, 677 ], [ 821, 660, 830, 677 ], [ 836, 660, 873, 677 ], [ 346, 674, 392, 692 ], [ 396, 674, 471, 692 ], [ 476, 674, 559, 692 ], [ 185, 689, 249, 707 ], [ 254, 689, 265, 707 ], [ 270, 689, 328, 707 ], [ 219, 704, 328, 721 ], [ 176, 719, 247, 736 ], [ 251, 719, 302, 736 ], [ 307, 719, 328, 736 ], [ 346, 719, 390, 737 ], [ 397, 719, 409, 737 ], [ 415, 719, 428, 737 ], [ 434, 719, 457, 737 ], [ 464, 719, 499, 737 ], [ 506, 719, 554, 737 ], [ 561, 719, 574, 737 ], [ 581, 719, 621, 737 ], [ 627, 719, 686, 737 ], [ 693, 719, 712, 737 ], [ 718, 719, 745, 737 ], [ 751, 719, 764, 737 ], [ 771, 719, 796, 737 ], [ 803, 719, 873, 737 ], [ 167, 734, 262, 751 ], [ 267, 734, 296, 751 ], [ 300, 734, 328, 751 ], [ 346, 734, 412, 751 ], [ 422, 734, 474, 751 ], [ 484, 734, 503, 751 ], [ 513, 734, 588, 751 ], [ 598, 734, 631, 751 ], [ 641, 734, 689, 751 ], [ 699, 734, 726, 751 ], [ 736, 734, 835, 751 ], [ 846, 734, 873, 751 ], [ 198, 748, 234, 766 ], [ 239, 748, 272, 766 ], [ 277, 748, 298, 766 ], [ 303, 748, 328, 766 ], [ 346, 748, 396, 766 ], [ 401, 748, 501, 766 ], [ 506, 748, 525, 766 ], [ 530, 748, 599, 766 ], [ 604, 748, 656, 766 ], [ 661, 748, 724, 766 ], [ 728, 748, 747, 766 ], [ 752, 748, 775, 766 ], [ 780, 748, 811, 766 ], [ 815, 748, 873, 766 ], [ 229, 763, 328, 780 ], [ 346, 763, 419, 780 ], [ 137, 807, 176, 824 ], [ 180, 807, 270, 824 ], [ 275, 807, 328, 824 ] ]
[ [ 513, 89, 578, 106 ], [ 583, 89, 646, 106 ], [ 650, 89, 677, 106 ], [ 682, 89, 717, 106 ], [ 721, 89, 740, 106 ], [ 745, 89, 768, 106 ], [ 772, 89, 841, 106 ], [ 846, 89, 873, 106 ], [ 544, 104, 660, 121 ], [ 665, 104, 678, 121 ], [ 683, 104, 737, 121 ], [ 742, 104, 816, 121 ], [ 820, 104, 873, 121 ], [ 509, 118, 566, 136 ], [ 571, 118, 598, 136 ], [ 602, 118, 663, 136 ], [ 668, 118, 690, 136 ], [ 695, 118, 738, 136 ], [ 743, 118, 799, 136 ], [ 804, 118, 832, 136 ], [ 837, 118, 873, 136 ], [ 509, 133, 528, 150 ], [ 532, 133, 606, 150 ], [ 610, 133, 669, 150 ], [ 674, 133, 687, 150 ], [ 692, 133, 730, 150 ], [ 735, 133, 787, 150 ], [ 791, 133, 873, 150 ], [ 510, 147, 522, 164 ], [ 527, 147, 595, 164 ], [ 600, 147, 617, 164 ], [ 622, 147, 708, 164 ], [ 713, 147, 750, 164 ], [ 755, 147, 816, 164 ], [ 820, 147, 873, 164 ], [ 529, 162, 553, 179 ], [ 557, 162, 637, 179 ], [ 642, 162, 679, 179 ], [ 684, 162, 706, 179 ], [ 711, 162, 818, 179 ], [ 823, 162, 873, 179 ], [ 583, 176, 623, 194 ], [ 627, 176, 709, 194 ], [ 714, 176, 741, 194 ], [ 745, 176, 798, 194 ], [ 803, 176, 816, 194 ], [ 821, 176, 873, 194 ], [ 568, 191, 660, 208 ], [ 665, 191, 715, 208 ], [ 719, 191, 792, 208 ], [ 797, 191, 824, 208 ], [ 828, 191, 873, 208 ], [ 552, 205, 638, 223 ], [ 643, 205, 671, 223 ], [ 676, 205, 722, 223 ], [ 727, 205, 754, 223 ], [ 758, 205, 810, 223 ], [ 815, 205, 828, 223 ], [ 833, 205, 873, 223 ], [ 569, 220, 676, 237 ], [ 680, 220, 716, 237 ], [ 720, 220, 738, 237 ], [ 743, 220, 818, 237 ], [ 823, 220, 842, 237 ], [ 847, 220, 859, 237 ], [ 864, 220, 873, 237 ], [ 496, 234, 573, 252 ], [ 578, 234, 630, 252 ], [ 635, 234, 648, 252 ], [ 652, 234, 690, 252 ], [ 695, 234, 708, 252 ], [ 713, 234, 791, 252 ], [ 796, 234, 822, 252 ], [ 827, 234, 873, 252 ], [ 529, 249, 548, 266 ], [ 552, 249, 626, 266 ], [ 630, 249, 644, 266 ], [ 648, 249, 705, 266 ], [ 710, 249, 754, 266 ], [ 758, 249, 810, 266 ], [ 815, 249, 873, 266 ], [ 340, 264, 418, 281 ], [ 422, 264, 457, 281 ], [ 462, 264, 477, 281 ], [ 415, 278, 477, 296 ], [ 602, 264, 637, 281 ], [ 641, 264, 653, 281 ], [ 657, 264, 726, 281 ], [ 730, 264, 748, 281 ], [ 752, 264, 795, 281 ], [ 800, 264, 855, 281 ], [ 859, 264, 873, 281 ], [ 528, 279, 637, 296 ], [ 641, 279, 699, 296 ], [ 704, 279, 752, 296 ], [ 757, 279, 816, 296 ], [ 820, 279, 873, 296 ], [ 533, 293, 587, 310 ], [ 591, 293, 605, 310 ], [ 610, 293, 641, 310 ], [ 646, 293, 667, 310 ], [ 671, 293, 711, 310 ], [ 716, 293, 783, 310 ], [ 788, 293, 810, 310 ], [ 815, 293, 873, 310 ], [ 520, 308, 587, 325 ], [ 591, 308, 621, 325 ], [ 625, 308, 635, 325 ], [ 639, 308, 665, 325 ], [ 669, 308, 724, 325 ], [ 728, 308, 742, 325 ], [ 747, 308, 769, 325 ], [ 774, 308, 804, 325 ], [ 809, 308, 833, 325 ], [ 837, 308, 873, 325 ], [ 562, 322, 600, 340 ], [ 605, 322, 628, 340 ], [ 633, 322, 683, 340 ], [ 687, 322, 710, 340 ], [ 715, 322, 781, 340 ], [ 786, 322, 808, 340 ], [ 813, 322, 851, 340 ], [ 856, 322, 873, 340 ], [ 646, 337, 716, 354 ], [ 721, 337, 740, 354 ], [ 745, 337, 795, 354 ], [ 800, 337, 873, 354 ], [ 142, 352, 168, 369 ], [ 173, 352, 208, 369 ], [ 213, 352, 274, 369 ], [ 188, 366, 274, 384 ], [ 205, 381, 274, 398 ], [ 205, 395, 274, 413 ], [ 221, 410, 274, 427 ], [ 311, 352, 374, 369 ], [ 378, 352, 477, 369 ], [ 328, 366, 384, 384 ], [ 388, 366, 417, 384 ], [ 422, 366, 477, 384 ], [ 529, 352, 563, 369 ], [ 568, 352, 636, 369 ], [ 640, 352, 658, 369 ], [ 662, 352, 714, 369 ], [ 718, 352, 800, 369 ], [ 805, 352, 816, 369 ], [ 821, 352, 859, 369 ], [ 864, 352, 873, 369 ], [ 502, 366, 538, 384 ], [ 543, 366, 570, 384 ], [ 575, 366, 587, 384 ], [ 592, 366, 659, 384 ], [ 664, 366, 740, 384 ], [ 745, 366, 758, 384 ], [ 763, 366, 815, 384 ], [ 819, 366, 873, 384 ], [ 507, 381, 593, 398 ], [ 598, 381, 669, 398 ], [ 674, 381, 682, 398 ], [ 686, 381, 722, 398 ], [ 726, 381, 744, 398 ], [ 749, 381, 799, 398 ], [ 803, 381, 835, 398 ], [ 840, 381, 872, 398 ], [ 538, 395, 560, 413 ], [ 565, 395, 640, 413 ], [ 645, 395, 658, 413 ], [ 663, 395, 729, 413 ], [ 734, 395, 743, 413 ], [ 748, 395, 835, 413 ], [ 839, 395, 873, 413 ], [ 509, 410, 613, 427 ], [ 617, 410, 631, 427 ], [ 636, 410, 710, 427 ], [ 715, 410, 742, 427 ], [ 747, 410, 812, 427 ], [ 817, 410, 873, 427 ], [ 555, 424, 577, 442 ], [ 582, 424, 612, 442 ], [ 616, 424, 634, 442 ], [ 638, 424, 665, 442 ], [ 670, 424, 702, 442 ], [ 706, 424, 718, 442 ], [ 723, 424, 768, 442 ], [ 773, 424, 804, 442 ], [ 846, 424, 873, 442 ], [ 521, 439, 600, 456 ], [ 605, 439, 683, 456 ], [ 687, 439, 701, 456 ], [ 705, 439, 799, 456 ], [ 804, 439, 831, 456 ], [ 836, 439, 873, 456 ], [ 801, 453, 873, 471 ], [ 378, 469, 477, 486 ], [ 495, 469, 587, 486 ], [ 591, 469, 603, 486 ], [ 607, 469, 655, 486 ], [ 659, 469, 673, 486 ], [ 677, 469, 781, 486 ], [ 786, 469, 795, 486 ], [ 799, 469, 851, 486 ], [ 856, 469, 873, 486 ], [ 495, 483, 556, 500 ], [ 560, 483, 578, 500 ], [ 582, 483, 605, 500 ], [ 609, 483, 648, 500 ], [ 653, 483, 736, 500 ], [ 390, 498, 425, 516 ], [ 430, 498, 477, 516 ], [ 533, 498, 572, 516 ], [ 577, 498, 629, 516 ], [ 634, 498, 701, 516 ], [ 706, 498, 729, 516 ], [ 734, 498, 774, 516 ], [ 779, 498, 851, 516 ], [ 856, 498, 873, 516 ], [ 495, 513, 513, 530 ], [ 520, 513, 589, 530 ], [ 596, 513, 610, 530 ], [ 617, 513, 649, 530 ], [ 656, 513, 729, 530 ], [ 736, 513, 754, 530 ], [ 761, 513, 873, 530 ], [ 495, 527, 566, 545 ], [ 570, 527, 582, 545 ], [ 586, 527, 618, 545 ], [ 622, 527, 665, 545 ], [ 669, 527, 721, 545 ], [ 725, 527, 753, 545 ], [ 756, 527, 807, 545 ], [ 811, 527, 873, 545 ], [ 365, 542, 400, 560 ], [ 405, 542, 477, 560 ], [ 495, 543, 538, 560 ], [ 548, 543, 560, 560 ], [ 571, 543, 580, 560 ], [ 590, 543, 627, 560 ], [ 637, 543, 651, 560 ], [ 661, 543, 715, 560 ], [ 725, 543, 757, 560 ], [ 768, 543, 835, 560 ], [ 846, 543, 873, 560 ], [ 495, 557, 554, 574 ], [ 558, 557, 588, 574 ], [ 591, 557, 651, 574 ], [ 655, 557, 711, 574 ], [ 714, 557, 737, 574 ], [ 741, 557, 780, 574 ], [ 784, 557, 838, 574 ], [ 842, 557, 873, 574 ], [ 495, 572, 545, 589 ], [ 549, 572, 559, 589 ], [ 563, 572, 625, 589 ], [ 628, 572, 665, 589 ], [ 668, 572, 680, 589 ], [ 684, 572, 752, 589 ], [ 756, 572, 775, 589 ], [ 778, 572, 810, 589 ], [ 814, 572, 872, 589 ], [ 495, 586, 576, 603 ], [ 580, 586, 630, 603 ], [ 635, 586, 678, 603 ], [ 682, 586, 696, 603 ], [ 700, 586, 732, 603 ], [ 736, 586, 802, 603 ], [ 195, 601, 221, 618 ], [ 226, 601, 261, 618 ], [ 266, 601, 328, 618 ], [ 185, 616, 272, 633 ], [ 276, 616, 328, 633 ], [ 346, 601, 374, 619 ], [ 378, 601, 426, 619 ], [ 429, 601, 486, 619 ], [ 490, 601, 519, 619 ], [ 523, 601, 536, 619 ], [ 540, 601, 601, 619 ], [ 605, 601, 653, 619 ], [ 657, 601, 719, 619 ], [ 723, 601, 782, 619 ], [ 785, 601, 794, 619 ], [ 798, 601, 872, 619 ], [ 346, 616, 374, 633 ], [ 381, 616, 417, 633 ], [ 425, 616, 438, 633 ], [ 446, 616, 480, 633 ], [ 487, 616, 519, 633 ], [ 526, 616, 559, 633 ], [ 566, 616, 648, 633 ], [ 655, 616, 667, 633 ], [ 674, 616, 745, 633 ], [ 752, 618, 873, 632 ], [ 346, 630, 388, 648 ], [ 392, 630, 406, 648 ], [ 410, 630, 513, 648 ], [ 518, 630, 543, 648 ], [ 548, 630, 588, 648 ], [ 195, 645, 221, 663 ], [ 226, 645, 261, 663 ], [ 266, 645, 328, 663 ], [ 156, 660, 243, 677 ], [ 247, 660, 262, 677 ], [ 266, 660, 328, 677 ], [ 346, 660, 380, 677 ], [ 386, 660, 419, 677 ], [ 425, 660, 506, 677 ], [ 513, 660, 540, 677 ], [ 546, 660, 638, 677 ], [ 644, 660, 680, 677 ], [ 686, 660, 704, 677 ], [ 710, 660, 760, 677 ], [ 766, 660, 816, 677 ], [ 821, 660, 830, 677 ], [ 836, 660, 873, 677 ], [ 346, 674, 392, 692 ], [ 396, 674, 471, 692 ], [ 476, 674, 559, 692 ], [ 185, 689, 249, 707 ], [ 254, 689, 265, 707 ], [ 270, 689, 328, 707 ], [ 219, 704, 328, 721 ], [ 176, 719, 247, 736 ], [ 251, 719, 302, 736 ], [ 307, 719, 328, 736 ], [ 167, 734, 262, 751 ], [ 267, 734, 296, 751 ], [ 300, 734, 328, 751 ], [ 198, 748, 234, 766 ], [ 239, 748, 272, 766 ], [ 277, 748, 298, 766 ], [ 303, 748, 328, 766 ], [ 229, 763, 328, 780 ], [ 346, 719, 390, 737 ], [ 397, 719, 409, 737 ], [ 415, 719, 428, 737 ], [ 434, 719, 457, 737 ], [ 464, 719, 499, 737 ], [ 506, 719, 554, 737 ], [ 561, 719, 574, 737 ], [ 581, 719, 621, 737 ], [ 627, 719, 686, 737 ], [ 693, 719, 712, 737 ], [ 718, 719, 745, 737 ], [ 751, 719, 764, 737 ], [ 771, 719, 796, 737 ], [ 803, 719, 873, 737 ], [ 346, 734, 412, 751 ], [ 422, 734, 474, 751 ], [ 484, 734, 503, 751 ], [ 513, 734, 588, 751 ], [ 598, 734, 631, 751 ], [ 641, 734, 689, 751 ], [ 699, 734, 726, 751 ], [ 736, 734, 835, 751 ], [ 846, 734, 873, 751 ], [ 346, 748, 396, 766 ], [ 401, 748, 501, 766 ], [ 506, 748, 525, 766 ], [ 530, 748, 599, 766 ], [ 604, 748, 656, 766 ], [ 661, 748, 724, 766 ], [ 728, 748, 747, 766 ], [ 752, 748, 775, 766 ], [ 780, 748, 811, 766 ], [ 815, 748, 873, 766 ], [ 346, 763, 419, 780 ], [ 137, 807, 176, 824 ], [ 180, 807, 270, 824 ], [ 275, 807, 328, 824 ] ]
Use Case Requirements Summary Data Data Security & Lifecycle Use Case Sources Capabilities Consumer Privacy Management Others Transformation 1. large -- 1. large -- 1. Title 13 data 1. long-term -- document centralized preservation of data Census 2010 format from a storage (storage) as-is for 75 years and 2000 centralized 2. long-term storage preservation at the bit-level 3. curation process 1 including format transformation 4. access and analytics processing after 75 years 5. needs to make sure no data loss 1. distributed 1. crawl and 1. large data 1. high relevancy 1. security policy 1. pre-process for 1. mobile data sources index from storage and high recall virus scan search with NARA: 2. large data distributed data 2. various from search 2. file format similar Search, storage sources storages such as 2. high accuracy identification Retrieve, 3. bursty data 2. various NetApps, from 3. indexing from Preservation range from GB analytics Hitachi, categorization of 4. categorize records desktop to hundreds of processing Magnetic tapes records TB including 3. various 4. wide variety ranking, data storages such as of data formats categorization, NetApps, including detect PII data Hitachi, 2 unstructured 3. pre-processing Magnetic tapes and structured of data data 4. long-term 5. distributed preservation data sources in management fo different clouds large varied datasets. 5. hugh amount of data with high relevancy and recall. 1. data size 1. analytics are 1. software 1. data 1. improving 1. high veracity on 1. mobile approximately required for includes Hadoop, visualization for recommendation data and systems access Statistical one petabyte recommendation Spark, Hive, R, data review, systems that must be very robust. Survey systems, SAS, Mahout, operational reduce costs and The semantic Response continued Allegrograph, activity and improve quality integrity of monitoring and MySQL, Oracle, general analysis. while providing conceptual metadata general survey Storm, It continues to confidentiality concerning what improvement. BigMemory, evolve. safeguards that exactly is measured 3 Cassandra, Pig are reliable and and the resulting publically limits of inference auditable. remain a challenge 2. both confidential and secure all data. All processes must be auditable for security and
Use Case Requirements Summary Use Case Data Sources Transformation Capabilities Data Consumer Security & Privacy Lifecycle Management Others 1 Census 2010 and 2000 1. large document format from a centralized storage -- 1. large centralized storage (storage) -- 1. Title 13 data 1. long-term preservation of data as-is for 75 years 2. long-term preservation at the bit-level 3. curation process including format transformation 4. access and analytics processing after 75 years 5. needs to make sure no data loss -- 2 NARA: Search, Retrieve, Preservation 1. distributed data sources 2. large data storage 3. bursty data range from GB to hundreds of TB 4. wide variety of data formats including unstructured and structured data 5. distributed data sources in different clouds 1. crawl and index from distributed data sources 2. various analytics processing including ranking, data categorization, detect PII data 3. pre-processing of data 4. long-term preservation management fo large varied datasets. 5. hugh amount of data with high relevancy and recall. 1. large data storage 2. various storages such as NetApps, Hitachi, Magnetic tapes 1. high relevancy and high recall from search 2. high accuracy from categorization of records 3. various storages such as NetApps, Hitachi, Magnetic tapes 1. security policy 1. pre-process for virus scan 2. file format identification 3. indexing 4. categorize records 1. mobile search with similar from desktop 3 Statistical Survey Response 1. data size approximately one petabyte 1. analytics are required for recommendation systems, continued monitoring and general survey improvement. 1. software includes Hadoop, Spark, Hive, R, SAS, Mahout, Allegrograph, MySQL, Oracle, Storm, BigMemory, Cassandra, Pig 1. data visualization for data review, operational activity and general analysis. It continues to evolve. 1. improving recommendation systems that reduce costs and improve quality while providing confidentiality safeguards that are reliable and publically auditable. 2. both confidential and secure all data. All processes must be auditable for security and 1. high veracity on data and systems must be very robust. The semantic integrity of conceptual metadata concerning what exactly is measured and the resulting limits of inference remain a challenge 1. mobile access
0.399532
[ 0, 1, 2, 3, 9, 10, 4, 11, 17, 12, 5, 13, 6, 7, 14, 8, 15, 16, 60, 36, 37, 47, 48, 18, 19, 31, 38, 39, 40, 49, 52, 20, 21, 22, 32, 41, 42, 23, 24, 25, 26, 27, 28, 29, 33, 34, 35, 43, 44, 45, 46, 50, 51, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 30, 187, 111, 125, 135, 146, 80, 81, 99, 100, 112, 113, 114, 126, 136, 137, 138, 147, 148, 149, 158, 159, 160, 165, 169, 170, 171, 177, 178, 179, 182, 188, 193, 194, 197, 200, 201, 203, 204, 205, 208, 209, 82, 83, 84, 101, 102, 115, 116, 127, 139, 140, 150, 161, 166, 172, 173, 180, 183, 184, 185, 189, 190, 195, 196, 198, 199, 202, 206, 207, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 85, 86, 87, 103, 117, 118, 128, 129, 130, 141, 151, 162, 163, 88, 89, 90, 104, 105, 106, 119, 120, 131, 132, 133, 142, 152, 153, 164, 167, 168, 174, 175, 176, 181, 186, 191, 192, 91, 92, 93, 94, 95, 96, 107, 108, 121, 122, 123, 134, 143, 144, 154, 155, 156, 97, 98, 109, 110, 124, 145, 157, 314, 253, 268, 278, 223, 224, 225, 241, 254, 255, 226, 227, 228, 242, 243, 256, 269, 279, 287, 288, 297, 298, 306, 229, 230, 244, 245, 257, 258, 259, 270, 271, 280, 289, 290, 299, 307, 315, 316, 231, 232, 246, 247, 260, 261, 272, 281, 282, 291, 292, 300, 301, 302, 308, 233, 234, 248, 262, 263, 273, 274, 275, 283, 284, 293, 294, 303, 309, 310, 317, 318, 319, 323, 327, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 235, 236, 237, 238, 249, 250, 251, 264, 265, 266, 267, 276, 277, 285, 286, 295, 296, 304, 305, 311, 312, 313, 320, 321, 322, 324, 325, 326, 328, 329, 330, 239, 240, 252 ]
M0245_v5_6066621242.docx
task-1430-730
44
[ [ 164, 103, 200, 122 ], [ 204, 103, 249, 122 ], [ 254, 103, 392, 122 ], [ 397, 103, 490, 122 ], [ 179, 154, 212, 172 ], [ 502, 154, 536, 172 ], [ 614, 154, 672, 172 ], [ 676, 154, 690, 172 ], [ 726, 154, 788, 172 ], [ 90, 167, 116, 180 ], [ 120, 167, 151, 180 ], [ 179, 169, 233, 186 ], [ 391, 169, 474, 186 ], [ 502, 169, 575, 186 ], [ 614, 169, 668, 186 ], [ 726, 169, 817, 186 ], [ 856, 169, 904, 186 ], [ 279, 171, 379, 186 ], [ 178, 190, 189, 205 ], [ 193, 190, 222, 205 ], [ 278, 190, 288, 205 ], [ 390, 190, 401, 205 ], [ 405, 190, 434, 205 ], [ 502, 190, 512, 205 ], [ 614, 190, 625, 205 ], [ 628, 190, 656, 205 ], [ 660, 190, 674, 205 ], [ 678, 190, 703, 205 ], [ 725, 190, 736, 205 ], [ 740, 190, 798, 205 ], [ 856, 190, 866, 205 ], [ 178, 203, 236, 218 ], [ 390, 203, 454, 218 ], [ 725, 203, 798, 218 ], [ 802, 203, 814, 218 ], [ 818, 203, 842, 218 ], [ 90, 207, 135, 220 ], [ 138, 207, 168, 220 ], [ 178, 216, 217, 231 ], [ 221, 216, 249, 231 ], [ 253, 216, 260, 231 ], [ 390, 216, 432, 231 ], [ 436, 216, 488, 231 ], [ 725, 216, 752, 231 ], [ 756, 216, 773, 231 ], [ 777, 216, 792, 231 ], [ 795, 216, 826, 231 ], [ 90, 222, 114, 235 ], [ 117, 222, 147, 235 ], [ 178, 229, 242, 244 ], [ 725, 229, 736, 244 ], [ 740, 229, 798, 244 ], [ 178, 242, 220, 257 ], [ 725, 242, 798, 257 ], [ 802, 242, 812, 257 ], [ 816, 242, 834, 257 ], [ 725, 255, 774, 270 ], [ 725, 268, 736, 283 ], [ 740, 268, 788, 283 ], [ 792, 268, 836, 283 ], [ 66, 270, 74, 282 ], [ 725, 281, 781, 297 ], [ 785, 281, 824, 297 ], [ 725, 294, 812, 310 ], [ 725, 307, 736, 323 ], [ 740, 307, 778, 323 ], [ 781, 307, 802, 323 ], [ 725, 320, 777, 336 ], [ 781, 320, 844, 336 ], [ 725, 334, 752, 349 ], [ 756, 334, 771, 349 ], [ 774, 334, 805, 349 ], [ 725, 347, 736, 362 ], [ 740, 347, 774, 362 ], [ 777, 347, 789, 362 ], [ 793, 347, 824, 362 ], [ 725, 360, 750, 375 ], [ 754, 360, 768, 375 ], [ 772, 360, 797, 375 ], [ 800, 360, 823, 375 ], [ 178, 379, 189, 394 ], [ 193, 379, 256, 394 ], [ 278, 379, 289, 394 ], [ 293, 379, 325, 394 ], [ 329, 379, 350, 394 ], [ 390, 379, 401, 394 ], [ 405, 379, 434, 394 ], [ 438, 379, 462, 394 ], [ 502, 379, 513, 394 ], [ 517, 379, 543, 394 ], [ 546, 379, 604, 394 ], [ 614, 379, 625, 394 ], [ 628, 379, 675, 394 ], [ 678, 379, 715, 394 ], [ 725, 379, 736, 394 ], [ 740, 379, 808, 394 ], [ 812, 379, 829, 394 ], [ 856, 379, 867, 394 ], [ 871, 379, 911, 394 ], [ 178, 392, 202, 407 ], [ 206, 392, 250, 407 ], [ 278, 392, 311, 407 ], [ 315, 392, 343, 407 ], [ 390, 392, 432, 407 ], [ 502, 392, 523, 407 ], [ 527, 392, 553, 407 ], [ 557, 392, 589, 407 ], [ 725, 392, 755, 407 ], [ 758, 392, 784, 407 ], [ 856, 392, 893, 407 ], [ 897, 392, 923, 407 ], [ 90, 396, 137, 408 ], [ 178, 405, 189, 420 ], [ 193, 405, 222, 420 ], [ 226, 405, 250, 420 ], [ 278, 405, 341, 420 ], [ 345, 405, 369, 420 ], [ 390, 405, 401, 420 ], [ 405, 405, 448, 420 ], [ 502, 405, 530, 420 ], [ 534, 405, 571, 420 ], [ 725, 405, 736, 420 ], [ 740, 405, 760, 420 ], [ 763, 405, 802, 420 ], [ 856, 405, 896, 420 ], [ 90, 411, 137, 423 ], [ 178, 418, 220, 433 ], [ 278, 418, 322, 433 ], [ 390, 418, 438, 433 ], [ 442, 418, 469, 433 ], [ 473, 418, 485, 433 ], [ 502, 418, 513, 433 ], [ 517, 418, 543, 433 ], [ 546, 418, 599, 433 ], [ 725, 418, 804, 433 ], [ 90, 426, 146, 438 ], [ 178, 431, 189, 446 ], [ 193, 431, 230, 446 ], [ 233, 431, 258, 446 ], [ 278, 431, 289, 446 ], [ 293, 431, 336, 446 ], [ 390, 431, 446, 446 ], [ 502, 431, 530, 446 ], [ 725, 431, 736, 446 ], [ 740, 431, 792, 446 ], [ 873, 431, 902, 446 ], [ 90, 441, 170, 453 ], [ 178, 444, 211, 459 ], [ 214, 444, 243, 459 ], [ 247, 444, 267, 459 ], [ 278, 444, 330, 459 ], [ 390, 444, 437, 459 ], [ 502, 444, 585, 459 ], [ 589, 444, 601, 459 ], [ 725, 444, 736, 459 ], [ 740, 444, 800, 459 ], [ 804, 444, 848, 459 ], [ 856, 444, 902, 459 ], [ 178, 457, 189, 472 ], [ 193, 457, 247, 472 ], [ 251, 457, 263, 472 ], [ 278, 457, 341, 472 ], [ 390, 457, 445, 472 ], [ 449, 457, 479, 472 ], [ 502, 457, 545, 472 ], [ 178, 470, 197, 485 ], [ 278, 470, 334, 485 ], [ 502, 470, 513, 485 ], [ 517, 470, 560, 485 ], [ 178, 483, 189, 498 ], [ 193, 483, 221, 498 ], [ 225, 483, 266, 498 ], [ 278, 483, 327, 498 ], [ 331, 483, 355, 498 ], [ 502, 483, 550, 498 ], [ 554, 483, 580, 498 ], [ 584, 483, 597, 498 ], [ 178, 496, 190, 511 ], [ 194, 496, 218, 511 ], [ 222, 496, 267, 511 ], [ 278, 496, 365, 511 ], [ 502, 496, 558, 511 ], [ 178, 509, 234, 524 ], [ 278, 509, 313, 524 ], [ 317, 509, 335, 524 ], [ 339, 509, 363, 524 ], [ 502, 509, 549, 524 ], [ 66, 510, 74, 523 ], [ 178, 522, 252, 537 ], [ 278, 522, 289, 537 ], [ 293, 522, 380, 537 ], [ 502, 522, 557, 537 ], [ 561, 522, 591, 537 ], [ 178, 535, 199, 551 ], [ 203, 535, 262, 551 ], [ 278, 535, 291, 551 ], [ 294, 535, 319, 551 ], [ 178, 548, 202, 564 ], [ 278, 548, 289, 564 ], [ 293, 548, 351, 564 ], [ 178, 561, 189, 577 ], [ 193, 561, 256, 577 ], [ 278, 561, 351, 577 ], [ 178, 574, 202, 590 ], [ 206, 574, 250, 590 ], [ 254, 574, 266, 590 ], [ 278, 574, 353, 590 ], [ 357, 574, 369, 590 ], [ 178, 588, 228, 603 ], [ 232, 588, 271, 603 ], [ 278, 588, 307, 603 ], [ 311, 588, 348, 603 ], [ 278, 601, 328, 616 ], [ 278, 614, 289, 629 ], [ 293, 614, 322, 629 ], [ 326, 614, 370, 629 ], [ 278, 627, 291, 642 ], [ 294, 627, 319, 642 ], [ 322, 627, 348, 642 ], [ 352, 627, 378, 642 ], [ 278, 640, 335, 655 ], [ 339, 640, 360, 655 ], [ 278, 653, 314, 668 ], [ 178, 672, 189, 687 ], [ 193, 672, 217, 687 ], [ 221, 672, 244, 687 ], [ 278, 672, 289, 687 ], [ 293, 672, 345, 687 ], [ 349, 672, 367, 687 ], [ 390, 672, 401, 687 ], [ 405, 672, 455, 687 ], [ 502, 672, 513, 687 ], [ 517, 672, 541, 687 ], [ 614, 672, 625, 687 ], [ 628, 672, 690, 687 ], [ 725, 672, 736, 687 ], [ 740, 672, 766, 687 ], [ 770, 672, 817, 687 ], [ 821, 672, 836, 687 ], [ 856, 672, 867, 687 ], [ 871, 672, 911, 687 ], [ 178, 685, 263, 700 ], [ 278, 685, 327, 700 ], [ 331, 685, 348, 700 ], [ 390, 685, 439, 700 ], [ 443, 685, 493, 700 ], [ 502, 685, 577, 700 ], [ 581, 685, 598, 700 ], [ 614, 685, 712, 700 ], [ 725, 685, 750, 700 ], [ 754, 685, 775, 700 ], [ 779, 685, 825, 700 ], [ 856, 685, 893, 700 ], [ 90, 689, 152, 701 ], [ 178, 698, 199, 713 ], [ 203, 698, 252, 713 ], [ 278, 698, 377, 713 ], [ 390, 698, 428, 713 ], [ 432, 698, 464, 713 ], [ 468, 698, 481, 713 ], [ 502, 698, 526, 713 ], [ 530, 698, 573, 713 ], [ 614, 698, 660, 713 ], [ 664, 698, 686, 713 ], [ 725, 698, 754, 713 ], [ 758, 698, 771, 713 ], [ 775, 698, 801, 713 ], [ 805, 698, 845, 713 ], [ 90, 704, 134, 716 ], [ 278, 711, 328, 726 ], [ 390, 711, 420, 726 ], [ 424, 711, 474, 726 ], [ 502, 711, 568, 726 ], [ 614, 711, 653, 726 ], [ 656, 711, 686, 726 ], [ 690, 711, 711, 726 ], [ 725, 711, 748, 726 ], [ 752, 711, 804, 726 ], [ 90, 719, 149, 731 ], [ 278, 724, 336, 739 ], [ 390, 724, 472, 739 ], [ 502, 724, 546, 739 ], [ 549, 724, 571, 739 ], [ 614, 724, 662, 739 ], [ 666, 724, 707, 739 ], [ 725, 724, 775, 739 ], [ 779, 724, 791, 739 ], [ 278, 737, 344, 752 ], [ 347, 737, 368, 752 ], [ 390, 737, 442, 752 ], [ 445, 737, 488, 752 ], [ 502, 737, 545, 752 ], [ 549, 737, 600, 752 ], [ 614, 737, 646, 752 ], [ 650, 737, 707, 752 ], [ 725, 737, 789, 752 ], [ 793, 737, 846, 752 ], [ 278, 750, 321, 765 ], [ 325, 750, 364, 765 ], [ 390, 750, 430, 765 ], [ 502, 750, 511, 765 ], [ 514, 750, 571, 765 ], [ 575, 750, 586, 765 ], [ 614, 750, 699, 765 ], [ 725, 750, 791, 765 ], [ 795, 750, 823, 765 ], [ 278, 763, 360, 778 ], [ 390, 763, 465, 778 ], [ 502, 763, 544, 778 ], [ 614, 763, 676, 778 ], [ 680, 763, 702, 778 ], [ 725, 763, 768, 778 ], [ 771, 763, 781, 778 ], [ 785, 763, 841, 778 ], [ 66, 771, 74, 784 ], [ 390, 776, 454, 791 ], [ 458, 776, 477, 791 ], [ 614, 776, 631, 791 ], [ 635, 776, 679, 791 ], [ 683, 776, 704, 791 ], [ 725, 776, 747, 791 ], [ 750, 776, 768, 791 ], [ 772, 776, 823, 791 ], [ 614, 789, 672, 804 ], [ 725, 789, 759, 804 ], [ 762, 789, 775, 804 ], [ 778, 789, 833, 804 ], [ 614, 802, 671, 818 ], [ 725, 802, 766, 818 ], [ 770, 802, 776, 818 ], [ 780, 802, 836, 818 ], [ 614, 815, 625, 831 ], [ 628, 815, 654, 831 ], [ 614, 829, 684, 844 ], [ 688, 829, 709, 844 ], [ 614, 842, 651, 857 ], [ 655, 842, 669, 857 ], [ 673, 842, 701, 857 ], [ 614, 855, 632, 870 ], [ 636, 855, 692, 870 ], [ 614, 868, 642, 883 ], [ 646, 868, 660, 883 ], [ 663, 868, 717, 883 ], [ 614, 881, 631, 896 ], [ 634, 881, 681, 896 ], [ 685, 881, 706, 896 ] ]
[ [ 164, 103, 200, 122 ], [ 204, 103, 249, 122 ], [ 254, 103, 392, 122 ], [ 397, 103, 490, 122 ], [ 90, 167, 116, 180 ], [ 120, 167, 151, 180 ], [ 179, 154, 212, 172 ], [ 179, 169, 233, 186 ], [ 279, 171, 379, 186 ], [ 391, 169, 474, 186 ], [ 502, 154, 536, 172 ], [ 502, 169, 575, 186 ], [ 614, 154, 672, 172 ], [ 676, 154, 690, 172 ], [ 614, 169, 668, 186 ], [ 726, 154, 788, 172 ], [ 726, 169, 817, 186 ], [ 856, 169, 904, 186 ], [ 66, 270, 74, 282 ], [ 90, 207, 135, 220 ], [ 138, 207, 168, 220 ], [ 90, 222, 114, 235 ], [ 117, 222, 147, 235 ], [ 178, 190, 189, 205 ], [ 193, 190, 222, 205 ], [ 178, 203, 236, 218 ], [ 178, 216, 217, 231 ], [ 221, 216, 249, 231 ], [ 253, 216, 260, 231 ], [ 178, 229, 242, 244 ], [ 178, 242, 220, 257 ], [ 278, 190, 288, 205 ], [ 390, 190, 401, 205 ], [ 405, 190, 434, 205 ], [ 390, 203, 454, 218 ], [ 390, 216, 432, 231 ], [ 436, 216, 488, 231 ], [ 502, 190, 512, 205 ], [ 614, 190, 625, 205 ], [ 628, 190, 656, 205 ], [ 660, 190, 674, 205 ], [ 678, 190, 703, 205 ], [ 725, 190, 736, 205 ], [ 740, 190, 798, 205 ], [ 725, 203, 798, 218 ], [ 802, 203, 814, 218 ], [ 818, 203, 842, 218 ], [ 725, 216, 752, 231 ], [ 756, 216, 773, 231 ], [ 777, 216, 792, 231 ], [ 795, 216, 826, 231 ], [ 725, 229, 736, 244 ], [ 740, 229, 798, 244 ], [ 725, 242, 798, 257 ], [ 802, 242, 812, 257 ], [ 816, 242, 834, 257 ], [ 725, 255, 774, 270 ], [ 725, 268, 736, 283 ], [ 740, 268, 788, 283 ], [ 792, 268, 836, 283 ], [ 725, 281, 781, 297 ], [ 785, 281, 824, 297 ], [ 725, 294, 812, 310 ], [ 725, 307, 736, 323 ], [ 740, 307, 778, 323 ], [ 781, 307, 802, 323 ], [ 725, 320, 777, 336 ], [ 781, 320, 844, 336 ], [ 725, 334, 752, 349 ], [ 756, 334, 771, 349 ], [ 774, 334, 805, 349 ], [ 725, 347, 736, 362 ], [ 740, 347, 774, 362 ], [ 777, 347, 789, 362 ], [ 793, 347, 824, 362 ], [ 725, 360, 750, 375 ], [ 754, 360, 768, 375 ], [ 772, 360, 797, 375 ], [ 800, 360, 823, 375 ], [ 856, 190, 866, 205 ], [ 66, 510, 74, 523 ], [ 90, 396, 137, 408 ], [ 90, 411, 137, 423 ], [ 90, 426, 146, 438 ], [ 90, 441, 170, 453 ], [ 178, 379, 189, 394 ], [ 193, 379, 256, 394 ], [ 178, 392, 202, 407 ], [ 206, 392, 250, 407 ], [ 178, 405, 189, 420 ], [ 193, 405, 222, 420 ], [ 226, 405, 250, 420 ], [ 178, 418, 220, 433 ], [ 178, 431, 189, 446 ], [ 193, 431, 230, 446 ], [ 233, 431, 258, 446 ], [ 178, 444, 211, 459 ], [ 214, 444, 243, 459 ], [ 247, 444, 267, 459 ], [ 178, 457, 189, 472 ], [ 193, 457, 247, 472 ], [ 251, 457, 263, 472 ], [ 178, 470, 197, 485 ], [ 178, 483, 189, 498 ], [ 193, 483, 221, 498 ], [ 225, 483, 266, 498 ], [ 178, 496, 190, 511 ], [ 194, 496, 218, 511 ], [ 222, 496, 267, 511 ], [ 178, 509, 234, 524 ], [ 178, 522, 252, 537 ], [ 178, 535, 199, 551 ], [ 203, 535, 262, 551 ], [ 178, 548, 202, 564 ], [ 178, 561, 189, 577 ], [ 193, 561, 256, 577 ], [ 178, 574, 202, 590 ], [ 206, 574, 250, 590 ], [ 254, 574, 266, 590 ], [ 178, 588, 228, 603 ], [ 232, 588, 271, 603 ], [ 278, 379, 289, 394 ], [ 293, 379, 325, 394 ], [ 329, 379, 350, 394 ], [ 278, 392, 311, 407 ], [ 315, 392, 343, 407 ], [ 278, 405, 341, 420 ], [ 345, 405, 369, 420 ], [ 278, 418, 322, 433 ], [ 278, 431, 289, 446 ], [ 293, 431, 336, 446 ], [ 278, 444, 330, 459 ], [ 278, 457, 341, 472 ], [ 278, 470, 334, 485 ], [ 278, 483, 327, 498 ], [ 331, 483, 355, 498 ], [ 278, 496, 365, 511 ], [ 278, 509, 313, 524 ], [ 317, 509, 335, 524 ], [ 339, 509, 363, 524 ], [ 278, 522, 289, 537 ], [ 293, 522, 380, 537 ], [ 278, 535, 291, 551 ], [ 294, 535, 319, 551 ], [ 278, 548, 289, 564 ], [ 293, 548, 351, 564 ], [ 278, 561, 351, 577 ], [ 278, 574, 353, 590 ], [ 357, 574, 369, 590 ], [ 278, 588, 307, 603 ], [ 311, 588, 348, 603 ], [ 278, 601, 328, 616 ], [ 278, 614, 289, 629 ], [ 293, 614, 322, 629 ], [ 326, 614, 370, 629 ], [ 278, 627, 291, 642 ], [ 294, 627, 319, 642 ], [ 322, 627, 348, 642 ], [ 352, 627, 378, 642 ], [ 278, 640, 335, 655 ], [ 339, 640, 360, 655 ], [ 278, 653, 314, 668 ], [ 390, 379, 401, 394 ], [ 405, 379, 434, 394 ], [ 438, 379, 462, 394 ], [ 390, 392, 432, 407 ], [ 390, 405, 401, 420 ], [ 405, 405, 448, 420 ], [ 390, 418, 438, 433 ], [ 442, 418, 469, 433 ], [ 473, 418, 485, 433 ], [ 390, 431, 446, 446 ], [ 390, 444, 437, 459 ], [ 390, 457, 445, 472 ], [ 449, 457, 479, 472 ], [ 502, 379, 513, 394 ], [ 517, 379, 543, 394 ], [ 546, 379, 604, 394 ], [ 502, 392, 523, 407 ], [ 527, 392, 553, 407 ], [ 557, 392, 589, 407 ], [ 502, 405, 530, 420 ], [ 534, 405, 571, 420 ], [ 502, 418, 513, 433 ], [ 517, 418, 543, 433 ], [ 546, 418, 599, 433 ], [ 502, 431, 530, 446 ], [ 502, 444, 585, 459 ], [ 589, 444, 601, 459 ], [ 502, 457, 545, 472 ], [ 502, 470, 513, 485 ], [ 517, 470, 560, 485 ], [ 502, 483, 550, 498 ], [ 554, 483, 580, 498 ], [ 584, 483, 597, 498 ], [ 502, 496, 558, 511 ], [ 502, 509, 549, 524 ], [ 502, 522, 557, 537 ], [ 561, 522, 591, 537 ], [ 614, 379, 625, 394 ], [ 628, 379, 675, 394 ], [ 678, 379, 715, 394 ], [ 725, 379, 736, 394 ], [ 740, 379, 808, 394 ], [ 812, 379, 829, 394 ], [ 725, 392, 755, 407 ], [ 758, 392, 784, 407 ], [ 725, 405, 736, 420 ], [ 740, 405, 760, 420 ], [ 763, 405, 802, 420 ], [ 725, 418, 804, 433 ], [ 725, 431, 736, 446 ], [ 740, 431, 792, 446 ], [ 725, 444, 736, 459 ], [ 740, 444, 800, 459 ], [ 804, 444, 848, 459 ], [ 856, 379, 867, 394 ], [ 871, 379, 911, 394 ], [ 856, 392, 893, 407 ], [ 897, 392, 923, 407 ], [ 856, 405, 896, 420 ], [ 873, 431, 902, 446 ], [ 856, 444, 902, 459 ], [ 66, 771, 74, 784 ], [ 90, 689, 152, 701 ], [ 90, 704, 134, 716 ], [ 90, 719, 149, 731 ], [ 178, 672, 189, 687 ], [ 193, 672, 217, 687 ], [ 221, 672, 244, 687 ], [ 178, 685, 263, 700 ], [ 178, 698, 199, 713 ], [ 203, 698, 252, 713 ], [ 278, 672, 289, 687 ], [ 293, 672, 345, 687 ], [ 349, 672, 367, 687 ], [ 278, 685, 327, 700 ], [ 331, 685, 348, 700 ], [ 278, 698, 377, 713 ], [ 278, 711, 328, 726 ], [ 278, 724, 336, 739 ], [ 278, 737, 344, 752 ], [ 347, 737, 368, 752 ], [ 278, 750, 321, 765 ], [ 325, 750, 364, 765 ], [ 278, 763, 360, 778 ], [ 390, 672, 401, 687 ], [ 405, 672, 455, 687 ], [ 390, 685, 439, 700 ], [ 443, 685, 493, 700 ], [ 390, 698, 428, 713 ], [ 432, 698, 464, 713 ], [ 468, 698, 481, 713 ], [ 390, 711, 420, 726 ], [ 424, 711, 474, 726 ], [ 390, 724, 472, 739 ], [ 390, 737, 442, 752 ], [ 445, 737, 488, 752 ], [ 390, 750, 430, 765 ], [ 390, 763, 465, 778 ], [ 390, 776, 454, 791 ], [ 458, 776, 477, 791 ], [ 502, 672, 513, 687 ], [ 517, 672, 541, 687 ], [ 502, 685, 577, 700 ], [ 581, 685, 598, 700 ], [ 502, 698, 526, 713 ], [ 530, 698, 573, 713 ], [ 502, 711, 568, 726 ], [ 502, 724, 546, 739 ], [ 549, 724, 571, 739 ], [ 502, 737, 545, 752 ], [ 549, 737, 600, 752 ], [ 502, 750, 511, 765 ], [ 514, 750, 571, 765 ], [ 575, 750, 586, 765 ], [ 502, 763, 544, 778 ], [ 614, 672, 625, 687 ], [ 628, 672, 690, 687 ], [ 614, 685, 712, 700 ], [ 614, 698, 660, 713 ], [ 664, 698, 686, 713 ], [ 614, 711, 653, 726 ], [ 656, 711, 686, 726 ], [ 690, 711, 711, 726 ], [ 614, 724, 662, 739 ], [ 666, 724, 707, 739 ], [ 614, 737, 646, 752 ], [ 650, 737, 707, 752 ], [ 614, 750, 699, 765 ], [ 614, 763, 676, 778 ], [ 680, 763, 702, 778 ], [ 614, 776, 631, 791 ], [ 635, 776, 679, 791 ], [ 683, 776, 704, 791 ], [ 614, 789, 672, 804 ], [ 614, 802, 671, 818 ], [ 614, 815, 625, 831 ], [ 628, 815, 654, 831 ], [ 614, 829, 684, 844 ], [ 688, 829, 709, 844 ], [ 614, 842, 651, 857 ], [ 655, 842, 669, 857 ], [ 673, 842, 701, 857 ], [ 614, 855, 632, 870 ], [ 636, 855, 692, 870 ], [ 614, 868, 642, 883 ], [ 646, 868, 660, 883 ], [ 663, 868, 717, 883 ], [ 614, 881, 631, 896 ], [ 634, 881, 681, 896 ], [ 685, 881, 706, 896 ], [ 725, 672, 736, 687 ], [ 740, 672, 766, 687 ], [ 770, 672, 817, 687 ], [ 821, 672, 836, 687 ], [ 725, 685, 750, 700 ], [ 754, 685, 775, 700 ], [ 779, 685, 825, 700 ], [ 725, 698, 754, 713 ], [ 758, 698, 771, 713 ], [ 775, 698, 801, 713 ], [ 805, 698, 845, 713 ], [ 725, 711, 748, 726 ], [ 752, 711, 804, 726 ], [ 725, 724, 775, 739 ], [ 779, 724, 791, 739 ], [ 725, 737, 789, 752 ], [ 793, 737, 846, 752 ], [ 725, 750, 791, 765 ], [ 795, 750, 823, 765 ], [ 725, 763, 768, 778 ], [ 771, 763, 781, 778 ], [ 785, 763, 841, 778 ], [ 725, 776, 747, 791 ], [ 750, 776, 768, 791 ], [ 772, 776, 823, 791 ], [ 725, 789, 759, 804 ], [ 762, 789, 775, 804 ], [ 778, 789, 833, 804 ], [ 725, 802, 766, 818 ], [ 770, 802, 776, 818 ], [ 780, 802, 836, 818 ], [ 856, 672, 867, 687 ], [ 871, 672, 911, 687 ], [ 856, 685, 893, 700 ] ]
identification of structures (lexical units, linguistic rules, etc.) 1. a set of 1. environments 1. large file 1. client side -- -- -- network to run various system (storage) visualization CINET for topologies file network and 2. various Network to study graph graph analysis network Science theoretic tools connectivity properties and 2. dynamic grow (networking) behaviors of of the networks 3. existing various 3. asynchronous computing algorithms and real time cluster 2. synchronous 4. EC2 30 asynchronous distributed computing and real time computing cluster synchronous 4. different 5. various graph distributed parallel libraries, computing algorithms for management different toos, databases, partitioning semantic web schemes for tools efficient operation 1. large 1. analytic 1. PERL, Python, 1. analytic flows 1. security -- -- amounts of algorithms C/C++, Matlab, involving users requirements for NIST semi-annotated working with R development protecting Information web pages, written language, tools. Create sensitive data Access tweets, images, speech, human ground-up test while enabling Division video imagery, etc. and measurement meaningful 2. scaling must generally applications developmental be tested against performance truthing to real or realistic evaluation. larger data, data. Shared It’s intrinsic and extremely evaluation annotation challenging to testbeds must uncertainty engineer artificial protect the 31 measurement, data that intellectual performance sufficiently property of measurement captures the analytic for variability of real algorithm incompletely data involving developers annotated data, humans measuring analytic performance for heterogeneous data and analytic flows involving users 1. process key 1. needs to 1. iRODS data 1. general 1. Federate -- -- format types provide general management visulaization across existing 32 DataNet NetCDF, analytics software workflows authentication (iRODS) HDF5, Dicom workflows 2. environments
identification of structures (lexical units, linguistic rules, etc.) 30 CINET for Network Science 1. a set of network topologies file to study graph theoretic properties and behaviors of various algorithms 2. asynchronous and real time synchronous distributed computing 1. environments to run various network and graph analysis tools 2. dynamic grow of the networks 3. asynchronous and real time synchronous distributed computing 4. different parallel algorithms for different partitioning schemes for efficient operation 1. large file system (storage) 2. various network connectivity (networking) 3. existing computing cluster 4. EC2 computing cluster 5. various graph libraries, management toos, databases, semantic web tools 1. client side visualization -- -- -- 31 NIST Information Access Division 1. large amounts of semi-annotated web pages, tweets, images, video 2. scaling to larger data, intrinsic and annotation uncertainty measurement, performance measurement for incompletely annotated data, measuring analytic performance for heterogeneous data and analytic flows involving users 1. analytic algorithms working with written language, speech, human imagery, etc. must generally be tested against real or realistic data. It’s extremely challenging to engineer artificial data that sufficiently captures the variability of real data involving humans 1. PERL, Python, C/C++, Matlab, R development tools. Create ground-up test and measurement applications 1. analytic flows involving users 1. security requirements for protecting sensitive data while enabling meaningful developmental performance evaluation. Shared evaluation testbeds must protect the intellectual property of analytic algorithm developers -- -- 32 DataNet (iRODS) 1. process key format types NetCDF, HDF5, Dicom 1. needs to provide general analytics workflows 1. iRODS data management software 2. 1. general visulaization workflows 1. Federate across existing authentication environments -- -- truthing
0.253556
[ 0, 1, 2, 3, 4, 5, 6, 7, 75, 30, 31, 38, 45, 8, 9, 10, 11, 23, 32, 33, 39, 40, 41, 46, 49, 50, 55, 56, 62, 66, 71, 76, 79, 80, 81, 84, 90, 93, 12, 13, 24, 25, 26, 34, 35, 42, 43, 47, 51, 52, 53, 57, 58, 59, 63, 64, 67, 68, 69, 72, 77, 82, 85, 86, 91, 94, 95, 97, 100, 103, 104, 106, 107, 14, 15, 16, 27, 28, 36, 37, 44, 48, 54, 60, 61, 65, 70, 73, 74, 78, 83, 87, 88, 89, 92, 96, 98, 99, 101, 102, 105, 17, 18, 19, 29, 20, 21, 22, 198, 131, 138, 147, 156, 108, 109, 122, 123, 132, 139, 140, 148, 149, 157, 163, 164, 174, 179, 180, 184, 185, 188, 193, 199, 203, 207, 211, 216, 220, 221, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 110, 111, 124, 133, 134, 141, 142, 150, 151, 158, 159, 165, 166, 169, 170, 171, 175, 176, 177, 181, 183, 186, 189, 190, 194, 195, 200, 201, 204, 208, 209, 212, 213, 214, 217, 218, 222, 112, 113, 114, 125, 126, 135, 136, 143, 144, 152, 153, 160, 161, 167, 115, 116, 117, 127, 128, 118, 119, 129, 130, 137, 145, 146, 154, 155, 162, 168, 172, 178, 182, 187, 191, 192, 196, 197, 202, 205, 206, 210, 215, 219, 120, 121, 257, 258, 264, 234, 235, 236, 249, 250, 259, 265, 266, 237, 238, 239, 251, 252, 260, 267, 240, 241, 242, 253, 261, 268, 243, 244, 254, 262, 245, 246, 255, 256, 263, 269, 247, 248, 173 ]
M0245_v5_6066621242.docx
task-1430-730
56
[ [ 278, 139, 357, 154 ], [ 360, 139, 373, 154 ], [ 278, 152, 335, 167 ], [ 278, 165, 322, 180 ], [ 326, 165, 358, 180 ], [ 278, 178, 333, 193 ], [ 337, 178, 369, 193 ], [ 278, 191, 304, 207 ], [ 178, 210, 189, 225 ], [ 193, 210, 199, 225 ], [ 203, 210, 219, 225 ], [ 223, 210, 235, 225 ], [ 278, 210, 289, 225 ], [ 293, 210, 373, 225 ], [ 390, 210, 401, 225 ], [ 405, 210, 434, 225 ], [ 438, 210, 457, 225 ], [ 502, 210, 513, 225 ], [ 517, 210, 549, 225 ], [ 553, 210, 577, 225 ], [ 614, 210, 623, 225 ], [ 725, 210, 735, 225 ], [ 856, 210, 866, 225 ], [ 178, 223, 226, 238 ], [ 278, 223, 290, 238 ], [ 293, 223, 313, 238 ], [ 317, 223, 360, 238 ], [ 390, 223, 431, 238 ], [ 434, 223, 487, 238 ], [ 502, 223, 577, 238 ], [ 90, 227, 136, 240 ], [ 140, 227, 159, 240 ], [ 178, 236, 239, 251 ], [ 243, 236, 263, 251 ], [ 278, 236, 326, 251 ], [ 330, 236, 351, 251 ], [ 390, 236, 401, 251 ], [ 405, 236, 448, 251 ], [ 90, 242, 145, 255 ], [ 178, 249, 189, 264 ], [ 193, 249, 225, 264 ], [ 229, 249, 262, 264 ], [ 278, 249, 312, 264 ], [ 315, 249, 363, 264 ], [ 390, 249, 438, 264 ], [ 90, 257, 136, 270 ], [ 178, 262, 230, 278 ], [ 278, 262, 307, 278 ], [ 390, 262, 463, 278 ], [ 178, 275, 237, 291 ], [ 241, 275, 262, 291 ], [ 278, 275, 289, 291 ], [ 293, 275, 343, 291 ], [ 347, 275, 377, 291 ], [ 390, 275, 467, 291 ], [ 178, 288, 235, 304 ], [ 239, 288, 251, 304 ], [ 278, 288, 291, 304 ], [ 294, 288, 312, 304 ], [ 316, 288, 370, 304 ], [ 390, 288, 401, 304 ], [ 405, 288, 451, 304 ], [ 178, 301, 221, 317 ], [ 278, 301, 289, 317 ], [ 293, 301, 374, 317 ], [ 390, 301, 453, 317 ], [ 178, 315, 241, 330 ], [ 278, 315, 299, 330 ], [ 303, 315, 325, 330 ], [ 329, 315, 355, 330 ], [ 390, 315, 429, 330 ], [ 178, 328, 189, 343 ], [ 278, 328, 353, 343 ], [ 390, 328, 401, 343 ], [ 405, 328, 431, 343 ], [ 66, 329, 81, 342 ], [ 178, 341, 259, 356 ], [ 278, 341, 341, 356 ], [ 390, 341, 453, 356 ], [ 178, 354, 199, 369 ], [ 203, 354, 225, 369 ], [ 229, 354, 255, 369 ], [ 278, 354, 341, 369 ], [ 390, 354, 429, 369 ], [ 178, 367, 252, 382 ], [ 278, 367, 289, 382 ], [ 293, 367, 343, 382 ], [ 390, 367, 401, 382 ], [ 405, 367, 448, 382 ], [ 452, 367, 485, 382 ], [ 178, 380, 241, 395 ], [ 278, 380, 322, 395 ], [ 390, 380, 442, 395 ], [ 178, 393, 241, 408 ], [ 278, 393, 341, 408 ], [ 345, 393, 362, 408 ], [ 390, 393, 465, 408 ], [ 278, 406, 329, 421 ], [ 390, 406, 418, 421 ], [ 422, 406, 482, 421 ], [ 278, 419, 347, 434 ], [ 390, 419, 442, 434 ], [ 446, 419, 470, 434 ], [ 278, 432, 328, 447 ], [ 332, 432, 349, 447 ], [ 390, 432, 419, 447 ], [ 278, 445, 327, 460 ], [ 278, 458, 334, 474 ], [ 178, 477, 189, 492 ], [ 193, 477, 222, 492 ], [ 278, 477, 289, 492 ], [ 293, 477, 339, 492 ], [ 390, 477, 401, 492 ], [ 405, 477, 444, 492 ], [ 448, 477, 493, 492 ], [ 502, 477, 513, 492 ], [ 517, 477, 563, 492 ], [ 567, 477, 599, 492 ], [ 614, 477, 625, 492 ], [ 628, 477, 675, 492 ], [ 725, 477, 735, 492 ], [ 856, 477, 866, 492 ], [ 178, 490, 228, 505 ], [ 231, 490, 244, 505 ], [ 278, 490, 341, 505 ], [ 390, 490, 434, 505 ], [ 438, 490, 483, 505 ], [ 502, 490, 558, 505 ], [ 562, 490, 592, 505 ], [ 614, 490, 690, 505 ], [ 694, 490, 711, 505 ], [ 90, 494, 124, 507 ], [ 178, 503, 268, 518 ], [ 278, 503, 327, 518 ], [ 331, 503, 357, 518 ], [ 390, 503, 400, 518 ], [ 404, 503, 479, 518 ], [ 614, 503, 673, 518 ], [ 90, 509, 167, 522 ], [ 178, 516, 202, 532 ], [ 206, 516, 243, 532 ], [ 278, 516, 320, 532 ], [ 324, 516, 380, 532 ], [ 390, 516, 422, 532 ], [ 426, 516, 464, 532 ], [ 614, 516, 665, 532 ], [ 669, 516, 693, 532 ], [ 90, 524, 131, 537 ], [ 178, 529, 219, 545 ], [ 223, 529, 268, 545 ], [ 278, 529, 322, 545 ], [ 326, 529, 366, 545 ], [ 390, 529, 451, 545 ], [ 455, 529, 475, 545 ], [ 614, 529, 646, 545 ], [ 650, 529, 701, 545 ], [ 90, 539, 141, 552 ], [ 178, 542, 211, 558 ], [ 278, 542, 330, 558 ], [ 334, 542, 354, 558 ], [ 390, 542, 411, 558 ], [ 415, 542, 493, 558 ], [ 614, 542, 680, 558 ], [ 178, 556, 189, 571 ], [ 193, 556, 235, 571 ], [ 278, 556, 307, 571 ], [ 310, 556, 365, 571 ], [ 390, 556, 461, 571 ], [ 614, 556, 700, 571 ], [ 278, 569, 292, 584 ], [ 296, 569, 330, 584 ], [ 334, 569, 375, 584 ], [ 614, 569, 688, 584 ], [ 178, 582, 225, 597 ], [ 228, 582, 240, 597 ], [ 278, 582, 300, 597 ], [ 304, 582, 316, 597 ], [ 320, 582, 366, 597 ], [ 614, 582, 679, 597 ], [ 178, 595, 212, 610 ], [ 216, 595, 244, 610 ], [ 278, 595, 306, 610 ], [ 614, 595, 654, 610 ], [ 310, 597, 330, 609 ], [ 178, 608, 226, 623 ], [ 230, 608, 251, 623 ], [ 278, 608, 337, 623 ], [ 614, 608, 675, 623 ], [ 178, 621, 240, 636 ], [ 278, 621, 347, 636 ], [ 351, 621, 362, 636 ], [ 614, 621, 661, 636 ], [ 665, 621, 693, 636 ], [ 178, 634, 244, 649 ], [ 278, 634, 329, 649 ], [ 332, 634, 382, 649 ], [ 614, 634, 654, 649 ], [ 658, 634, 676, 649 ], [ 66, 642, 81, 654 ], [ 178, 647, 260, 662 ], [ 278, 647, 303, 662 ], [ 306, 647, 329, 662 ], [ 614, 647, 679, 662 ], [ 178, 660, 252, 675 ], [ 278, 660, 345, 675 ], [ 614, 660, 663, 675 ], [ 667, 660, 679, 675 ], [ 178, 673, 256, 688 ], [ 278, 673, 327, 688 ], [ 331, 673, 349, 688 ], [ 614, 673, 660, 688 ], [ 178, 686, 195, 701 ], [ 278, 686, 339, 701 ], [ 342, 686, 354, 701 ], [ 358, 686, 380, 701 ], [ 614, 686, 671, 701 ], [ 178, 699, 255, 714 ], [ 278, 699, 303, 714 ], [ 306, 699, 363, 714 ], [ 614, 699, 677, 714 ], [ 178, 712, 235, 727 ], [ 239, 712, 267, 727 ], [ 278, 712, 324, 727 ], [ 178, 726, 239, 741 ], [ 178, 739, 224, 754 ], [ 178, 752, 252, 767 ], [ 178, 765, 195, 780 ], [ 178, 778, 263, 793 ], [ 178, 791, 202, 806 ], [ 206, 791, 227, 806 ], [ 178, 804, 224, 819 ], [ 228, 804, 261, 819 ], [ 178, 817, 234, 832 ], [ 238, 817, 268, 832 ], [ 178, 836, 189, 851 ], [ 193, 836, 237, 851 ], [ 241, 836, 262, 851 ], [ 278, 836, 289, 851 ], [ 293, 836, 327, 851 ], [ 330, 836, 342, 851 ], [ 390, 836, 401, 851 ], [ 405, 836, 448, 851 ], [ 452, 836, 476, 851 ], [ 502, 836, 513, 851 ], [ 517, 836, 560, 851 ], [ 614, 836, 625, 851 ], [ 628, 836, 679, 851 ], [ 725, 836, 735, 851 ], [ 856, 836, 866, 851 ], [ 178, 849, 217, 864 ], [ 221, 849, 252, 864 ], [ 278, 849, 323, 864 ], [ 327, 849, 370, 864 ], [ 390, 849, 465, 864 ], [ 502, 849, 577, 864 ], [ 614, 849, 650, 864 ], [ 654, 849, 700, 864 ], [ 66, 853, 81, 865 ], [ 90, 853, 142, 865 ], [ 178, 862, 231, 877 ], [ 278, 862, 330, 877 ], [ 390, 862, 440, 877 ], [ 502, 862, 564, 877 ], [ 614, 862, 697, 877 ], [ 90, 868, 145, 880 ], [ 178, 875, 218, 890 ], [ 222, 875, 262, 890 ], [ 278, 875, 341, 890 ], [ 390, 875, 401, 890 ], [ 614, 875, 693, 890 ] ]
[ [ 278, 139, 357, 154 ], [ 360, 139, 373, 154 ], [ 278, 152, 335, 167 ], [ 278, 165, 322, 180 ], [ 326, 165, 358, 180 ], [ 278, 178, 333, 193 ], [ 337, 178, 369, 193 ], [ 278, 191, 304, 207 ], [ 66, 329, 81, 342 ], [ 90, 227, 136, 240 ], [ 140, 227, 159, 240 ], [ 90, 242, 145, 255 ], [ 90, 257, 136, 270 ], [ 178, 210, 189, 225 ], [ 193, 210, 199, 225 ], [ 203, 210, 219, 225 ], [ 223, 210, 235, 225 ], [ 178, 223, 226, 238 ], [ 178, 236, 239, 251 ], [ 243, 236, 263, 251 ], [ 178, 249, 189, 264 ], [ 193, 249, 225, 264 ], [ 229, 249, 262, 264 ], [ 178, 262, 230, 278 ], [ 178, 275, 237, 291 ], [ 241, 275, 262, 291 ], [ 178, 288, 235, 304 ], [ 239, 288, 251, 304 ], [ 178, 301, 221, 317 ], [ 178, 315, 241, 330 ], [ 178, 328, 189, 343 ], [ 178, 341, 259, 356 ], [ 178, 354, 199, 369 ], [ 203, 354, 225, 369 ], [ 229, 354, 255, 369 ], [ 178, 367, 252, 382 ], [ 178, 380, 241, 395 ], [ 178, 393, 241, 408 ], [ 278, 210, 289, 225 ], [ 293, 210, 373, 225 ], [ 278, 223, 290, 238 ], [ 293, 223, 313, 238 ], [ 317, 223, 360, 238 ], [ 278, 236, 326, 251 ], [ 330, 236, 351, 251 ], [ 278, 249, 312, 264 ], [ 315, 249, 363, 264 ], [ 278, 262, 307, 278 ], [ 278, 275, 289, 291 ], [ 293, 275, 343, 291 ], [ 347, 275, 377, 291 ], [ 278, 288, 291, 304 ], [ 294, 288, 312, 304 ], [ 316, 288, 370, 304 ], [ 278, 301, 289, 317 ], [ 293, 301, 374, 317 ], [ 278, 315, 299, 330 ], [ 303, 315, 325, 330 ], [ 329, 315, 355, 330 ], [ 278, 328, 353, 343 ], [ 278, 341, 341, 356 ], [ 278, 354, 341, 369 ], [ 278, 367, 289, 382 ], [ 293, 367, 343, 382 ], [ 278, 380, 322, 395 ], [ 278, 393, 341, 408 ], [ 345, 393, 362, 408 ], [ 278, 406, 329, 421 ], [ 278, 419, 347, 434 ], [ 278, 432, 328, 447 ], [ 332, 432, 349, 447 ], [ 278, 445, 327, 460 ], [ 278, 458, 334, 474 ], [ 390, 210, 401, 225 ], [ 405, 210, 434, 225 ], [ 438, 210, 457, 225 ], [ 390, 223, 431, 238 ], [ 434, 223, 487, 238 ], [ 390, 236, 401, 251 ], [ 405, 236, 448, 251 ], [ 390, 249, 438, 264 ], [ 390, 262, 463, 278 ], [ 390, 275, 467, 291 ], [ 390, 288, 401, 304 ], [ 405, 288, 451, 304 ], [ 390, 301, 453, 317 ], [ 390, 315, 429, 330 ], [ 390, 328, 401, 343 ], [ 405, 328, 431, 343 ], [ 390, 341, 453, 356 ], [ 390, 354, 429, 369 ], [ 390, 367, 401, 382 ], [ 405, 367, 448, 382 ], [ 452, 367, 485, 382 ], [ 390, 380, 442, 395 ], [ 390, 393, 465, 408 ], [ 390, 406, 418, 421 ], [ 422, 406, 482, 421 ], [ 390, 419, 442, 434 ], [ 446, 419, 470, 434 ], [ 390, 432, 419, 447 ], [ 502, 210, 513, 225 ], [ 517, 210, 549, 225 ], [ 553, 210, 577, 225 ], [ 502, 223, 577, 238 ], [ 614, 210, 623, 225 ], [ 725, 210, 735, 225 ], [ 856, 210, 866, 225 ], [ 66, 642, 81, 654 ], [ 90, 494, 124, 507 ], [ 90, 509, 167, 522 ], [ 90, 524, 131, 537 ], [ 90, 539, 141, 552 ], [ 178, 477, 189, 492 ], [ 193, 477, 222, 492 ], [ 178, 490, 228, 505 ], [ 231, 490, 244, 505 ], [ 178, 503, 268, 518 ], [ 178, 516, 202, 532 ], [ 206, 516, 243, 532 ], [ 178, 529, 219, 545 ], [ 223, 529, 268, 545 ], [ 178, 542, 211, 558 ], [ 178, 556, 189, 571 ], [ 193, 556, 235, 571 ], [ 228, 582, 240, 597 ], [ 178, 595, 212, 610 ], [ 216, 595, 244, 610 ], [ 178, 608, 226, 623 ], [ 230, 608, 251, 623 ], [ 178, 621, 240, 636 ], [ 178, 634, 244, 649 ], [ 178, 647, 260, 662 ], [ 178, 660, 252, 675 ], [ 178, 673, 256, 688 ], [ 178, 686, 195, 701 ], [ 178, 699, 255, 714 ], [ 178, 712, 235, 727 ], [ 239, 712, 267, 727 ], [ 178, 726, 239, 741 ], [ 178, 739, 224, 754 ], [ 178, 752, 252, 767 ], [ 178, 765, 195, 780 ], [ 178, 778, 263, 793 ], [ 178, 791, 202, 806 ], [ 206, 791, 227, 806 ], [ 178, 804, 224, 819 ], [ 228, 804, 261, 819 ], [ 178, 817, 234, 832 ], [ 238, 817, 268, 832 ], [ 278, 477, 289, 492 ], [ 293, 477, 339, 492 ], [ 278, 490, 341, 505 ], [ 278, 503, 327, 518 ], [ 331, 503, 357, 518 ], [ 278, 516, 320, 532 ], [ 324, 516, 380, 532 ], [ 278, 529, 322, 545 ], [ 326, 529, 366, 545 ], [ 278, 542, 330, 558 ], [ 334, 542, 354, 558 ], [ 278, 556, 307, 571 ], [ 310, 556, 365, 571 ], [ 278, 569, 292, 584 ], [ 296, 569, 330, 584 ], [ 334, 569, 375, 584 ], [ 278, 582, 300, 597 ], [ 304, 582, 316, 597 ], [ 320, 582, 366, 597 ], [ 278, 595, 306, 610 ], [ 310, 597, 330, 609 ], [ 278, 608, 337, 623 ], [ 278, 621, 347, 636 ], [ 351, 621, 362, 636 ], [ 278, 634, 329, 649 ], [ 332, 634, 382, 649 ], [ 278, 647, 303, 662 ], [ 306, 647, 329, 662 ], [ 278, 660, 345, 675 ], [ 278, 673, 327, 688 ], [ 331, 673, 349, 688 ], [ 278, 686, 339, 701 ], [ 342, 686, 354, 701 ], [ 358, 686, 380, 701 ], [ 278, 699, 303, 714 ], [ 306, 699, 363, 714 ], [ 278, 712, 324, 727 ], [ 390, 477, 401, 492 ], [ 405, 477, 444, 492 ], [ 448, 477, 493, 492 ], [ 390, 490, 434, 505 ], [ 438, 490, 483, 505 ], [ 390, 503, 400, 518 ], [ 404, 503, 479, 518 ], [ 390, 516, 422, 532 ], [ 426, 516, 464, 532 ], [ 390, 529, 451, 545 ], [ 455, 529, 475, 545 ], [ 390, 542, 411, 558 ], [ 415, 542, 493, 558 ], [ 390, 556, 461, 571 ], [ 502, 477, 513, 492 ], [ 517, 477, 563, 492 ], [ 567, 477, 599, 492 ], [ 502, 490, 558, 505 ], [ 562, 490, 592, 505 ], [ 614, 477, 625, 492 ], [ 628, 477, 675, 492 ], [ 614, 490, 690, 505 ], [ 694, 490, 711, 505 ], [ 614, 503, 673, 518 ], [ 614, 516, 665, 532 ], [ 669, 516, 693, 532 ], [ 614, 529, 646, 545 ], [ 650, 529, 701, 545 ], [ 614, 542, 680, 558 ], [ 614, 556, 700, 571 ], [ 614, 569, 688, 584 ], [ 614, 582, 679, 597 ], [ 614, 595, 654, 610 ], [ 614, 608, 675, 623 ], [ 614, 621, 661, 636 ], [ 665, 621, 693, 636 ], [ 614, 634, 654, 649 ], [ 658, 634, 676, 649 ], [ 614, 647, 679, 662 ], [ 614, 660, 663, 675 ], [ 667, 660, 679, 675 ], [ 614, 673, 660, 688 ], [ 614, 686, 671, 701 ], [ 614, 699, 677, 714 ], [ 725, 477, 735, 492 ], [ 856, 477, 866, 492 ], [ 66, 853, 81, 865 ], [ 90, 853, 142, 865 ], [ 90, 868, 145, 880 ], [ 178, 836, 189, 851 ], [ 193, 836, 237, 851 ], [ 241, 836, 262, 851 ], [ 178, 849, 217, 864 ], [ 221, 849, 252, 864 ], [ 178, 862, 231, 877 ], [ 178, 875, 218, 890 ], [ 222, 875, 262, 890 ], [ 278, 836, 289, 851 ], [ 293, 836, 327, 851 ], [ 330, 836, 342, 851 ], [ 278, 849, 323, 864 ], [ 327, 849, 370, 864 ], [ 278, 862, 330, 877 ], [ 278, 875, 341, 890 ], [ 390, 836, 401, 851 ], [ 405, 836, 448, 851 ], [ 452, 836, 476, 851 ], [ 390, 849, 465, 864 ], [ 390, 862, 440, 877 ], [ 390, 875, 401, 890 ], [ 502, 836, 513, 851 ], [ 517, 836, 560, 851 ], [ 502, 849, 577, 864 ], [ 502, 862, 564, 877 ], [ 614, 836, 625, 851 ], [ 628, 836, 679, 851 ], [ 614, 849, 650, 864 ], [ 654, 849, 700, 864 ], [ 614, 862, 697, 877 ], [ 614, 875, 693, 890 ], [ 725, 836, 735, 851 ], [ 856, 836, 866, 851 ], [ 178, 582, 225, 597 ] ]
omic, and simulation datasets across different semantic, spatial, and temporal scales 3. link diverse data to novel HPC simulation 1. 1. Custom 1. custom 1. phone based -- -- 1. phone heterogeneous Software: software like input and access based input DOE-BER Diverse data EddyPro, EddyPro and and access AmeriFlux with different Custom analysis analysis software and domains and software, R, like R, python, FLUXNET scales, python, neural neural netowrks, Networks Translation networks, Matlab Matlab across diverse 2. analytics datasets that includes data cross domains mining, data and scales quality 2. link to many assessment, other cross-correlation environment across datasets, 50 and biology data assimilation, datasets data 3. link to HPC interpolation, Climate and statistics, quality other assessment, data simulations fusion, etc. 4. link to European data sources and projects 5. access data from 500 distributed sources 1. diverse data 1. new machine 1. SQL -- 1. privacy and -- 1. mobile from Smart learning analytics databases, CVS anonymization access for Grid sensors, to predict files, HDFS by aggregation clients City planning, consumption (platform) 51 forecasting weather, 2. R/Matlab, in Smart utilities 2, data Weka, Hadoop Grids updated every (platform) 15 minutes Use Case Detail Requirements To assist in interpreting this section of the report: This section is first organized by category [Data Sources, Transformation, etc.] Within each category is a list of numbered requirement statements.
omic, and simulation datasets across different semantic, spatial, and temporal scales 3. link diverse data to novel HPC simulation 50 DOE-BER AmeriFlux and FLUXNET Networks 1. heterogeneous Diverse data with different domains and scales, Translation across diverse datasets that cross domains and scales 2. link to many other environment and biology datasets 3. link to HPC Climate and other simulations 4. link to European data sources and projects 5. access data from 500 distributed sources 1. Custom Software: EddyPro, Custom analysis software, R, python, neural networks, Matlab 1. custom software like EddyPro and analysis software like R, python, neural netowrks, Matlab 2. analytics includes data mining, data quality assessment, cross-correlation across datasets, data assimilation, data interpolation, statistics, quality assessment, data fusion, etc. 1. phone based input and access -- -- 1. phone based input and access 51 forecasting in Smart Grids 1. diverse data from Smart Grid sensors, City planning, weather, utilities 2, data updated every 15 minutes 1. new machine learning analytics to predict consumption 1. SQL databases, CVS files, HDFS (platform) 2. R/Matlab, Weka, Hadoop (platform) -- 1. privacy and anonymization by aggregation -- 1. mobile access for clients Use Case Detail Requirements To assist in interpreting this section of the report: This section is first organized by category [Data Sources, Transformation, etc.] Within each category is a list of numbered requirement statements.
0.498336
[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 99, 40, 48, 55, 63, 69, 19, 31, 41, 42, 49, 50, 56, 57, 64, 70, 74, 75, 78, 79, 82, 83, 86, 87, 89, 90, 91, 92, 94, 96, 100, 101, 104, 106, 107, 108, 109, 111, 112, 115, 118, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 20, 21, 32, 43, 51, 52, 58, 59, 65, 66, 71, 72, 22, 23, 33, 34, 44, 45, 53, 54, 60, 61, 62, 67, 68, 73, 76, 77, 80, 81, 84, 85, 88, 93, 95, 97, 98, 102, 103, 105, 110, 113, 114, 116, 117, 119, 120, 24, 25, 26, 35, 36, 37, 27, 28, 29, 30, 38, 39, 46, 47, 173, 174, 178, 179, 185, 136, 137, 138, 151, 152, 160, 161, 169, 170, 175, 180, 181, 182, 186, 187, 189, 190, 139, 140, 141, 153, 154, 162, 163, 171, 142, 143, 155, 156, 164, 165, 172, 176, 177, 183, 184, 188, 144, 145, 146, 147, 157, 166, 167, 148, 149, 150, 158, 159, 168, 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 ]
M0245_v5_6066621242.docx
task-1430-730
62
[ [ 178, 139, 211, 154 ], [ 215, 139, 236, 154 ], [ 178, 152, 240, 167 ], [ 178, 165, 224, 180 ], [ 228, 165, 265, 180 ], [ 178, 178, 228, 193 ], [ 178, 191, 234, 207 ], [ 178, 204, 220, 220 ], [ 224, 204, 245, 220 ], [ 178, 217, 230, 233 ], [ 234, 217, 269, 233 ], [ 178, 231, 189, 246 ], [ 193, 231, 216, 246 ], [ 219, 231, 262, 246 ], [ 178, 244, 202, 259 ], [ 206, 244, 218, 259 ], [ 221, 244, 254, 259 ], [ 178, 257, 207, 272 ], [ 178, 270, 240, 285 ], [ 178, 288, 189, 304 ], [ 278, 288, 289, 304 ], [ 293, 288, 339, 304 ], [ 390, 288, 401, 304 ], [ 405, 288, 447, 304 ], [ 502, 288, 513, 304 ], [ 517, 288, 553, 304 ], [ 556, 288, 590, 304 ], [ 614, 288, 623, 304 ], [ 725, 288, 735, 304 ], [ 856, 288, 867, 304 ], [ 871, 288, 907, 304 ], [ 178, 301, 263, 317 ], [ 278, 301, 335, 317 ], [ 390, 301, 440, 317 ], [ 444, 301, 466, 317 ], [ 502, 301, 532, 317 ], [ 536, 301, 557, 317 ], [ 561, 301, 598, 317 ], [ 856, 301, 889, 317 ], [ 893, 301, 923, 317 ], [ 90, 306, 157, 318 ], [ 178, 315, 224, 330 ], [ 227, 315, 252, 330 ], [ 278, 315, 333, 330 ], [ 390, 315, 442, 330 ], [ 445, 315, 467, 330 ], [ 856, 315, 877, 330 ], [ 881, 315, 918, 330 ], [ 90, 321, 158, 333 ], [ 178, 328, 204, 343 ], [ 208, 328, 258, 343 ], [ 278, 328, 324, 343 ], [ 328, 328, 375, 343 ], [ 390, 328, 437, 343 ], [ 441, 328, 492, 343 ], [ 90, 336, 114, 348 ], [ 178, 341, 228, 356 ], [ 231, 341, 253, 356 ], [ 278, 341, 332, 356 ], [ 336, 341, 350, 356 ], [ 390, 341, 412, 356 ], [ 416, 341, 429, 356 ], [ 433, 341, 478, 356 ], [ 90, 351, 160, 363 ], [ 178, 354, 217, 369 ], [ 278, 354, 323, 369 ], [ 326, 354, 363, 369 ], [ 390, 354, 427, 369 ], [ 431, 354, 488, 369 ], [ 90, 366, 150, 378 ], [ 178, 367, 245, 382 ], [ 278, 367, 336, 382 ], [ 339, 367, 381, 382 ], [ 390, 367, 432, 382 ], [ 178, 380, 215, 395 ], [ 218, 380, 261, 395 ], [ 390, 380, 401, 395 ], [ 405, 380, 457, 395 ], [ 178, 393, 224, 408 ], [ 228, 393, 250, 408 ], [ 390, 393, 439, 408 ], [ 443, 393, 467, 408 ], [ 178, 406, 208, 421 ], [ 212, 406, 262, 421 ], [ 390, 406, 435, 421 ], [ 439, 406, 464, 421 ], [ 178, 419, 199, 434 ], [ 203, 419, 238, 434 ], [ 390, 419, 431, 434 ], [ 178, 432, 189, 447 ], [ 193, 432, 216, 447 ], [ 219, 432, 231, 447 ], [ 235, 432, 267, 447 ], [ 390, 432, 459, 447 ], [ 178, 445, 208, 460 ], [ 390, 445, 489, 460 ], [ 178, 458, 252, 474 ], [ 390, 458, 427, 474 ], [ 430, 458, 481, 474 ], [ 66, 460, 81, 472 ], [ 178, 471, 199, 487 ], [ 203, 471, 248, 487 ], [ 390, 471, 415, 487 ], [ 418, 471, 493, 487 ], [ 178, 485, 224, 500 ], [ 390, 485, 415, 500 ], [ 178, 498, 189, 513 ], [ 193, 498, 216, 513 ], [ 219, 498, 231, 513 ], [ 235, 498, 263, 513 ], [ 390, 498, 469, 513 ], [ 178, 511, 224, 526 ], [ 228, 511, 249, 526 ], [ 390, 511, 444, 526 ], [ 448, 511, 489, 526 ], [ 178, 524, 208, 539 ], [ 390, 524, 459, 539 ], [ 463, 524, 487, 539 ], [ 178, 537, 246, 552 ], [ 390, 537, 430, 552 ], [ 434, 537, 455, 552 ], [ 178, 550, 189, 565 ], [ 193, 550, 216, 565 ], [ 219, 550, 231, 565 ], [ 178, 563, 234, 578 ], [ 238, 563, 263, 578 ], [ 178, 576, 222, 591 ], [ 226, 576, 247, 591 ], [ 178, 589, 225, 604 ], [ 178, 602, 189, 617 ], [ 193, 602, 230, 617 ], [ 234, 602, 258, 617 ], [ 178, 615, 207, 630 ], [ 210, 615, 232, 630 ], [ 178, 628, 241, 643 ], [ 178, 641, 222, 657 ], [ 178, 660, 189, 675 ], [ 193, 660, 235, 675 ], [ 239, 660, 263, 675 ], [ 278, 660, 289, 675 ], [ 293, 660, 318, 675 ], [ 321, 660, 371, 675 ], [ 390, 660, 401, 675 ], [ 405, 660, 433, 675 ], [ 502, 660, 512, 675 ], [ 614, 660, 625, 675 ], [ 628, 660, 672, 675 ], [ 676, 660, 697, 675 ], [ 725, 660, 735, 675 ], [ 856, 660, 867, 675 ], [ 871, 660, 911, 675 ], [ 178, 673, 207, 688 ], [ 210, 673, 245, 688 ], [ 278, 673, 326, 688 ], [ 330, 673, 382, 688 ], [ 390, 673, 450, 688 ], [ 454, 673, 482, 688 ], [ 614, 673, 701, 688 ], [ 856, 673, 893, 688 ], [ 897, 673, 914, 688 ], [ 178, 686, 205, 701 ], [ 209, 686, 256, 701 ], [ 278, 686, 290, 701 ], [ 293, 686, 334, 701 ], [ 390, 686, 419, 701 ], [ 423, 686, 460, 701 ], [ 614, 686, 628, 701 ], [ 632, 686, 701, 701 ], [ 856, 686, 894, 701 ], [ 178, 699, 203, 714 ], [ 207, 699, 262, 714 ], [ 278, 699, 354, 714 ], [ 390, 699, 450, 714 ], [ 66, 701, 81, 713 ], [ 90, 707, 159, 720 ], [ 178, 712, 228, 727 ], [ 390, 712, 401, 727 ], [ 405, 712, 464, 727 ], [ 90, 722, 102, 735 ], [ 106, 722, 145, 735 ], [ 178, 726, 222, 741 ], [ 226, 726, 237, 741 ], [ 241, 726, 265, 741 ], [ 390, 726, 428, 741 ], [ 432, 726, 478, 741 ], [ 90, 737, 126, 750 ], [ 178, 739, 225, 754 ], [ 228, 739, 261, 754 ], [ 390, 739, 450, 754 ], [ 178, 752, 193, 767 ], [ 197, 752, 243, 767 ], [ 164, 783, 200, 802 ], [ 204, 783, 249, 802 ], [ 253, 783, 312, 802 ], [ 317, 783, 455, 802 ], [ 117, 808, 136, 822 ], [ 140, 808, 180, 822 ], [ 184, 808, 197, 822 ], [ 201, 808, 289, 822 ], [ 293, 808, 319, 822 ], [ 324, 808, 376, 822 ], [ 380, 808, 395, 822 ], [ 399, 808, 424, 822 ], [ 428, 808, 479, 822 ], [ 147, 840, 176, 854 ], [ 180, 840, 233, 854 ], [ 237, 840, 248, 854 ], [ 252, 840, 281, 854 ], [ 285, 840, 357, 854 ], [ 361, 840, 379, 854 ], [ 383, 840, 446, 854 ], [ 450, 840, 490, 854 ], [ 494, 840, 556, 854 ], [ 560, 840, 678, 854 ], [ 682, 840, 714, 854 ], [ 147, 859, 196, 873 ], [ 200, 859, 235, 873 ], [ 239, 859, 302, 873 ], [ 306, 859, 317, 873 ], [ 322, 859, 330, 873 ], [ 334, 859, 355, 873 ], [ 360, 859, 375, 873 ], [ 379, 859, 455, 873 ], [ 459, 859, 551, 873 ], [ 555, 859, 642, 873 ] ]
[ [ 178, 139, 211, 154 ], [ 215, 139, 236, 154 ], [ 178, 152, 240, 167 ], [ 178, 165, 224, 180 ], [ 228, 165, 265, 180 ], [ 178, 178, 228, 193 ], [ 178, 191, 234, 207 ], [ 178, 204, 220, 220 ], [ 224, 204, 245, 220 ], [ 178, 217, 230, 233 ], [ 234, 217, 269, 233 ], [ 178, 231, 189, 246 ], [ 193, 231, 216, 246 ], [ 219, 231, 262, 246 ], [ 178, 244, 202, 259 ], [ 206, 244, 218, 259 ], [ 221, 244, 254, 259 ], [ 178, 257, 207, 272 ], [ 178, 270, 240, 285 ], [ 66, 460, 81, 472 ], [ 90, 306, 157, 318 ], [ 90, 321, 158, 333 ], [ 90, 336, 114, 348 ], [ 90, 351, 160, 363 ], [ 90, 366, 150, 378 ], [ 178, 288, 189, 304 ], [ 178, 301, 263, 317 ], [ 178, 315, 224, 330 ], [ 227, 315, 252, 330 ], [ 178, 328, 204, 343 ], [ 208, 328, 258, 343 ], [ 178, 341, 228, 356 ], [ 231, 341, 253, 356 ], [ 178, 354, 217, 369 ], [ 178, 367, 245, 382 ], [ 178, 380, 215, 395 ], [ 218, 380, 261, 395 ], [ 178, 393, 224, 408 ], [ 228, 393, 250, 408 ], [ 178, 406, 208, 421 ], [ 212, 406, 262, 421 ], [ 178, 419, 199, 434 ], [ 203, 419, 238, 434 ], [ 178, 432, 189, 447 ], [ 193, 432, 216, 447 ], [ 219, 432, 231, 447 ], [ 235, 432, 267, 447 ], [ 178, 445, 208, 460 ], [ 178, 458, 252, 474 ], [ 178, 471, 199, 487 ], [ 203, 471, 248, 487 ], [ 178, 485, 224, 500 ], [ 178, 498, 189, 513 ], [ 193, 498, 216, 513 ], [ 219, 498, 231, 513 ], [ 235, 498, 263, 513 ], [ 178, 511, 224, 526 ], [ 228, 511, 249, 526 ], [ 178, 524, 208, 539 ], [ 178, 537, 246, 552 ], [ 178, 550, 189, 565 ], [ 193, 550, 216, 565 ], [ 219, 550, 231, 565 ], [ 178, 563, 234, 578 ], [ 238, 563, 263, 578 ], [ 178, 576, 222, 591 ], [ 226, 576, 247, 591 ], [ 178, 589, 225, 604 ], [ 178, 602, 189, 617 ], [ 193, 602, 230, 617 ], [ 234, 602, 258, 617 ], [ 178, 615, 207, 630 ], [ 210, 615, 232, 630 ], [ 178, 628, 241, 643 ], [ 178, 641, 222, 657 ], [ 278, 288, 289, 304 ], [ 293, 288, 339, 304 ], [ 278, 301, 335, 317 ], [ 278, 315, 333, 330 ], [ 278, 328, 324, 343 ], [ 328, 328, 375, 343 ], [ 278, 341, 332, 356 ], [ 336, 341, 350, 356 ], [ 278, 354, 323, 369 ], [ 326, 354, 363, 369 ], [ 278, 367, 336, 382 ], [ 339, 367, 381, 382 ], [ 390, 288, 401, 304 ], [ 405, 288, 447, 304 ], [ 390, 301, 440, 317 ], [ 444, 301, 466, 317 ], [ 390, 315, 442, 330 ], [ 445, 315, 467, 330 ], [ 390, 328, 437, 343 ], [ 441, 328, 492, 343 ], [ 390, 341, 412, 356 ], [ 416, 341, 429, 356 ], [ 433, 341, 478, 356 ], [ 390, 354, 427, 369 ], [ 431, 354, 488, 369 ], [ 390, 367, 432, 382 ], [ 390, 380, 401, 395 ], [ 405, 380, 457, 395 ], [ 390, 393, 439, 408 ], [ 443, 393, 467, 408 ], [ 390, 406, 435, 421 ], [ 439, 406, 464, 421 ], [ 390, 419, 431, 434 ], [ 390, 432, 459, 447 ], [ 390, 445, 489, 460 ], [ 390, 458, 427, 474 ], [ 430, 458, 481, 474 ], [ 390, 471, 415, 487 ], [ 418, 471, 493, 487 ], [ 390, 485, 415, 500 ], [ 390, 498, 469, 513 ], [ 390, 511, 444, 526 ], [ 448, 511, 489, 526 ], [ 390, 524, 459, 539 ], [ 463, 524, 487, 539 ], [ 390, 537, 430, 552 ], [ 434, 537, 455, 552 ], [ 502, 288, 513, 304 ], [ 517, 288, 553, 304 ], [ 556, 288, 590, 304 ], [ 502, 301, 532, 317 ], [ 536, 301, 557, 317 ], [ 561, 301, 598, 317 ], [ 614, 288, 623, 304 ], [ 725, 288, 735, 304 ], [ 856, 288, 867, 304 ], [ 871, 288, 907, 304 ], [ 856, 301, 889, 317 ], [ 893, 301, 923, 317 ], [ 856, 315, 877, 330 ], [ 881, 315, 918, 330 ], [ 66, 701, 81, 713 ], [ 90, 707, 159, 720 ], [ 90, 722, 102, 735 ], [ 106, 722, 145, 735 ], [ 90, 737, 126, 750 ], [ 178, 660, 189, 675 ], [ 193, 660, 235, 675 ], [ 239, 660, 263, 675 ], [ 178, 673, 207, 688 ], [ 210, 673, 245, 688 ], [ 178, 686, 205, 701 ], [ 209, 686, 256, 701 ], [ 178, 699, 203, 714 ], [ 207, 699, 262, 714 ], [ 178, 712, 228, 727 ], [ 178, 726, 222, 741 ], [ 226, 726, 237, 741 ], [ 241, 726, 265, 741 ], [ 178, 739, 225, 754 ], [ 228, 739, 261, 754 ], [ 178, 752, 193, 767 ], [ 197, 752, 243, 767 ], [ 278, 660, 289, 675 ], [ 293, 660, 318, 675 ], [ 321, 660, 371, 675 ], [ 278, 673, 326, 688 ], [ 330, 673, 382, 688 ], [ 278, 686, 290, 701 ], [ 293, 686, 334, 701 ], [ 278, 699, 354, 714 ], [ 390, 660, 401, 675 ], [ 405, 660, 433, 675 ], [ 390, 673, 450, 688 ], [ 454, 673, 482, 688 ], [ 390, 686, 419, 701 ], [ 423, 686, 460, 701 ], [ 390, 699, 450, 714 ], [ 390, 712, 401, 727 ], [ 405, 712, 464, 727 ], [ 390, 726, 428, 741 ], [ 432, 726, 478, 741 ], [ 390, 739, 450, 754 ], [ 502, 660, 512, 675 ], [ 614, 660, 625, 675 ], [ 628, 660, 672, 675 ], [ 676, 660, 697, 675 ], [ 614, 673, 701, 688 ], [ 614, 686, 628, 701 ], [ 632, 686, 701, 701 ], [ 725, 660, 735, 675 ], [ 856, 660, 867, 675 ], [ 871, 660, 911, 675 ], [ 856, 673, 893, 688 ], [ 897, 673, 914, 688 ], [ 856, 686, 894, 701 ], [ 164, 783, 200, 802 ], [ 204, 783, 249, 802 ], [ 253, 783, 312, 802 ], [ 317, 783, 455, 802 ], [ 117, 808, 136, 822 ], [ 140, 808, 180, 822 ], [ 184, 808, 197, 822 ], [ 201, 808, 289, 822 ], [ 293, 808, 319, 822 ], [ 324, 808, 376, 822 ], [ 380, 808, 395, 822 ], [ 399, 808, 424, 822 ], [ 428, 808, 479, 822 ], [ 147, 840, 176, 854 ], [ 180, 840, 233, 854 ], [ 237, 840, 248, 854 ], [ 252, 840, 281, 854 ], [ 285, 840, 357, 854 ], [ 361, 840, 379, 854 ], [ 383, 840, 446, 854 ], [ 450, 840, 490, 854 ], [ 494, 840, 556, 854 ], [ 560, 840, 678, 854 ], [ 682, 840, 714, 854 ], [ 147, 859, 196, 873 ], [ 200, 859, 235, 873 ], [ 239, 859, 302, 873 ], [ 306, 859, 317, 873 ], [ 322, 859, 330, 873 ], [ 334, 859, 355, 873 ], [ 360, 859, 375, 873 ], [ 379, 859, 455, 873 ], [ 459, 859, 551, 873 ], [ 555, 859, 642, 873 ] ]
Data Analytics Object identification (type, size, color) and tracking. Pattern analysis of object (did the truck observed every Weds. afternoon take a different route today or is there a standard route this person takes every day). Crowd behavior/dynamics (is there a small group attempting to incite a riot. Is this person out of place in the crowd or behaving differently? Economic activity is the line at the bread store, the butcher, or the ice cream store, are more trucks traveling north with goods than trucks going south Has activity at or the size of stores in this market place increased or decreased over the past year. Fusion of data with other data to improve quality and confidence. Big Data Specific Processing the volume of data in NRT to support alerting and situational awareness. Challenges (Gaps) Big Data Specific Getting data from mobile sensor to processing Challenges in Mobility Security and Privacy Significant – sources and methods cannot be compromised the enemy should not be Requirements able to know what we see. Highlight issues for Typically this type of processing fits well into massively parallel computing such as generalizing this use provided by GPUs. Typical problem is integration of this processing into a larger cluster case (e.g. for ref. capable of processing data from several sensors in parallel and in NRT. architecture) Transmission of data from sensor to system is also a large challenge. More Information Motion Imagery Standards - (URLs) Some of many papers on object identity/tracking: General Articles on the need: Defense> Use Case 15: Intelligence Data Processing and Analysis Use Case Title Intelligence Data Processing and Analysis Vertical (area) Defense (Intelligence) Author/ Company/Email David Boyd/Data Actors/Stakeholders Senior Civilian/Military Leadership and their roles and Field Commanders responsibilities Intelligence Analysts Warfighters
Data Analytics Object identification (type, size, color) and tracking. Pattern analysis of object (did the truck observed every Weds. afternoon take a different route today or is there a standard route this person takes every day). Crowd behavior/dynamics (is there a small group attempting to incite a riot. Is this person out of place in the crowd or behaving differently? Economic activity is the line at the bread store, the butcher, or the ice cream store, are more trucks traveling north with goods than trucks going south Has activity at or the size of stores in this market place increased or decreased over the past year. Fusion of data with other data to improve quality and confidence. Big Data Specific Challenges (Gaps) Processing the volume of data in NRT to support alerting and situational awareness. Big Data Specific Challenges in Mobility Getting data from mobile sensor to processing Security and Privacy Requirements Significant – sources and methods cannot be compromised the enemy should not be able to know what we see. Highlight issues for generalizing this use case (e.g. for ref. architecture) Typically this type of processing fits well into massively parallel computing such as provided by GPUs. Typical problem is integration of this processing into a larger cluster capable of processing data from several sensors in parallel and in NRT. Transmission of data from sensor to system is also a large challenge. More Information (URLs) Motion Imagery Standards - Some of many papers on object identity/tracking: General Articles on the need: Defense> Use Case 15: Intelligence Data Processing and Analysis Use Case Title Intelligence Data Processing and Analysis Vertical (area) Defense (Intelligence) Author/ Company/Email David Boyd/Data Actors/Stakeholders and their roles and responsibilities Senior Civilian/Military Leadership Field Commanders Intelligence Analysts Warfighters
0.883826
[ 0, 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, 133, 134, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 135, 136, 137, 145, 146, 147, 138, 139, 140, 141, 142, 143, 144, 148, 149, 150, 164, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 187, 188, 189, 204, 205, 206, 207, 220, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 239, 235, 236, 237, 238, 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, 281, 282, 283, 284, 287, 278, 279, 280, 285, 286, 288, 289, 290 ]
M0363_v1_4695311424.docx
task-1430-762
77
[ [ 379, 136, 411, 149 ], [ 414, 136, 476, 149 ], [ 523, 136, 567, 149 ], [ 571, 136, 658, 149 ], [ 662, 136, 701, 149 ], [ 705, 136, 733, 149 ], [ 737, 136, 776, 149 ], [ 779, 136, 804, 149 ], [ 808, 136, 866, 149 ], [ 523, 151, 573, 164 ], [ 576, 151, 628, 164 ], [ 632, 151, 646, 164 ], [ 649, 151, 691, 164 ], [ 695, 151, 720, 164 ], [ 724, 151, 747, 164 ], [ 750, 151, 784, 164 ], [ 788, 151, 849, 164 ], [ 523, 167, 560, 179 ], [ 564, 167, 605, 179 ], [ 609, 167, 675, 179 ], [ 679, 167, 708, 179 ], [ 712, 167, 720, 179 ], [ 723, 167, 781, 179 ], [ 785, 167, 822, 179 ], [ 826, 167, 863, 179 ], [ 867, 167, 882, 179 ], [ 523, 182, 533, 195 ], [ 537, 182, 573, 195 ], [ 576, 182, 584, 195 ], [ 588, 182, 647, 195 ], [ 651, 182, 687, 195 ], [ 691, 182, 715, 195 ], [ 719, 182, 765, 195 ], [ 769, 182, 804, 195 ], [ 808, 182, 844, 195 ], [ 848, 182, 881, 195 ], [ 523, 198, 566, 210 ], [ 570, 198, 697, 210 ], [ 701, 198, 716, 210 ], [ 720, 198, 756, 210 ], [ 760, 198, 767, 210 ], [ 771, 198, 806, 210 ], [ 810, 198, 849, 210 ], [ 523, 213, 597, 226 ], [ 601, 213, 615, 226 ], [ 619, 213, 655, 226 ], [ 659, 213, 667, 226 ], [ 670, 213, 698, 226 ], [ 702, 213, 712, 226 ], [ 716, 213, 740, 226 ], [ 744, 213, 790, 226 ], [ 794, 213, 816, 226 ], [ 820, 213, 834, 226 ], [ 837, 213, 872, 226 ], [ 523, 228, 535, 241 ], [ 539, 228, 561, 241 ], [ 565, 228, 606, 241 ], [ 610, 228, 625, 241 ], [ 628, 228, 689, 241 ], [ 692, 228, 769, 241 ], [ 523, 244, 587, 256 ], [ 591, 244, 639, 256 ], [ 552, 259, 562, 272 ], [ 565, 259, 587, 272 ], [ 591, 259, 615, 272 ], [ 619, 259, 632, 272 ], [ 636, 259, 658, 272 ], [ 662, 259, 701, 272 ], [ 704, 259, 743, 272 ], [ 747, 259, 769, 272 ], [ 773, 259, 829, 272 ], [ 832, 259, 847, 272 ], [ 850, 259, 873, 272 ], [ 552, 275, 570, 287 ], [ 574, 275, 616, 287 ], [ 619, 275, 658, 287 ], [ 552, 290, 573, 303 ], [ 577, 290, 612, 303 ], [ 616, 290, 657, 303 ], [ 660, 290, 718, 303 ], [ 722, 290, 759, 303 ], [ 763, 290, 792, 303 ], [ 796, 290, 836, 303 ], [ 840, 290, 870, 303 ], [ 552, 306, 592, 318 ], [ 596, 306, 632, 318 ], [ 636, 306, 673, 318 ], [ 552, 321, 576, 334 ], [ 580, 321, 627, 334 ], [ 631, 321, 644, 334 ], [ 648, 321, 663, 334 ], [ 666, 321, 688, 334 ], [ 692, 321, 717, 334 ], [ 720, 321, 734, 334 ], [ 738, 321, 778, 334 ], [ 782, 321, 794, 334 ], [ 798, 321, 822, 334 ], [ 826, 321, 874, 334 ], [ 552, 336, 587, 349 ], [ 590, 336, 654, 349 ], [ 658, 336, 672, 349 ], [ 676, 336, 744, 349 ], [ 748, 336, 778, 349 ], [ 782, 336, 804, 349 ], [ 808, 336, 836, 349 ], [ 839, 336, 873, 349 ], [ 523, 352, 566, 364 ], [ 570, 352, 584, 364 ], [ 587, 352, 617, 364 ], [ 621, 352, 650, 364 ], [ 654, 352, 691, 364 ], [ 694, 352, 724, 364 ], [ 728, 352, 742, 364 ], [ 746, 352, 801, 364 ], [ 804, 352, 850, 364 ], [ 854, 352, 879, 364 ], [ 523, 367, 600, 380 ], [ 169, 383, 190, 396 ], [ 194, 383, 226, 396 ], [ 230, 383, 281, 396 ], [ 299, 383, 369, 396 ], [ 373, 383, 395, 396 ], [ 399, 383, 448, 396 ], [ 452, 383, 466, 396 ], [ 469, 383, 499, 396 ], [ 503, 383, 515, 396 ], [ 519, 383, 546, 396 ], [ 550, 383, 564, 396 ], [ 568, 383, 620, 396 ], [ 624, 383, 674, 396 ], [ 678, 383, 703, 396 ], [ 707, 383, 777, 396 ], [ 781, 383, 855, 396 ], [ 161, 399, 233, 411 ], [ 237, 399, 281, 411 ], [ 169, 415, 190, 427 ], [ 194, 415, 226, 427 ], [ 230, 415, 281, 427 ], [ 299, 415, 348, 427 ], [ 352, 415, 381, 427 ], [ 385, 415, 417, 427 ], [ 421, 415, 467, 427 ], [ 471, 415, 515, 427 ], [ 518, 415, 532, 427 ], [ 536, 415, 607, 427 ], [ 131, 430, 203, 443 ], [ 207, 430, 220, 443 ], [ 224, 430, 281, 443 ], [ 144, 446, 199, 459 ], [ 203, 446, 228, 459 ], [ 232, 446, 281, 459 ], [ 299, 446, 367, 459 ], [ 371, 446, 379, 459 ], [ 383, 446, 434, 459 ], [ 437, 446, 462, 459 ], [ 466, 446, 525, 459 ], [ 529, 446, 575, 459 ], [ 579, 446, 595, 459 ], [ 599, 446, 690, 459 ], [ 694, 446, 716, 459 ], [ 720, 446, 765, 459 ], [ 769, 446, 813, 459 ], [ 817, 446, 840, 459 ], [ 844, 446, 860, 459 ], [ 186, 462, 281, 474 ], [ 299, 462, 327, 474 ], [ 331, 462, 345, 474 ], [ 349, 462, 385, 474 ], [ 389, 462, 422, 474 ], [ 426, 462, 446, 474 ], [ 449, 462, 476, 474 ], [ 152, 478, 213, 490 ], [ 217, 478, 258, 490 ], [ 261, 478, 281, 490 ], [ 299, 478, 356, 490 ], [ 360, 478, 384, 490 ], [ 388, 478, 417, 490 ], [ 421, 478, 435, 490 ], [ 438, 478, 509, 490 ], [ 513, 478, 533, 490 ], [ 537, 478, 564, 490 ], [ 568, 478, 594, 490 ], [ 598, 478, 662, 490 ], [ 666, 478, 715, 490 ], [ 719, 478, 790, 490 ], [ 794, 478, 824, 490 ], [ 828, 478, 842, 490 ], [ 143, 493, 225, 506 ], [ 229, 493, 254, 506 ], [ 258, 493, 281, 506 ], [ 299, 493, 358, 506 ], [ 362, 493, 378, 506 ], [ 382, 493, 421, 506 ], [ 425, 493, 471, 506 ], [ 475, 493, 531, 506 ], [ 535, 493, 545, 506 ], [ 549, 493, 622, 506 ], [ 626, 493, 640, 506 ], [ 643, 493, 668, 506 ], [ 671, 493, 742, 506 ], [ 746, 493, 772, 506 ], [ 776, 493, 784, 506 ], [ 788, 493, 826, 506 ], [ 830, 493, 875, 506 ], [ 167, 508, 197, 521 ], [ 201, 508, 230, 521 ], [ 234, 508, 254, 521 ], [ 258, 508, 281, 521 ], [ 299, 508, 350, 521 ], [ 354, 508, 368, 521 ], [ 371, 508, 442, 521 ], [ 446, 508, 475, 521 ], [ 479, 508, 512, 521 ], [ 515, 508, 562, 521 ], [ 566, 508, 617, 521 ], [ 620, 508, 632, 521 ], [ 636, 508, 685, 521 ], [ 689, 508, 714, 521 ], [ 718, 508, 730, 521 ], [ 734, 508, 765, 521 ], [ 193, 524, 281, 537 ], [ 299, 532, 385, 544 ], [ 389, 532, 403, 544 ], [ 407, 532, 436, 544 ], [ 440, 532, 472, 544 ], [ 476, 532, 520, 544 ], [ 524, 532, 538, 544 ], [ 542, 532, 588, 544 ], [ 592, 532, 602, 544 ], [ 606, 532, 632, 544 ], [ 636, 532, 644, 544 ], [ 648, 532, 681, 544 ], [ 684, 532, 752, 544 ], [ 159, 548, 196, 560 ], [ 200, 548, 281, 560 ], [ 299, 548, 348, 560 ], [ 352, 548, 405, 560 ], [ 409, 548, 475, 560 ], [ 479, 548, 484, 560 ], [ 238, 563, 281, 576 ], [ 299, 563, 336, 576 ], [ 340, 563, 353, 576 ], [ 357, 563, 394, 576 ], [ 398, 563, 443, 576 ], [ 446, 563, 464, 576 ], [ 467, 563, 509, 576 ], [ 513, 563, 628, 576 ], [ 299, 609, 351, 622 ], [ 355, 609, 404, 622 ], [ 408, 609, 425, 622 ], [ 429, 609, 451, 622 ], [ 455, 609, 493, 622 ], [ 117, 714, 205, 735 ], [ 211, 714, 246, 735 ], [ 252, 714, 299, 735 ], [ 304, 714, 333, 735 ], [ 338, 714, 446, 735 ], [ 452, 714, 494, 735 ], [ 499, 714, 605, 735 ], [ 611, 714, 646, 735 ], [ 651, 714, 731, 735 ], [ 187, 745, 212, 757 ], [ 216, 745, 247, 757 ], [ 251, 745, 281, 757 ], [ 299, 745, 376, 757 ], [ 380, 745, 411, 757 ], [ 414, 745, 485, 757 ], [ 489, 745, 514, 757 ], [ 518, 745, 571, 757 ], [ 185, 761, 237, 773 ], [ 241, 761, 281, 773 ], [ 299, 761, 353, 773 ], [ 357, 761, 444, 773 ], [ 114, 777, 169, 789 ], [ 173, 777, 281, 789 ], [ 299, 777, 336, 789 ], [ 340, 777, 411, 789 ], [ 142, 793, 281, 805 ], [ 299, 793, 341, 805 ], [ 345, 793, 450, 805 ], [ 454, 793, 526, 805 ], [ 153, 808, 179, 821 ], [ 182, 808, 215, 821 ], [ 219, 808, 252, 821 ], [ 256, 808, 281, 821 ], [ 299, 808, 330, 821 ], [ 334, 808, 423, 821 ], [ 179, 824, 281, 836 ], [ 299, 824, 376, 836 ], [ 380, 824, 435, 836 ], [ 299, 839, 378, 852 ] ]
[ [ 379, 136, 411, 149 ], [ 414, 136, 476, 149 ], [ 523, 136, 567, 149 ], [ 571, 136, 658, 149 ], [ 662, 136, 701, 149 ], [ 705, 136, 733, 149 ], [ 737, 136, 776, 149 ], [ 779, 136, 804, 149 ], [ 808, 136, 866, 149 ], [ 523, 151, 573, 164 ], [ 576, 151, 628, 164 ], [ 632, 151, 646, 164 ], [ 649, 151, 691, 164 ], [ 695, 151, 720, 164 ], [ 724, 151, 747, 164 ], [ 750, 151, 784, 164 ], [ 788, 151, 849, 164 ], [ 523, 167, 560, 179 ], [ 564, 167, 605, 179 ], [ 609, 167, 675, 179 ], [ 679, 167, 708, 179 ], [ 712, 167, 720, 179 ], [ 723, 167, 781, 179 ], [ 785, 167, 822, 179 ], [ 826, 167, 863, 179 ], [ 867, 167, 882, 179 ], [ 523, 182, 533, 195 ], [ 537, 182, 573, 195 ], [ 576, 182, 584, 195 ], [ 588, 182, 647, 195 ], [ 651, 182, 687, 195 ], [ 691, 182, 715, 195 ], [ 719, 182, 765, 195 ], [ 769, 182, 804, 195 ], [ 808, 182, 844, 195 ], [ 848, 182, 881, 195 ], [ 523, 198, 566, 210 ], [ 570, 198, 697, 210 ], [ 701, 198, 716, 210 ], [ 720, 198, 756, 210 ], [ 760, 198, 767, 210 ], [ 771, 198, 806, 210 ], [ 810, 198, 849, 210 ], [ 523, 213, 597, 226 ], [ 601, 213, 615, 226 ], [ 619, 213, 655, 226 ], [ 659, 213, 667, 226 ], [ 670, 213, 698, 226 ], [ 702, 213, 712, 226 ], [ 716, 213, 740, 226 ], [ 744, 213, 790, 226 ], [ 794, 213, 816, 226 ], [ 820, 213, 834, 226 ], [ 837, 213, 872, 226 ], [ 523, 228, 535, 241 ], [ 539, 228, 561, 241 ], [ 565, 228, 606, 241 ], [ 610, 228, 625, 241 ], [ 628, 228, 689, 241 ], [ 692, 228, 769, 241 ], [ 523, 244, 587, 256 ], [ 591, 244, 639, 256 ], [ 552, 259, 562, 272 ], [ 565, 259, 587, 272 ], [ 591, 259, 615, 272 ], [ 619, 259, 632, 272 ], [ 636, 259, 658, 272 ], [ 662, 259, 701, 272 ], [ 704, 259, 743, 272 ], [ 747, 259, 769, 272 ], [ 773, 259, 829, 272 ], [ 832, 259, 847, 272 ], [ 850, 259, 873, 272 ], [ 552, 275, 570, 287 ], [ 574, 275, 616, 287 ], [ 619, 275, 658, 287 ], [ 552, 290, 573, 303 ], [ 577, 290, 612, 303 ], [ 616, 290, 657, 303 ], [ 660, 290, 718, 303 ], [ 722, 290, 759, 303 ], [ 763, 290, 792, 303 ], [ 796, 290, 836, 303 ], [ 840, 290, 870, 303 ], [ 552, 306, 592, 318 ], [ 596, 306, 632, 318 ], [ 636, 306, 673, 318 ], [ 552, 321, 576, 334 ], [ 580, 321, 627, 334 ], [ 631, 321, 644, 334 ], [ 648, 321, 663, 334 ], [ 666, 321, 688, 334 ], [ 692, 321, 717, 334 ], [ 720, 321, 734, 334 ], [ 738, 321, 778, 334 ], [ 782, 321, 794, 334 ], [ 798, 321, 822, 334 ], [ 826, 321, 874, 334 ], [ 552, 336, 587, 349 ], [ 590, 336, 654, 349 ], [ 658, 336, 672, 349 ], [ 676, 336, 744, 349 ], [ 748, 336, 778, 349 ], [ 782, 336, 804, 349 ], [ 808, 336, 836, 349 ], [ 839, 336, 873, 349 ], [ 523, 352, 566, 364 ], [ 570, 352, 584, 364 ], [ 587, 352, 617, 364 ], [ 621, 352, 650, 364 ], [ 654, 352, 691, 364 ], [ 694, 352, 724, 364 ], [ 728, 352, 742, 364 ], [ 746, 352, 801, 364 ], [ 804, 352, 850, 364 ], [ 854, 352, 879, 364 ], [ 523, 367, 600, 380 ], [ 169, 383, 190, 396 ], [ 194, 383, 226, 396 ], [ 230, 383, 281, 396 ], [ 161, 399, 233, 411 ], [ 237, 399, 281, 411 ], [ 299, 383, 369, 396 ], [ 373, 383, 395, 396 ], [ 399, 383, 448, 396 ], [ 452, 383, 466, 396 ], [ 469, 383, 499, 396 ], [ 503, 383, 515, 396 ], [ 519, 383, 546, 396 ], [ 550, 383, 564, 396 ], [ 568, 383, 620, 396 ], [ 624, 383, 674, 396 ], [ 678, 383, 703, 396 ], [ 707, 383, 777, 396 ], [ 781, 383, 855, 396 ], [ 169, 415, 190, 427 ], [ 194, 415, 226, 427 ], [ 230, 415, 281, 427 ], [ 131, 430, 203, 443 ], [ 207, 430, 220, 443 ], [ 224, 430, 281, 443 ], [ 299, 415, 348, 427 ], [ 352, 415, 381, 427 ], [ 385, 415, 417, 427 ], [ 421, 415, 467, 427 ], [ 471, 415, 515, 427 ], [ 518, 415, 532, 427 ], [ 536, 415, 607, 427 ], [ 144, 446, 199, 459 ], [ 203, 446, 228, 459 ], [ 232, 446, 281, 459 ], [ 186, 462, 281, 474 ], [ 299, 446, 367, 459 ], [ 371, 446, 379, 459 ], [ 383, 446, 434, 459 ], [ 437, 446, 462, 459 ], [ 466, 446, 525, 459 ], [ 529, 446, 575, 459 ], [ 579, 446, 595, 459 ], [ 599, 446, 690, 459 ], [ 694, 446, 716, 459 ], [ 720, 446, 765, 459 ], [ 769, 446, 813, 459 ], [ 817, 446, 840, 459 ], [ 844, 446, 860, 459 ], [ 299, 462, 327, 474 ], [ 331, 462, 345, 474 ], [ 349, 462, 385, 474 ], [ 389, 462, 422, 474 ], [ 426, 462, 446, 474 ], [ 449, 462, 476, 474 ], [ 152, 478, 213, 490 ], [ 217, 478, 258, 490 ], [ 261, 478, 281, 490 ], [ 143, 493, 225, 506 ], [ 229, 493, 254, 506 ], [ 258, 493, 281, 506 ], [ 167, 508, 197, 521 ], [ 201, 508, 230, 521 ], [ 234, 508, 254, 521 ], [ 258, 508, 281, 521 ], [ 193, 524, 281, 537 ], [ 299, 478, 356, 490 ], [ 360, 478, 384, 490 ], [ 388, 478, 417, 490 ], [ 421, 478, 435, 490 ], [ 438, 478, 509, 490 ], [ 513, 478, 533, 490 ], [ 537, 478, 564, 490 ], [ 568, 478, 594, 490 ], [ 598, 478, 662, 490 ], [ 666, 478, 715, 490 ], [ 719, 478, 790, 490 ], [ 794, 478, 824, 490 ], [ 828, 478, 842, 490 ], [ 299, 493, 358, 506 ], [ 362, 493, 378, 506 ], [ 382, 493, 421, 506 ], [ 425, 493, 471, 506 ], [ 475, 493, 531, 506 ], [ 535, 493, 545, 506 ], [ 549, 493, 622, 506 ], [ 626, 493, 640, 506 ], [ 643, 493, 668, 506 ], [ 671, 493, 742, 506 ], [ 746, 493, 772, 506 ], [ 776, 493, 784, 506 ], [ 788, 493, 826, 506 ], [ 830, 493, 875, 506 ], [ 299, 508, 350, 521 ], [ 354, 508, 368, 521 ], [ 371, 508, 442, 521 ], [ 446, 508, 475, 521 ], [ 479, 508, 512, 521 ], [ 515, 508, 562, 521 ], [ 566, 508, 617, 521 ], [ 620, 508, 632, 521 ], [ 636, 508, 685, 521 ], [ 689, 508, 714, 521 ], [ 718, 508, 730, 521 ], [ 734, 508, 765, 521 ], [ 299, 532, 385, 544 ], [ 389, 532, 403, 544 ], [ 407, 532, 436, 544 ], [ 440, 532, 472, 544 ], [ 476, 532, 520, 544 ], [ 524, 532, 538, 544 ], [ 542, 532, 588, 544 ], [ 592, 532, 602, 544 ], [ 606, 532, 632, 544 ], [ 636, 532, 644, 544 ], [ 648, 532, 681, 544 ], [ 684, 532, 752, 544 ], [ 159, 548, 196, 560 ], [ 200, 548, 281, 560 ], [ 238, 563, 281, 576 ], [ 299, 548, 348, 560 ], [ 352, 548, 405, 560 ], [ 409, 548, 475, 560 ], [ 479, 548, 484, 560 ], [ 299, 563, 336, 576 ], [ 340, 563, 353, 576 ], [ 357, 563, 394, 576 ], [ 398, 563, 443, 576 ], [ 446, 563, 464, 576 ], [ 467, 563, 509, 576 ], [ 513, 563, 628, 576 ], [ 299, 609, 351, 622 ], [ 355, 609, 404, 622 ], [ 408, 609, 425, 622 ], [ 429, 609, 451, 622 ], [ 455, 609, 493, 622 ], [ 117, 714, 205, 735 ], [ 211, 714, 246, 735 ], [ 252, 714, 299, 735 ], [ 304, 714, 333, 735 ], [ 338, 714, 446, 735 ], [ 452, 714, 494, 735 ], [ 499, 714, 605, 735 ], [ 611, 714, 646, 735 ], [ 651, 714, 731, 735 ], [ 187, 745, 212, 757 ], [ 216, 745, 247, 757 ], [ 251, 745, 281, 757 ], [ 299, 745, 376, 757 ], [ 380, 745, 411, 757 ], [ 414, 745, 485, 757 ], [ 489, 745, 514, 757 ], [ 518, 745, 571, 757 ], [ 185, 761, 237, 773 ], [ 241, 761, 281, 773 ], [ 299, 761, 353, 773 ], [ 357, 761, 444, 773 ], [ 114, 777, 169, 789 ], [ 173, 777, 281, 789 ], [ 299, 777, 336, 789 ], [ 340, 777, 411, 789 ], [ 142, 793, 281, 805 ], [ 153, 808, 179, 821 ], [ 182, 808, 215, 821 ], [ 219, 808, 252, 821 ], [ 256, 808, 281, 821 ], [ 179, 824, 281, 836 ], [ 299, 793, 341, 805 ], [ 345, 793, 450, 805 ], [ 454, 793, 526, 805 ], [ 299, 808, 330, 821 ], [ 334, 808, 423, 821 ], [ 299, 824, 376, 836 ], [ 380, 824, 435, 836 ], [ 299, 839, 378, 852 ] ]
water column observatories, is geographically distributed in key sites of European waters, presently consisting of thirteen sites. aims at integrating the existing European EPOS facilities in solid Earth science into one coherent multidisciplinary RI, and to increase the accessibility and usability of multidisciplinary data from seismic and geodetic monitoring networks, volcano observatories, laboratory experiments and computational simulations enhancing worldwide interoperability in Earth Science. dedicates to the monitoring of greenhouse gases ICOS (GHG) through its atmospheric, ecosystem and ocean networks. The ICOS network includes more than 30 atmospheric and more than 30 ecosystem primary long term sites located across Europe, and additional secondary sites. It also includes three Thematic Centres to process the data from all the stations from each network, and provide access to these data. is a infrastructure for biodiversity LifeWatch “virtual” and ecosystem research with services mainly provided through the Internet. Its Common Facilities is coordinated and managed at a central European level; and the serve as specialized LifeWatch Centres facilities from member countries (regional partner facilities) or research communities. provides, deploys and operates an array of Euro-Argo around 800 floats contributing to the global array (3,000 floats) and thus provide enhanced coverage in the European regional seas. makes continuous measurements of the EISCAT- 3D, geospace environment and its coupling to the Earth's atmosphere from its location in the auroral zone at the southern edge of the northern polar vortex, and is a distributed infrastructure. Variable data size. e.g., Volume (size) The amount of data within the is depending on EMSO the instrumentation and configuration of the observatory between several MBs to several GB per data set. Within the EIDA network is currently EPOS, providing access to continuous raw data coming from approximately more than 1000 stations recording about 40GB per day, so over 15 TB per year. EMSC stores a Database of 1.85 GB of earthquake parameters, which is constantly growing and updated with refined information. 222705 events – 632327 origins – 642555 – magnitudes Within EISCAT 3D raw voltage data will reach 40PB/year in 2023.
water column observatories, is geographically distributed in key sites of European waters, presently consisting of thirteen sites. EPOS aims at integrating the existing European facilities in solid Earth science into one coherent multidisciplinary RI, and to increase the accessibility and usability of multidisciplinary data from seismic and geodetic monitoring networks, volcano observatories, laboratory experiments and computational simulations enhancing worldwide interoperability in Earth Science. ICOS dedicates to the monitoring of greenhouse gases (GHG) through its atmospheric, ecosystem and ocean networks. The ICOS network includes more than 30 atmospheric and more than 30 ecosystem primary long term sites located across Europe, and additional secondary sites. It also includes three Thematic Centres to process the data from all the stations from each network, and provide access to these data. LifeWatch is a “virtual” infrastructure for biodiversity and ecosystem research with services mainly provided through the Internet. Its Common Facilities is coordinated and managed at a central European level; and the LifeWatch Centres serve as specialized facilities from member countries (regional partner facilities) or research communities. Euro-Argo provides, deploys and operates an array of around 800 floats contributing to the global array (3,000 floats) and thus provide enhanced coverage in the European regional seas. EISCAT- 3D, makes continuous measurements of the geospace environment and its coupling to the Earth's atmosphere from its location in the auroral zone at the southern edge of the northern polar vortex, and is a distributed infrastructure. Volume (size) Variable data size. e.g., The amount of data within the EMSO is depending on the instrumentation and configuration of the observatory between several MBs to several GB per data set. Within EPOS, the EIDA network is currently providing access to continuous raw data coming from approximately more than 1000 stations recording about 40GB per day, so over 15 TB per year. EMSC stores a Database of 1.85 GB of earthquake parameters, which is constantly growing and updated with refined information. 222705 – events 632327 – origins 642555 – magnitudes Within EISCAT 3D raw voltage data will reach 40PB/year in 2023.
0.869691
[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 23, 17, 18, 19, 20, 21, 22, 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, 70, 63, 64, 65, 66, 67, 68, 69, 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, 131, 126, 127, 132, 128, 129, 130, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 160, 161, 157, 158, 159, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 179, 172, 173, 174, 175, 176, 177, 178, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 205, 206, 200, 201, 202, 203, 204, 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, 241, 242, 237, 238, 239, 240, 243, 244, 245, 246, 247, 248, 252, 249, 250, 251, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 275, 270, 271, 272, 273, 274, 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, 321, 320, 322, 324, 323, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338 ]
M0363_v1_4695311424.docx
task-1430-762
136
[ [ 523, 132, 559, 148 ], [ 563, 132, 612, 148 ], [ 616, 132, 707, 148 ], [ 712, 132, 723, 148 ], [ 727, 132, 824, 148 ], [ 523, 146, 593, 163 ], [ 597, 146, 610, 163 ], [ 614, 146, 638, 163 ], [ 642, 146, 670, 163 ], [ 675, 146, 688, 163 ], [ 692, 146, 755, 163 ], [ 759, 146, 806, 163 ], [ 810, 146, 870, 163 ], [ 523, 161, 589, 177 ], [ 593, 161, 607, 177 ], [ 611, 161, 661, 177 ], [ 665, 161, 698, 177 ], [ 569, 176, 600, 193 ], [ 604, 176, 616, 193 ], [ 620, 176, 690, 193 ], [ 695, 176, 714, 193 ], [ 719, 176, 770, 193 ], [ 774, 176, 837, 193 ], [ 523, 177, 565, 193 ], [ 523, 191, 579, 207 ], [ 583, 191, 596, 207 ], [ 600, 191, 632, 207 ], [ 636, 191, 671, 207 ], [ 675, 191, 723, 207 ], [ 728, 191, 753, 207 ], [ 757, 191, 781, 207 ], [ 785, 191, 841, 207 ], [ 523, 205, 635, 222 ], [ 639, 205, 659, 222 ], [ 663, 205, 687, 222 ], [ 691, 205, 704, 222 ], [ 708, 205, 761, 222 ], [ 766, 205, 785, 222 ], [ 789, 205, 870, 222 ], [ 523, 220, 547, 236 ], [ 551, 220, 607, 236 ], [ 611, 220, 625, 236 ], [ 629, 220, 740, 236 ], [ 744, 220, 772, 236 ], [ 776, 220, 808, 236 ], [ 812, 220, 861, 236 ], [ 523, 234, 547, 251 ], [ 551, 234, 606, 251 ], [ 610, 234, 683, 251 ], [ 687, 234, 751, 251 ], [ 755, 234, 807, 251 ], [ 523, 249, 614, 265 ], [ 618, 249, 686, 265 ], [ 690, 249, 769, 265 ], [ 774, 249, 797, 265 ], [ 523, 263, 616, 280 ], [ 621, 263, 696, 280 ], [ 700, 263, 767, 280 ], [ 771, 263, 841, 280 ], [ 523, 278, 624, 294 ], [ 628, 278, 640, 294 ], [ 645, 278, 680, 294 ], [ 684, 278, 739, 294 ], [ 565, 293, 626, 310 ], [ 630, 293, 643, 310 ], [ 647, 293, 667, 310 ], [ 671, 293, 743, 310 ], [ 748, 293, 761, 310 ], [ 765, 293, 840, 310 ], [ 844, 293, 879, 310 ], [ 523, 294, 561, 310 ], [ 523, 308, 569, 324 ], [ 574, 308, 624, 324 ], [ 628, 308, 644, 324 ], [ 648, 308, 732, 324 ], [ 736, 308, 804, 324 ], [ 808, 308, 832, 324 ], [ 836, 308, 874, 324 ], [ 523, 322, 587, 339 ], [ 591, 322, 617, 339 ], [ 621, 322, 658, 339 ], [ 662, 322, 715, 339 ], [ 720, 322, 774, 339 ], [ 778, 322, 812, 339 ], [ 816, 322, 844, 339 ], [ 848, 322, 864, 339 ], [ 523, 337, 603, 354 ], [ 607, 337, 630, 354 ], [ 635, 337, 668, 354 ], [ 672, 337, 700, 354 ], [ 705, 337, 721, 354 ], [ 725, 337, 793, 354 ], [ 797, 337, 849, 354 ], [ 523, 351, 552, 368 ], [ 556, 351, 586, 368 ], [ 590, 351, 619, 368 ], [ 623, 351, 670, 368 ], [ 675, 351, 716, 368 ], [ 720, 351, 771, 368 ], [ 775, 351, 799, 368 ], [ 803, 351, 868, 368 ], [ 523, 366, 589, 382 ], [ 593, 366, 626, 382 ], [ 631, 366, 641, 382 ], [ 645, 366, 671, 382 ], [ 675, 366, 730, 382 ], [ 734, 366, 766, 382 ], [ 770, 366, 832, 382 ], [ 523, 380, 573, 397 ], [ 577, 380, 590, 397 ], [ 594, 380, 643, 397 ], [ 647, 380, 667, 397 ], [ 671, 380, 698, 397 ], [ 702, 380, 734, 397 ], [ 738, 380, 754, 397 ], [ 758, 380, 778, 397 ], [ 783, 380, 832, 397 ], [ 837, 380, 869, 397 ], [ 523, 395, 553, 412 ], [ 557, 395, 615, 412 ], [ 619, 395, 642, 412 ], [ 646, 395, 696, 412 ], [ 701, 395, 742, 412 ], [ 746, 395, 759, 412 ], [ 763, 395, 797, 412 ], [ 801, 395, 832, 412 ], [ 598, 410, 609, 427 ], [ 613, 410, 620, 427 ], [ 685, 410, 773, 427 ], [ 778, 410, 797, 427 ], [ 801, 410, 879, 427 ], [ 523, 411, 594, 428 ], [ 624, 412, 681, 426 ], [ 523, 425, 547, 442 ], [ 551, 425, 619, 442 ], [ 623, 425, 677, 442 ], [ 682, 425, 710, 442 ], [ 715, 425, 767, 442 ], [ 771, 425, 817, 442 ], [ 821, 425, 879, 442 ], [ 523, 439, 574, 456 ], [ 578, 439, 598, 456 ], [ 602, 439, 657, 456 ], [ 661, 439, 677, 456 ], [ 681, 439, 742, 456 ], [ 746, 439, 806, 456 ], [ 810, 439, 821, 456 ], [ 523, 454, 600, 471 ], [ 605, 454, 628, 471 ], [ 632, 454, 691, 471 ], [ 695, 454, 707, 471 ], [ 711, 454, 718, 471 ], [ 722, 454, 767, 471 ], [ 771, 454, 833, 471 ], [ 838, 454, 874, 471 ], [ 523, 468, 547, 485 ], [ 551, 468, 571, 485 ], [ 701, 468, 735, 485 ], [ 739, 468, 753, 485 ], [ 757, 468, 830, 485 ], [ 575, 470, 642, 485 ], [ 646, 470, 697, 485 ], [ 523, 483, 579, 500 ], [ 584, 483, 615, 500 ], [ 619, 483, 673, 500 ], [ 677, 483, 737, 500 ], [ 741, 483, 800, 500 ], [ 804, 483, 850, 500 ], [ 523, 497, 585, 514 ], [ 589, 497, 602, 514 ], [ 607, 497, 661, 514 ], [ 665, 497, 753, 514 ], [ 601, 513, 661, 530 ], [ 665, 513, 716, 530 ], [ 720, 513, 744, 530 ], [ 748, 513, 802, 530 ], [ 807, 513, 822, 530 ], [ 826, 513, 859, 530 ], [ 863, 513, 877, 530 ], [ 523, 514, 597, 530 ], [ 523, 527, 568, 544 ], [ 573, 527, 597, 544 ], [ 601, 527, 637, 544 ], [ 642, 527, 721, 544 ], [ 725, 527, 738, 544 ], [ 742, 527, 762, 544 ], [ 766, 527, 807, 544 ], [ 811, 527, 845, 544 ], [ 523, 542, 565, 559 ], [ 569, 542, 611, 559 ], [ 615, 542, 639, 559 ], [ 643, 542, 670, 559 ], [ 674, 542, 724, 559 ], [ 728, 542, 790, 559 ], [ 794, 542, 853, 559 ], [ 857, 542, 870, 559 ], [ 523, 556, 543, 573 ], [ 547, 556, 610, 573 ], [ 614, 556, 667, 573 ], [ 671, 556, 703, 573 ], [ 619, 572, 660, 589 ], [ 665, 572, 736, 589 ], [ 741, 572, 834, 589 ], [ 838, 572, 852, 589 ], [ 856, 572, 876, 589 ], [ 523, 573, 587, 589 ], [ 591, 573, 615, 589 ], [ 523, 586, 583, 603 ], [ 587, 586, 669, 603 ], [ 674, 586, 697, 603 ], [ 701, 586, 717, 603 ], [ 721, 586, 778, 603 ], [ 782, 586, 795, 603 ], [ 799, 586, 819, 603 ], [ 823, 586, 868, 603 ], [ 523, 601, 598, 618 ], [ 603, 601, 634, 618 ], [ 638, 601, 654, 618 ], [ 658, 601, 710, 618 ], [ 715, 601, 727, 618 ], [ 731, 601, 751, 618 ], [ 755, 601, 802, 618 ], [ 806, 601, 837, 618 ], [ 841, 601, 853, 618 ], [ 857, 601, 876, 618 ], [ 523, 615, 579, 632 ], [ 583, 615, 614, 632 ], [ 618, 615, 632, 632 ], [ 636, 615, 656, 632 ], [ 660, 615, 715, 632 ], [ 720, 615, 753, 632 ], [ 757, 615, 803, 632 ], [ 807, 615, 831, 632 ], [ 835, 615, 846, 632 ], [ 850, 615, 857, 632 ], [ 523, 630, 593, 647 ], [ 597, 630, 689, 647 ], [ 494, 645, 550, 662 ], [ 554, 645, 581, 662 ], [ 585, 645, 615, 662 ], [ 619, 645, 647, 662 ], [ 384, 649, 437, 662 ], [ 441, 649, 476, 662 ], [ 523, 660, 549, 677 ], [ 553, 660, 601, 677 ], [ 605, 660, 619, 677 ], [ 623, 660, 651, 677 ], [ 655, 660, 696, 677 ], [ 700, 660, 720, 677 ], [ 775, 660, 786, 677 ], [ 790, 660, 858, 677 ], [ 862, 660, 879, 677 ], [ 725, 661, 771, 678 ], [ 523, 675, 543, 692 ], [ 547, 675, 650, 692 ], [ 654, 675, 677, 692 ], [ 681, 675, 769, 692 ], [ 774, 675, 787, 692 ], [ 791, 675, 811, 692 ], [ 523, 690, 600, 706 ], [ 604, 690, 659, 706 ], [ 663, 690, 709, 706 ], [ 713, 690, 745, 706 ], [ 749, 690, 762, 706 ], [ 766, 690, 812, 706 ], [ 816, 690, 839, 706 ], [ 843, 690, 864, 706 ], [ 523, 704, 550, 721 ], [ 555, 704, 577, 721 ], [ 523, 719, 568, 736 ], [ 622, 719, 642, 736 ], [ 646, 719, 686, 736 ], [ 690, 719, 743, 736 ], [ 748, 719, 758, 736 ], [ 762, 719, 821, 736 ], [ 573, 720, 618, 736 ], [ 523, 734, 586, 751 ], [ 591, 734, 632, 751 ], [ 636, 734, 649, 751 ], [ 653, 734, 725, 751 ], [ 729, 734, 754, 751 ], [ 758, 734, 785, 751 ], [ 789, 734, 838, 751 ], [ 842, 734, 874, 751 ], [ 523, 749, 617, 765 ], [ 622, 749, 655, 765 ], [ 659, 749, 687, 765 ], [ 691, 749, 724, 765 ], [ 728, 749, 778, 765 ], [ 782, 749, 845, 765 ], [ 523, 763, 559, 780 ], [ 564, 763, 603, 780 ], [ 607, 763, 628, 780 ], [ 632, 763, 659, 780 ], [ 663, 763, 678, 780 ], [ 682, 763, 711, 780 ], [ 715, 763, 731, 780 ], [ 735, 763, 757, 780 ], [ 761, 763, 782, 780 ], [ 786, 763, 818, 780 ], [ 822, 763, 866, 780 ], [ 523, 777, 561, 794 ], [ 565, 777, 573, 794 ], [ 577, 777, 636, 794 ], [ 641, 777, 654, 794 ], [ 658, 777, 687, 794 ], [ 691, 777, 714, 794 ], [ 718, 777, 732, 794 ], [ 735, 777, 807, 794 ], [ 523, 792, 599, 809 ], [ 603, 792, 643, 809 ], [ 647, 792, 658, 809 ], [ 662, 792, 729, 809 ], [ 733, 792, 788, 809 ], [ 792, 792, 815, 809 ], [ 819, 792, 871, 809 ], [ 523, 807, 552, 823 ], [ 556, 807, 602, 823 ], [ 606, 807, 688, 823 ], [ 582, 821, 631, 838 ], [ 647, 821, 689, 838 ], [ 635, 823, 643, 837 ], [ 582, 836, 631, 853 ], [ 647, 836, 693, 853 ], [ 635, 838, 643, 852 ], [ 582, 855, 631, 867 ], [ 635, 855, 643, 867 ], [ 647, 855, 725, 867 ], [ 523, 871, 568, 883 ], [ 572, 871, 618, 883 ], [ 621, 871, 640, 883 ], [ 644, 871, 669, 883 ], [ 673, 871, 721, 883 ], [ 725, 871, 755, 883 ], [ 759, 871, 782, 883 ], [ 785, 871, 822, 883 ], [ 523, 886, 592, 899 ], [ 596, 886, 608, 899 ], [ 612, 886, 649, 899 ] ]
[ [ 523, 132, 559, 148 ], [ 563, 132, 612, 148 ], [ 616, 132, 707, 148 ], [ 712, 132, 723, 148 ], [ 727, 132, 824, 148 ], [ 523, 146, 593, 163 ], [ 597, 146, 610, 163 ], [ 614, 146, 638, 163 ], [ 642, 146, 670, 163 ], [ 675, 146, 688, 163 ], [ 692, 146, 755, 163 ], [ 759, 146, 806, 163 ], [ 810, 146, 870, 163 ], [ 523, 161, 589, 177 ], [ 593, 161, 607, 177 ], [ 611, 161, 661, 177 ], [ 665, 161, 698, 177 ], [ 523, 177, 565, 193 ], [ 569, 176, 600, 193 ], [ 604, 176, 616, 193 ], [ 620, 176, 690, 193 ], [ 695, 176, 714, 193 ], [ 719, 176, 770, 193 ], [ 774, 176, 837, 193 ], [ 523, 191, 579, 207 ], [ 583, 191, 596, 207 ], [ 600, 191, 632, 207 ], [ 636, 191, 671, 207 ], [ 675, 191, 723, 207 ], [ 728, 191, 753, 207 ], [ 757, 191, 781, 207 ], [ 785, 191, 841, 207 ], [ 523, 205, 635, 222 ], [ 639, 205, 659, 222 ], [ 663, 205, 687, 222 ], [ 691, 205, 704, 222 ], [ 708, 205, 761, 222 ], [ 766, 205, 785, 222 ], [ 789, 205, 870, 222 ], [ 523, 220, 547, 236 ], [ 551, 220, 607, 236 ], [ 611, 220, 625, 236 ], [ 629, 220, 740, 236 ], [ 744, 220, 772, 236 ], [ 776, 220, 808, 236 ], [ 812, 220, 861, 236 ], [ 523, 234, 547, 251 ], [ 551, 234, 606, 251 ], [ 610, 234, 683, 251 ], [ 687, 234, 751, 251 ], [ 755, 234, 807, 251 ], [ 523, 249, 614, 265 ], [ 618, 249, 686, 265 ], [ 690, 249, 769, 265 ], [ 774, 249, 797, 265 ], [ 523, 263, 616, 280 ], [ 621, 263, 696, 280 ], [ 700, 263, 767, 280 ], [ 771, 263, 841, 280 ], [ 523, 278, 624, 294 ], [ 628, 278, 640, 294 ], [ 645, 278, 680, 294 ], [ 684, 278, 739, 294 ], [ 523, 294, 561, 310 ], [ 565, 293, 626, 310 ], [ 630, 293, 643, 310 ], [ 647, 293, 667, 310 ], [ 671, 293, 743, 310 ], [ 748, 293, 761, 310 ], [ 765, 293, 840, 310 ], [ 844, 293, 879, 310 ], [ 523, 308, 569, 324 ], [ 574, 308, 624, 324 ], [ 628, 308, 644, 324 ], [ 648, 308, 732, 324 ], [ 736, 308, 804, 324 ], [ 808, 308, 832, 324 ], [ 836, 308, 874, 324 ], [ 523, 322, 587, 339 ], [ 591, 322, 617, 339 ], [ 621, 322, 658, 339 ], [ 662, 322, 715, 339 ], [ 720, 322, 774, 339 ], [ 778, 322, 812, 339 ], [ 816, 322, 844, 339 ], [ 848, 322, 864, 339 ], [ 523, 337, 603, 354 ], [ 607, 337, 630, 354 ], [ 635, 337, 668, 354 ], [ 672, 337, 700, 354 ], [ 705, 337, 721, 354 ], [ 725, 337, 793, 354 ], [ 797, 337, 849, 354 ], [ 523, 351, 552, 368 ], [ 556, 351, 586, 368 ], [ 590, 351, 619, 368 ], [ 623, 351, 670, 368 ], [ 675, 351, 716, 368 ], [ 720, 351, 771, 368 ], [ 775, 351, 799, 368 ], [ 803, 351, 868, 368 ], [ 523, 366, 589, 382 ], [ 593, 366, 626, 382 ], [ 631, 366, 641, 382 ], [ 645, 366, 671, 382 ], [ 675, 366, 730, 382 ], [ 734, 366, 766, 382 ], [ 770, 366, 832, 382 ], [ 523, 380, 573, 397 ], [ 577, 380, 590, 397 ], [ 594, 380, 643, 397 ], [ 647, 380, 667, 397 ], [ 671, 380, 698, 397 ], [ 702, 380, 734, 397 ], [ 738, 380, 754, 397 ], [ 758, 380, 778, 397 ], [ 783, 380, 832, 397 ], [ 837, 380, 869, 397 ], [ 523, 395, 553, 412 ], [ 557, 395, 615, 412 ], [ 619, 395, 642, 412 ], [ 646, 395, 696, 412 ], [ 701, 395, 742, 412 ], [ 746, 395, 759, 412 ], [ 763, 395, 797, 412 ], [ 801, 395, 832, 412 ], [ 523, 411, 594, 428 ], [ 598, 410, 609, 427 ], [ 613, 410, 620, 427 ], [ 624, 412, 681, 426 ], [ 685, 410, 773, 427 ], [ 778, 410, 797, 427 ], [ 801, 410, 879, 427 ], [ 523, 425, 547, 442 ], [ 551, 425, 619, 442 ], [ 623, 425, 677, 442 ], [ 682, 425, 710, 442 ], [ 715, 425, 767, 442 ], [ 771, 425, 817, 442 ], [ 821, 425, 879, 442 ], [ 523, 439, 574, 456 ], [ 578, 439, 598, 456 ], [ 602, 439, 657, 456 ], [ 661, 439, 677, 456 ], [ 681, 439, 742, 456 ], [ 746, 439, 806, 456 ], [ 810, 439, 821, 456 ], [ 523, 454, 600, 471 ], [ 605, 454, 628, 471 ], [ 632, 454, 691, 471 ], [ 695, 454, 707, 471 ], [ 711, 454, 718, 471 ], [ 722, 454, 767, 471 ], [ 771, 454, 833, 471 ], [ 838, 454, 874, 471 ], [ 523, 468, 547, 485 ], [ 551, 468, 571, 485 ], [ 575, 470, 642, 485 ], [ 646, 470, 697, 485 ], [ 701, 468, 735, 485 ], [ 739, 468, 753, 485 ], [ 757, 468, 830, 485 ], [ 523, 483, 579, 500 ], [ 584, 483, 615, 500 ], [ 619, 483, 673, 500 ], [ 677, 483, 737, 500 ], [ 741, 483, 800, 500 ], [ 804, 483, 850, 500 ], [ 523, 497, 585, 514 ], [ 589, 497, 602, 514 ], [ 607, 497, 661, 514 ], [ 665, 497, 753, 514 ], [ 523, 514, 597, 530 ], [ 601, 513, 661, 530 ], [ 665, 513, 716, 530 ], [ 720, 513, 744, 530 ], [ 748, 513, 802, 530 ], [ 807, 513, 822, 530 ], [ 826, 513, 859, 530 ], [ 863, 513, 877, 530 ], [ 523, 527, 568, 544 ], [ 573, 527, 597, 544 ], [ 601, 527, 637, 544 ], [ 642, 527, 721, 544 ], [ 725, 527, 738, 544 ], [ 742, 527, 762, 544 ], [ 766, 527, 807, 544 ], [ 811, 527, 845, 544 ], [ 523, 542, 565, 559 ], [ 569, 542, 611, 559 ], [ 615, 542, 639, 559 ], [ 643, 542, 670, 559 ], [ 674, 542, 724, 559 ], [ 728, 542, 790, 559 ], [ 794, 542, 853, 559 ], [ 857, 542, 870, 559 ], [ 523, 556, 543, 573 ], [ 547, 556, 610, 573 ], [ 614, 556, 667, 573 ], [ 671, 556, 703, 573 ], [ 523, 573, 587, 589 ], [ 591, 573, 615, 589 ], [ 619, 572, 660, 589 ], [ 665, 572, 736, 589 ], [ 741, 572, 834, 589 ], [ 838, 572, 852, 589 ], [ 856, 572, 876, 589 ], [ 523, 586, 583, 603 ], [ 587, 586, 669, 603 ], [ 674, 586, 697, 603 ], [ 701, 586, 717, 603 ], [ 721, 586, 778, 603 ], [ 782, 586, 795, 603 ], [ 799, 586, 819, 603 ], [ 823, 586, 868, 603 ], [ 523, 601, 598, 618 ], [ 603, 601, 634, 618 ], [ 638, 601, 654, 618 ], [ 658, 601, 710, 618 ], [ 715, 601, 727, 618 ], [ 731, 601, 751, 618 ], [ 755, 601, 802, 618 ], [ 806, 601, 837, 618 ], [ 841, 601, 853, 618 ], [ 857, 601, 876, 618 ], [ 523, 615, 579, 632 ], [ 583, 615, 614, 632 ], [ 618, 615, 632, 632 ], [ 636, 615, 656, 632 ], [ 660, 615, 715, 632 ], [ 720, 615, 753, 632 ], [ 757, 615, 803, 632 ], [ 807, 615, 831, 632 ], [ 835, 615, 846, 632 ], [ 850, 615, 857, 632 ], [ 523, 630, 593, 647 ], [ 597, 630, 689, 647 ], [ 384, 649, 437, 662 ], [ 441, 649, 476, 662 ], [ 494, 645, 550, 662 ], [ 554, 645, 581, 662 ], [ 585, 645, 615, 662 ], [ 619, 645, 647, 662 ], [ 523, 660, 549, 677 ], [ 553, 660, 601, 677 ], [ 605, 660, 619, 677 ], [ 623, 660, 651, 677 ], [ 655, 660, 696, 677 ], [ 700, 660, 720, 677 ], [ 725, 661, 771, 678 ], [ 775, 660, 786, 677 ], [ 790, 660, 858, 677 ], [ 862, 660, 879, 677 ], [ 523, 675, 543, 692 ], [ 547, 675, 650, 692 ], [ 654, 675, 677, 692 ], [ 681, 675, 769, 692 ], [ 774, 675, 787, 692 ], [ 791, 675, 811, 692 ], [ 523, 690, 600, 706 ], [ 604, 690, 659, 706 ], [ 663, 690, 709, 706 ], [ 713, 690, 745, 706 ], [ 749, 690, 762, 706 ], [ 766, 690, 812, 706 ], [ 816, 690, 839, 706 ], [ 843, 690, 864, 706 ], [ 523, 704, 550, 721 ], [ 555, 704, 577, 721 ], [ 523, 719, 568, 736 ], [ 573, 720, 618, 736 ], [ 622, 719, 642, 736 ], [ 646, 719, 686, 736 ], [ 690, 719, 743, 736 ], [ 748, 719, 758, 736 ], [ 762, 719, 821, 736 ], [ 523, 734, 586, 751 ], [ 591, 734, 632, 751 ], [ 636, 734, 649, 751 ], [ 653, 734, 725, 751 ], [ 729, 734, 754, 751 ], [ 758, 734, 785, 751 ], [ 789, 734, 838, 751 ], [ 842, 734, 874, 751 ], [ 523, 749, 617, 765 ], [ 622, 749, 655, 765 ], [ 659, 749, 687, 765 ], [ 691, 749, 724, 765 ], [ 728, 749, 778, 765 ], [ 782, 749, 845, 765 ], [ 523, 763, 559, 780 ], [ 564, 763, 603, 780 ], [ 607, 763, 628, 780 ], [ 632, 763, 659, 780 ], [ 663, 763, 678, 780 ], [ 682, 763, 711, 780 ], [ 715, 763, 731, 780 ], [ 735, 763, 757, 780 ], [ 761, 763, 782, 780 ], [ 786, 763, 818, 780 ], [ 822, 763, 866, 780 ], [ 523, 777, 561, 794 ], [ 565, 777, 573, 794 ], [ 577, 777, 636, 794 ], [ 641, 777, 654, 794 ], [ 658, 777, 687, 794 ], [ 691, 777, 714, 794 ], [ 718, 777, 732, 794 ], [ 735, 777, 807, 794 ], [ 523, 792, 599, 809 ], [ 603, 792, 643, 809 ], [ 647, 792, 658, 809 ], [ 662, 792, 729, 809 ], [ 733, 792, 788, 809 ], [ 792, 792, 815, 809 ], [ 819, 792, 871, 809 ], [ 523, 807, 552, 823 ], [ 556, 807, 602, 823 ], [ 606, 807, 688, 823 ], [ 582, 821, 631, 838 ], [ 635, 823, 643, 837 ], [ 647, 821, 689, 838 ], [ 582, 836, 631, 853 ], [ 635, 838, 643, 852 ], [ 647, 836, 693, 853 ], [ 582, 855, 631, 867 ], [ 635, 855, 643, 867 ], [ 647, 855, 725, 867 ], [ 523, 871, 568, 883 ], [ 572, 871, 618, 883 ], [ 621, 871, 640, 883 ], [ 644, 871, 669, 883 ], [ 673, 871, 721, 883 ], [ 725, 871, 755, 883 ], [ 759, 871, 782, 883 ], [ 785, 871, 822, 883 ], [ 523, 886, 592, 899 ], [ 596, 886, 608, 899 ], [ 612, 886, 649, 899 ] ]
Appendix C: Use Case Requirements Summary Requirements were extracted from each use case within seven characteristic categories introduced in Section 3.1. The number of requirements within each category varied for each use case. Table C-1 contains the use case specific requirements. Table C-1: Use Case Specific Requirements Use Case Data Data Capabilities Data Security and Lifecycle Other Sources Transformation Consumer Privacy Management 1 1. Large -- 1. Large -- 1. Title 13 data 1. Long-term -- Census 2010 document format centralized preservation of data and 2000 from centralized storage (storage) as-is for 75 years storage 2. Long-term preservation at the bit level 3. Curation process including format transformation 4. Access and analytics processing after 75 years 5. No data loss 2 1. Distributed 1. Crawl and index 1. Large data 1. High 1. Security 1. Pre-process for 1. Mobile NARA: Search, data sources from distributed storage relevancy and policy virus scan search with Retrieve, 2. Large data data sources 2. Various storage high recall 2. File format similar Preservation storage 2. Various analytics systems such as from search identification interfaces/ 3. Bursty data processing NetApps, Hitachi, 2. High 3. Indexing results from ranging from including ranking, magnetic tapes accuracy from 4. Records desktop gigabytes to data categorization categorization hundreds of categorization, of records terabytes detection of PII 3. Various 4. Wide variety of data storage data formats 3. Data systems such including as NetApps, unstructured and 4. Long-term Hitachi, structured data preservation magnetic 5. Distributed management of tapes
Appendix C: Use Case Requirements Summary Requirements were extracted from each use case within seven characteristic categories introduced in Section 3.1. The number of requirements within each category varied for each use case. Table C-1 contains the use case specific requirements. Table C-1: Use Case Specific Requirements Use Case Data Sources Data Transformation Capabilities Data Consumer Security and Privacy Lifecycle Management Other 1 Census 2010 and 2000 1. Large document format from centralized storage -- 1. Large centralized storage (storage) -- 1. Title 13 data 1. Long-term preservation of data as-is for 75 years 2. Long-term preservation at the bit level 3. Curation process including format transformation 4. Access and analytics processing after 75 years 5. No data loss -- 2 NARA: Search, Retrieve, Preservation 1. Distributed data sources 2. Large data storage 3. Bursty data ranging from gigabytes to hundreds of terabytes 4. Wide variety of data formats including unstructured and structured data 5. Distributed 1. Crawl and index from distributed data sources 2. Various analytics processing including ranking, data categorization, detection of PII data 3. Data 4. Long-term preservation management of 1. Large data storage 2. Various storage systems such as NetApps, Hitachi, magnetic tapes 1. High relevancy and high recall from search 2. High accuracy from categorization of records 3. Various storage systems such as NetApps, Hitachi, magnetic tapes 1. Security policy 1. Pre-process for virus scan 2. File format identification 3. Indexing 4. Records categorization 1. Mobile search with similar interfaces/ results from desktop
0.53896
[ 0, 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, 57, 50, 58, 51, 52, 59, 53, 54, 60, 55, 61, 56, 62, 76, 77, 84, 85, 63, 64, 78, 79, 86, 87, 94, 65, 66, 67, 80, 88, 89, 68, 69, 70, 71, 72, 73, 74, 81, 82, 83, 90, 91, 92, 93, 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, 75, 120, 139, 140, 153, 168, 121, 122, 141, 142, 154, 155, 156, 169, 180, 181, 182, 192, 193, 203, 204, 208, 209, 213, 219, 220, 221, 222, 225, 226, 231, 234, 235, 239, 240, 243, 244, 123, 124, 125, 126, 143, 144, 157, 158, 170, 171, 172, 183, 194, 195, 205, 210, 214, 215, 216, 223, 227, 228, 236, 237, 241, 245, 246, 127, 128, 129, 145, 159, 160, 161, 173, 174, 175, 184, 185, 196, 197, 130, 131, 146, 147, 162, 163, 176, 177, 186, 187, 198, 199, 206, 211, 212, 217, 218, 224, 229, 230, 232, 233, 238, 242, 247, 132, 133, 148, 134, 135, 136, 149, 150, 164, 165, 166, 178, 188, 189, 200, 201, 207, 137, 138, 151, 152, 167, 179, 190, 191, 202 ]
M0363_v1_4695311424.docx
task-1430-762
167
[ [ 90, 113, 194, 153 ], [ 200, 113, 224, 153 ], [ 231, 113, 272, 153 ], [ 278, 113, 333, 153 ], [ 339, 113, 491, 153 ], [ 497, 113, 601, 153 ], [ 90, 171, 168, 195 ], [ 171, 171, 198, 195 ], [ 202, 171, 252, 195 ], [ 256, 171, 283, 195 ], [ 286, 171, 312, 195 ], [ 315, 171, 334, 195 ], [ 337, 171, 361, 195 ], [ 365, 171, 400, 195 ], [ 404, 171, 435, 195 ], [ 439, 171, 513, 195 ], [ 516, 171, 573, 195 ], [ 576, 171, 635, 195 ], [ 639, 171, 650, 195 ], [ 653, 171, 695, 195 ], [ 698, 171, 719, 195 ], [ 723, 171, 744, 195 ], [ 748, 171, 790, 195 ], [ 794, 171, 805, 195 ], [ 809, 171, 881, 195 ], [ 90, 192, 126, 216 ], [ 130, 192, 155, 216 ], [ 158, 192, 206, 216 ], [ 210, 192, 244, 216 ], [ 248, 192, 264, 216 ], [ 268, 192, 293, 216 ], [ 296, 192, 315, 216 ], [ 319, 192, 346, 216 ], [ 349, 192, 381, 216 ], [ 385, 192, 405, 216 ], [ 409, 192, 455, 216 ], [ 459, 192, 476, 216 ], [ 479, 192, 498, 216 ], [ 501, 192, 525, 216 ], [ 529, 192, 572, 216 ], [ 575, 192, 651, 216 ], [ 375, 224, 407, 248 ], [ 411, 224, 436, 248 ], [ 440, 224, 461, 248 ], [ 465, 224, 493, 248 ], [ 496, 224, 541, 248 ], [ 545, 224, 624, 248 ], [ 122, 261, 143, 279 ], [ 146, 261, 173, 279 ], [ 233, 261, 260, 279 ], [ 344, 261, 371, 279 ], [ 435, 261, 502, 279 ], [ 554, 261, 581, 279 ], [ 626, 261, 672, 279 ], [ 675, 261, 697, 279 ], [ 746, 261, 795, 279 ], [ 856, 261, 890, 279 ], [ 224, 282, 269, 301 ], [ 313, 282, 402, 301 ], [ 539, 282, 597, 301 ], [ 641, 282, 682, 301 ], [ 732, 282, 809, 301 ], [ 90, 306, 97, 322 ], [ 200, 306, 209, 322 ], [ 212, 306, 240, 322 ], [ 307, 306, 315, 322 ], [ 421, 306, 431, 322 ], [ 434, 306, 461, 322 ], [ 529, 306, 537, 322 ], [ 620, 306, 630, 322 ], [ 632, 306, 655, 322 ], [ 658, 306, 671, 322 ], [ 673, 306, 696, 322 ], [ 717, 306, 726, 322 ], [ 729, 306, 782, 322 ], [ 838, 306, 845, 322 ], [ 109, 326, 145, 342 ], [ 148, 326, 173, 342 ], [ 200, 326, 252, 342 ], [ 255, 326, 290, 342 ], [ 421, 326, 478, 342 ], [ 717, 326, 781, 342 ], [ 784, 326, 795, 342 ], [ 798, 326, 821, 342 ], [ 109, 346, 128, 362 ], [ 131, 346, 156, 362 ], [ 200, 346, 224, 362 ], [ 227, 346, 284, 362 ], [ 421, 346, 459, 362 ], [ 462, 346, 508, 362 ], [ 717, 346, 739, 362 ], [ 742, 346, 757, 362 ], [ 760, 346, 773, 362 ], [ 775, 346, 803, 362 ], [ 200, 366, 238, 382 ], [ 717, 366, 726, 382 ], [ 729, 366, 782, 382 ], [ 717, 386, 781, 402 ], [ 784, 386, 795, 402 ], [ 798, 386, 815, 402 ], [ 717, 406, 730, 422 ], [ 733, 406, 757, 422 ], [ 717, 426, 726, 442 ], [ 729, 426, 773, 442 ], [ 776, 426, 815, 442 ], [ 717, 446, 763, 462 ], [ 766, 446, 801, 462 ], [ 717, 466, 794, 482 ], [ 717, 485, 726, 502 ], [ 729, 485, 763, 502 ], [ 766, 485, 785, 502 ], [ 717, 505, 761, 522 ], [ 764, 505, 819, 522 ], [ 717, 525, 741, 542 ], [ 744, 525, 757, 542 ], [ 760, 525, 787, 542 ], [ 717, 545, 726, 562 ], [ 729, 545, 744, 562 ], [ 747, 545, 770, 562 ], [ 773, 545, 792, 562 ], [ 90, 567, 97, 583 ], [ 200, 567, 209, 583 ], [ 212, 567, 269, 583 ], [ 307, 567, 317, 583 ], [ 320, 567, 349, 583 ], [ 352, 567, 371, 583 ], [ 374, 567, 402, 583 ], [ 421, 567, 431, 583 ], [ 434, 567, 461, 583 ], [ 464, 567, 487, 583 ], [ 529, 567, 539, 583 ], [ 542, 567, 565, 583 ], [ 620, 567, 630, 583 ], [ 632, 567, 674, 583 ], [ 717, 567, 726, 583 ], [ 729, 567, 789, 583 ], [ 792, 567, 807, 583 ], [ 838, 567, 847, 583 ], [ 850, 567, 886, 583 ], [ 109, 587, 142, 603 ], [ 144, 587, 182, 603 ], [ 200, 587, 222, 603 ], [ 225, 587, 264, 603 ], [ 307, 587, 332, 603 ], [ 335, 587, 391, 603 ], [ 421, 587, 459, 603 ], [ 529, 587, 578, 603 ], [ 581, 587, 601, 603 ], [ 620, 587, 650, 603 ], [ 717, 587, 741, 603 ], [ 744, 587, 767, 603 ], [ 838, 587, 871, 603 ], [ 874, 587, 897, 603 ], [ 109, 607, 154, 623 ], [ 200, 607, 209, 623 ], [ 212, 607, 240, 623 ], [ 243, 607, 266, 623 ], [ 307, 607, 330, 623 ], [ 333, 607, 372, 623 ], [ 421, 607, 431, 623 ], [ 434, 607, 472, 623 ], [ 475, 607, 514, 623 ], [ 529, 607, 551, 623 ], [ 554, 607, 582, 623 ], [ 717, 607, 726, 623 ], [ 729, 607, 747, 623 ], [ 750, 607, 785, 623 ], [ 838, 607, 872, 623 ], [ 109, 627, 173, 643 ], [ 200, 627, 238, 643 ], [ 307, 627, 317, 643 ], [ 320, 627, 359, 643 ], [ 361, 627, 406, 643 ], [ 421, 627, 462, 643 ], [ 465, 627, 488, 643 ], [ 491, 627, 502, 643 ], [ 529, 627, 554, 643 ], [ 557, 627, 590, 643 ], [ 717, 627, 784, 643 ], [ 838, 627, 893, 643 ], [ 200, 647, 209, 663 ], [ 212, 647, 245, 663 ], [ 248, 647, 271, 663 ], [ 307, 647, 362, 663 ], [ 421, 647, 468, 663 ], [ 471, 647, 510, 663 ], [ 529, 647, 539, 663 ], [ 542, 647, 565, 663 ], [ 717, 647, 726, 663 ], [ 729, 647, 773, 663 ], [ 838, 647, 872, 663 ], [ 875, 647, 900, 663 ], [ 200, 667, 238, 683 ], [ 241, 667, 266, 683 ], [ 307, 667, 354, 683 ], [ 357, 667, 398, 683 ], [ 421, 667, 468, 683 ], [ 471, 667, 499, 683 ], [ 529, 667, 574, 683 ], [ 577, 667, 602, 683 ], [ 717, 667, 726, 683 ], [ 729, 667, 770, 683 ], [ 838, 667, 879, 683 ], [ 200, 687, 248, 703 ], [ 251, 687, 262, 703 ], [ 307, 687, 330, 703 ], [ 529, 687, 602, 703 ], [ 717, 687, 790, 703 ], [ 200, 707, 248, 723 ], [ 251, 707, 262, 723 ], [ 307, 707, 384, 723 ], [ 529, 707, 540, 723 ], [ 542, 707, 581, 723 ], [ 200, 726, 248, 743 ], [ 307, 726, 356, 743 ], [ 359, 726, 370, 743 ], [ 373, 726, 386, 743 ], [ 529, 726, 539, 743 ], [ 542, 726, 580, 743 ], [ 200, 746, 209, 763 ], [ 212, 746, 239, 763 ], [ 242, 746, 277, 763 ], [ 280, 746, 290, 763 ], [ 307, 746, 330, 763 ], [ 529, 746, 567, 763 ], [ 200, 766, 222, 783 ], [ 225, 766, 265, 783 ], [ 307, 766, 317, 783 ], [ 320, 766, 344, 783 ], [ 529, 766, 570, 783 ], [ 573, 766, 597, 783 ], [ 200, 786, 246, 803 ], [ 529, 786, 540, 803 ], [ 543, 786, 590, 803 ], [ 200, 806, 266, 823 ], [ 269, 806, 289, 823 ], [ 307, 806, 317, 823 ], [ 320, 806, 373, 823 ], [ 529, 806, 568, 823 ], [ 200, 826, 253, 843 ], [ 256, 826, 279, 843 ], [ 307, 826, 372, 843 ], [ 529, 826, 576, 843 ], [ 200, 846, 209, 863 ], [ 212, 846, 269, 863 ], [ 307, 846, 376, 863 ], [ 379, 846, 389, 863 ], [ 529, 846, 557, 863 ] ]
[ [ 90, 113, 194, 153 ], [ 200, 113, 224, 153 ], [ 231, 113, 272, 153 ], [ 278, 113, 333, 153 ], [ 339, 113, 491, 153 ], [ 497, 113, 601, 153 ], [ 90, 171, 168, 195 ], [ 171, 171, 198, 195 ], [ 202, 171, 252, 195 ], [ 256, 171, 283, 195 ], [ 286, 171, 312, 195 ], [ 315, 171, 334, 195 ], [ 337, 171, 361, 195 ], [ 365, 171, 400, 195 ], [ 404, 171, 435, 195 ], [ 439, 171, 513, 195 ], [ 516, 171, 573, 195 ], [ 576, 171, 635, 195 ], [ 639, 171, 650, 195 ], [ 653, 171, 695, 195 ], [ 698, 171, 719, 195 ], [ 723, 171, 744, 195 ], [ 748, 171, 790, 195 ], [ 794, 171, 805, 195 ], [ 809, 171, 881, 195 ], [ 90, 192, 126, 216 ], [ 130, 192, 155, 216 ], [ 158, 192, 206, 216 ], [ 210, 192, 244, 216 ], [ 248, 192, 264, 216 ], [ 268, 192, 293, 216 ], [ 296, 192, 315, 216 ], [ 319, 192, 346, 216 ], [ 349, 192, 381, 216 ], [ 385, 192, 405, 216 ], [ 409, 192, 455, 216 ], [ 459, 192, 476, 216 ], [ 479, 192, 498, 216 ], [ 501, 192, 525, 216 ], [ 529, 192, 572, 216 ], [ 575, 192, 651, 216 ], [ 375, 224, 407, 248 ], [ 411, 224, 436, 248 ], [ 440, 224, 461, 248 ], [ 465, 224, 493, 248 ], [ 496, 224, 541, 248 ], [ 545, 224, 624, 248 ], [ 122, 261, 143, 279 ], [ 146, 261, 173, 279 ], [ 233, 261, 260, 279 ], [ 224, 282, 269, 301 ], [ 344, 261, 371, 279 ], [ 313, 282, 402, 301 ], [ 435, 261, 502, 279 ], [ 554, 261, 581, 279 ], [ 539, 282, 597, 301 ], [ 626, 261, 672, 279 ], [ 675, 261, 697, 279 ], [ 641, 282, 682, 301 ], [ 746, 261, 795, 279 ], [ 732, 282, 809, 301 ], [ 856, 261, 890, 279 ], [ 90, 306, 97, 322 ], [ 109, 326, 145, 342 ], [ 148, 326, 173, 342 ], [ 109, 346, 128, 362 ], [ 131, 346, 156, 362 ], [ 200, 306, 209, 322 ], [ 212, 306, 240, 322 ], [ 200, 326, 252, 342 ], [ 255, 326, 290, 342 ], [ 200, 346, 224, 362 ], [ 227, 346, 284, 362 ], [ 200, 366, 238, 382 ], [ 307, 306, 315, 322 ], [ 421, 306, 431, 322 ], [ 434, 306, 461, 322 ], [ 421, 326, 478, 342 ], [ 421, 346, 459, 362 ], [ 462, 346, 508, 362 ], [ 529, 306, 537, 322 ], [ 620, 306, 630, 322 ], [ 632, 306, 655, 322 ], [ 658, 306, 671, 322 ], [ 673, 306, 696, 322 ], [ 717, 306, 726, 322 ], [ 729, 306, 782, 322 ], [ 717, 326, 781, 342 ], [ 784, 326, 795, 342 ], [ 798, 326, 821, 342 ], [ 717, 346, 739, 362 ], [ 742, 346, 757, 362 ], [ 760, 346, 773, 362 ], [ 775, 346, 803, 362 ], [ 717, 366, 726, 382 ], [ 729, 366, 782, 382 ], [ 717, 386, 781, 402 ], [ 784, 386, 795, 402 ], [ 798, 386, 815, 402 ], [ 717, 406, 730, 422 ], [ 733, 406, 757, 422 ], [ 717, 426, 726, 442 ], [ 729, 426, 773, 442 ], [ 776, 426, 815, 442 ], [ 717, 446, 763, 462 ], [ 766, 446, 801, 462 ], [ 717, 466, 794, 482 ], [ 717, 485, 726, 502 ], [ 729, 485, 763, 502 ], [ 766, 485, 785, 502 ], [ 717, 505, 761, 522 ], [ 764, 505, 819, 522 ], [ 717, 525, 741, 542 ], [ 744, 525, 757, 542 ], [ 760, 525, 787, 542 ], [ 717, 545, 726, 562 ], [ 729, 545, 744, 562 ], [ 747, 545, 770, 562 ], [ 773, 545, 792, 562 ], [ 838, 306, 845, 322 ], [ 90, 567, 97, 583 ], [ 109, 587, 142, 603 ], [ 144, 587, 182, 603 ], [ 109, 607, 154, 623 ], [ 109, 627, 173, 643 ], [ 200, 567, 209, 583 ], [ 212, 567, 269, 583 ], [ 200, 587, 222, 603 ], [ 225, 587, 264, 603 ], [ 200, 607, 209, 623 ], [ 212, 607, 240, 623 ], [ 243, 607, 266, 623 ], [ 200, 627, 238, 643 ], [ 200, 647, 209, 663 ], [ 212, 647, 245, 663 ], [ 248, 647, 271, 663 ], [ 200, 667, 238, 683 ], [ 241, 667, 266, 683 ], [ 200, 687, 248, 703 ], [ 251, 687, 262, 703 ], [ 200, 707, 248, 723 ], [ 251, 707, 262, 723 ], [ 200, 726, 248, 743 ], [ 200, 746, 209, 763 ], [ 212, 746, 239, 763 ], [ 242, 746, 277, 763 ], [ 280, 746, 290, 763 ], [ 200, 766, 222, 783 ], [ 225, 766, 265, 783 ], [ 200, 786, 246, 803 ], [ 200, 806, 266, 823 ], [ 269, 806, 289, 823 ], [ 200, 826, 253, 843 ], [ 256, 826, 279, 843 ], [ 200, 846, 209, 863 ], [ 212, 846, 269, 863 ], [ 307, 567, 317, 583 ], [ 320, 567, 349, 583 ], [ 352, 567, 371, 583 ], [ 374, 567, 402, 583 ], [ 307, 587, 332, 603 ], [ 335, 587, 391, 603 ], [ 307, 607, 330, 623 ], [ 333, 607, 372, 623 ], [ 307, 627, 317, 643 ], [ 320, 627, 359, 643 ], [ 361, 627, 406, 643 ], [ 307, 647, 362, 663 ], [ 307, 667, 354, 683 ], [ 357, 667, 398, 683 ], [ 307, 687, 330, 703 ], [ 307, 707, 384, 723 ], [ 307, 726, 356, 743 ], [ 359, 726, 370, 743 ], [ 373, 726, 386, 743 ], [ 307, 746, 330, 763 ], [ 307, 766, 317, 783 ], [ 320, 766, 344, 783 ], [ 307, 806, 317, 823 ], [ 320, 806, 373, 823 ], [ 307, 826, 372, 843 ], [ 307, 846, 376, 863 ], [ 379, 846, 389, 863 ], [ 421, 567, 431, 583 ], [ 434, 567, 461, 583 ], [ 464, 567, 487, 583 ], [ 421, 587, 459, 603 ], [ 421, 607, 431, 623 ], [ 434, 607, 472, 623 ], [ 475, 607, 514, 623 ], [ 421, 627, 462, 643 ], [ 465, 627, 488, 643 ], [ 491, 627, 502, 643 ], [ 421, 647, 468, 663 ], [ 471, 647, 510, 663 ], [ 421, 667, 468, 683 ], [ 471, 667, 499, 683 ], [ 529, 567, 539, 583 ], [ 542, 567, 565, 583 ], [ 529, 587, 578, 603 ], [ 581, 587, 601, 603 ], [ 529, 607, 551, 623 ], [ 554, 607, 582, 623 ], [ 529, 627, 554, 643 ], [ 557, 627, 590, 643 ], [ 529, 647, 539, 663 ], [ 542, 647, 565, 663 ], [ 529, 667, 574, 683 ], [ 577, 667, 602, 683 ], [ 529, 687, 602, 703 ], [ 529, 707, 540, 723 ], [ 542, 707, 581, 723 ], [ 529, 726, 539, 743 ], [ 542, 726, 580, 743 ], [ 529, 746, 567, 763 ], [ 529, 766, 570, 783 ], [ 573, 766, 597, 783 ], [ 529, 786, 540, 803 ], [ 543, 786, 590, 803 ], [ 529, 806, 568, 823 ], [ 529, 826, 576, 843 ], [ 529, 846, 557, 863 ], [ 620, 567, 630, 583 ], [ 632, 567, 674, 583 ], [ 620, 587, 650, 603 ], [ 717, 567, 726, 583 ], [ 729, 567, 789, 583 ], [ 792, 567, 807, 583 ], [ 717, 587, 741, 603 ], [ 744, 587, 767, 603 ], [ 717, 607, 726, 623 ], [ 729, 607, 747, 623 ], [ 750, 607, 785, 623 ], [ 717, 627, 784, 643 ], [ 717, 647, 726, 663 ], [ 729, 647, 773, 663 ], [ 717, 667, 726, 683 ], [ 729, 667, 770, 683 ], [ 717, 687, 790, 703 ], [ 838, 567, 847, 583 ], [ 850, 567, 886, 583 ], [ 838, 587, 871, 603 ], [ 874, 587, 897, 603 ], [ 838, 607, 872, 623 ], [ 838, 627, 893, 643 ], [ 838, 647, 872, 663 ], [ 875, 647, 900, 663 ], [ 838, 667, 879, 683 ] ]
Materials Data data repositories independent Visualization proprietary quality (currently for for more than variables need to for materials sensitive data poor or no process) Manufacturing 500,000 be collected to discovery from 2. Tools to commercial create robust many mask materials datasets independent proprietary 2. Many varieties variables information of datasets 2. 3. Text, graphics, Visualization and images tools for materials 1. Data streams 1. High-throughput 1. Massive 1. 1. Sandbox as 1. Validation and 1. Mobile from computing (150,000 cores) search independent uncertainty applications peta/exascale data analysis legacy for growing working areas quantification (UQ) (apps) to Materials centralized for web-like infrastructure materials data between of simulation with access Genomics simulation responsiveness (infrastructure) different data experimental data materials systems 2. Mashup of 2. GPFS (storage) stakeholders 2. UQ in results from genomics 2. Distributed simulation outputs 3. MonogDB 2. Policy-driven multiple datasets information web dataflows across codes systems federation of from central 3. Search and (platform) datasets gateway to users crowd-driven with 4. 10 GB computation networking backend, flexibility 5. Various analytic for new targets tools such as 4. MapReduce and PyMatGen, search to join FireWorks, VASP, simulation and ABINIT, NWChem, experimental data BerkeleyGW, varied community codes 6. Large storage (storage) 7. Scalable and object store (platform)
Materials Data for Manufacturing data repositories for more than 500,000 commercial materials 2. Many varieties of datasets 3. Text, graphics, and images independent variables need to be collected to create robust datasets Visualization for materials discovery from many independent variables 2. Visualization tools for materials proprietary sensitive data 2. Tools to mask proprietary information quality (currently poor or no process) Materials Genomics 1. Data streams from peta/exascale centralized simulation systems 2. Distributed web dataflows from central gateway to users 1. High-throughput computing data analysis for web-like responsiveness 2. Mashup of simulation outputs across codes 3. Search and crowd-driven with computation backend, flexibility for new targets 4. MapReduce and search to join simulation and experimental data 1. Massive (150,000 cores) legacy infrastructure (infrastructure) 2. GPFS (storage) 3. MonogDB systems (platform) 4. 10 GB networking 5. Various analytic tools such as PyMatGen, FireWorks, VASP, ABINIT, NWChem, BerkeleyGW, varied community codes 6. Large storage (storage) 7. Scalable and object store (platform) 1. search for growing materials data 1. Sandbox as independent working areas between different data stakeholders 2. Policy-driven federation of datasets 1. Validation and uncertainty quantification (UQ) of simulation with experimental data 2. UQ in results from multiple datasets 1. Mobile applications (apps) to access materials genomics information
0.282058
[ 0, 1, 9, 24, 2, 3, 10, 11, 12, 25, 34, 39, 43, 44, 45, 48, 49, 51, 52, 53, 55, 56, 4, 13, 14, 15, 26, 27, 28, 35, 36, 40, 5, 16, 17, 29, 30, 37, 41, 46, 50, 54, 57, 58, 59, 6, 18, 19, 31, 32, 33, 38, 42, 47, 7, 8, 20, 21, 22, 23, 96, 108, 60, 61, 62, 76, 84, 97, 109, 117, 131, 132, 142, 143, 149, 150, 156, 157, 158, 63, 64, 77, 85, 86, 98, 99, 110, 118, 119, 120, 133, 134, 144, 145, 151, 152, 153, 159, 160, 164, 166, 167, 171, 172, 173, 177, 178, 179, 181, 182, 183, 186, 187, 190, 191, 65, 66, 78, 79, 87, 100, 111, 121, 122, 123, 135, 136, 146, 154, 161, 162, 163, 165, 168, 169, 170, 174, 175, 176, 180, 184, 185, 188, 189, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 67, 80, 88, 89, 101, 102, 68, 69, 70, 81, 90, 91, 103, 112, 113, 124, 137, 138, 147, 148, 155, 71, 72, 73, 82, 92, 93, 104, 105, 106, 114, 115, 125, 126, 127, 128, 129, 139, 140, 74, 75, 83, 94, 95, 107, 116, 130, 141 ]
M0363_v1_4695311424.docx
task-1430-762
171
[ [ 109, 168, 157, 184 ], [ 160, 168, 184, 184 ], [ 200, 168, 222, 184 ], [ 225, 168, 286, 184 ], [ 307, 168, 373, 184 ], [ 529, 168, 594, 184 ], [ 620, 168, 678, 184 ], [ 717, 168, 752, 184 ], [ 755, 168, 805, 184 ], [ 109, 188, 123, 204 ], [ 200, 188, 214, 204 ], [ 217, 188, 245, 204 ], [ 247, 188, 271, 204 ], [ 307, 188, 353, 204 ], [ 356, 188, 382, 204 ], [ 385, 188, 396, 204 ], [ 529, 188, 544, 204 ], [ 547, 188, 595, 204 ], [ 620, 188, 665, 204 ], [ 668, 188, 691, 204 ], [ 717, 188, 741, 204 ], [ 744, 188, 755, 204 ], [ 758, 188, 771, 204 ], [ 774, 188, 817, 204 ], [ 109, 208, 185, 224 ], [ 200, 208, 241, 224 ], [ 307, 208, 320, 224 ], [ 323, 208, 370, 224 ], [ 373, 208, 383, 224 ], [ 529, 208, 578, 224 ], [ 580, 208, 605, 224 ], [ 620, 208, 630, 224 ], [ 632, 208, 660, 224 ], [ 662, 208, 673, 224 ], [ 200, 228, 259, 244 ], [ 307, 228, 340, 244 ], [ 343, 228, 376, 244 ], [ 529, 228, 558, 244 ], [ 620, 228, 647, 244 ], [ 200, 247, 247, 264 ], [ 307, 247, 351, 264 ], [ 529, 247, 595, 264 ], [ 620, 247, 678, 264 ], [ 200, 267, 209, 284 ], [ 212, 267, 241, 284 ], [ 244, 267, 288, 284 ], [ 529, 267, 575, 284 ], [ 620, 267, 681, 284 ], [ 200, 287, 210, 304 ], [ 213, 287, 256, 304 ], [ 529, 287, 539, 304 ], [ 200, 307, 209, 324 ], [ 212, 307, 237, 324 ], [ 240, 307, 286, 324 ], [ 529, 307, 594, 324 ], [ 200, 327, 219, 343 ], [ 222, 327, 258, 343 ], [ 529, 327, 554, 343 ], [ 557, 327, 572, 343 ], [ 529, 367, 577, 383 ], [ 200, 389, 209, 405 ], [ 212, 389, 236, 405 ], [ 239, 389, 280, 405 ], [ 307, 389, 317, 405 ], [ 320, 389, 406, 405 ], [ 421, 389, 431, 405 ], [ 434, 389, 475, 405 ], [ 529, 389, 539, 405 ], [ 620, 389, 630, 405 ], [ 632, 389, 676, 405 ], [ 679, 389, 690, 405 ], [ 717, 389, 726, 405 ], [ 729, 389, 781, 405 ], [ 784, 389, 803, 405 ], [ 838, 389, 847, 405 ], [ 850, 389, 886, 405 ], [ 200, 409, 224, 425 ], [ 307, 409, 362, 425 ], [ 421, 409, 466, 425 ], [ 469, 409, 501, 425 ], [ 562, 409, 596, 425 ], [ 620, 409, 686, 425 ], [ 717, 409, 776, 425 ], [ 838, 409, 900, 425 ], [ 200, 429, 271, 445 ], [ 334, 429, 357, 445 ], [ 360, 429, 400, 445 ], [ 421, 429, 453, 445 ], [ 529, 429, 544, 445 ], [ 547, 429, 588, 445 ], [ 620, 429, 661, 445 ], [ 664, 429, 692, 445 ], [ 717, 429, 788, 445 ], [ 791, 429, 815, 445 ], [ 838, 429, 870, 445 ], [ 873, 429, 883, 445 ], [ 109, 449, 157, 465 ], [ 200, 449, 256, 465 ], [ 307, 449, 322, 465 ], [ 325, 449, 369, 465 ], [ 421, 449, 492, 465 ], [ 529, 449, 577, 465 ], [ 580, 449, 603, 465 ], [ 620, 449, 665, 465 ], [ 717, 449, 727, 465 ], [ 730, 449, 784, 465 ], [ 787, 449, 809, 465 ], [ 838, 449, 871, 465 ], [ 109, 469, 159, 485 ], [ 200, 469, 253, 485 ], [ 307, 469, 385, 485 ], [ 421, 469, 500, 485 ], [ 620, 469, 665, 485 ], [ 668, 469, 691, 485 ], [ 717, 469, 785, 485 ], [ 788, 469, 810, 485 ], [ 838, 469, 886, 485 ], [ 200, 488, 240, 505 ], [ 307, 488, 317, 505 ], [ 320, 488, 361, 505 ], [ 364, 488, 375, 505 ], [ 421, 488, 431, 505 ], [ 434, 488, 459, 505 ], [ 462, 488, 508, 505 ], [ 620, 488, 686, 505 ], [ 717, 488, 726, 505 ], [ 729, 488, 745, 505 ], [ 748, 488, 758, 505 ], [ 761, 488, 795, 505 ], [ 798, 488, 823, 505 ], [ 838, 488, 886, 505 ], [ 200, 508, 209, 525 ], [ 212, 508, 269, 525 ], [ 307, 508, 361, 525 ], [ 364, 508, 404, 525 ], [ 421, 508, 431, 525 ], [ 434, 508, 485, 525 ], [ 620, 508, 630, 525 ], [ 632, 508, 699, 525 ], [ 717, 508, 759, 525 ], [ 762, 508, 805, 525 ], [ 838, 508, 899, 525 ], [ 200, 528, 221, 545 ], [ 224, 528, 275, 545 ], [ 307, 528, 340, 545 ], [ 342, 528, 372, 545 ], [ 421, 528, 462, 545 ], [ 620, 528, 674, 545 ], [ 677, 528, 687, 545 ], [ 200, 548, 224, 565 ], [ 227, 548, 263, 565 ], [ 307, 548, 317, 565 ], [ 320, 548, 354, 565 ], [ 357, 548, 376, 565 ], [ 421, 548, 473, 565 ], [ 620, 548, 663, 565 ], [ 200, 568, 243, 584 ], [ 246, 568, 256, 584 ], [ 259, 568, 287, 584 ], [ 307, 568, 376, 584 ], [ 379, 568, 401, 584 ], [ 421, 568, 431, 584 ], [ 434, 568, 446, 584 ], [ 449, 568, 464, 584 ], [ 307, 588, 373, 604 ], [ 421, 588, 479, 604 ], [ 307, 608, 354, 624 ], [ 357, 608, 403, 624 ], [ 421, 608, 431, 624 ], [ 434, 608, 472, 624 ], [ 475, 608, 515, 624 ], [ 307, 628, 322, 644 ], [ 325, 628, 347, 644 ], [ 350, 628, 386, 644 ], [ 421, 628, 446, 644 ], [ 449, 628, 473, 644 ], [ 476, 628, 487, 644 ], [ 307, 648, 317, 664 ], [ 320, 648, 381, 664 ], [ 384, 648, 403, 664 ], [ 421, 648, 478, 664 ], [ 307, 668, 341, 684 ], [ 344, 668, 355, 684 ], [ 358, 668, 377, 684 ], [ 421, 668, 476, 684 ], [ 479, 668, 509, 684 ], [ 307, 688, 361, 704 ], [ 364, 688, 383, 704 ], [ 421, 688, 459, 704 ], [ 462, 688, 514, 704 ], [ 307, 708, 375, 724 ], [ 378, 708, 401, 724 ], [ 421, 708, 488, 724 ], [ 421, 728, 453, 744 ], [ 456, 728, 514, 744 ], [ 421, 748, 451, 764 ], [ 421, 768, 431, 784 ], [ 434, 768, 461, 784 ], [ 464, 768, 503, 784 ], [ 421, 788, 467, 804 ], [ 421, 808, 431, 824 ], [ 434, 808, 475, 824 ], [ 451, 828, 471, 844 ], [ 474, 828, 506, 844 ], [ 421, 847, 447, 864 ], [ 450, 847, 503, 864 ] ]
[ [ 109, 168, 157, 184 ], [ 160, 168, 184, 184 ], [ 109, 188, 123, 204 ], [ 109, 208, 185, 224 ], [ 200, 168, 222, 184 ], [ 225, 168, 286, 184 ], [ 200, 188, 214, 204 ], [ 217, 188, 245, 204 ], [ 247, 188, 271, 204 ], [ 200, 208, 241, 224 ], [ 200, 228, 259, 244 ], [ 200, 247, 247, 264 ], [ 200, 267, 209, 284 ], [ 212, 267, 241, 284 ], [ 244, 267, 288, 284 ], [ 200, 287, 210, 304 ], [ 213, 287, 256, 304 ], [ 200, 307, 209, 324 ], [ 212, 307, 237, 324 ], [ 240, 307, 286, 324 ], [ 200, 327, 219, 343 ], [ 222, 327, 258, 343 ], [ 307, 168, 373, 184 ], [ 307, 188, 353, 204 ], [ 356, 188, 382, 204 ], [ 385, 188, 396, 204 ], [ 307, 208, 320, 224 ], [ 323, 208, 370, 224 ], [ 373, 208, 383, 224 ], [ 307, 228, 340, 244 ], [ 343, 228, 376, 244 ], [ 307, 247, 351, 264 ], [ 529, 168, 594, 184 ], [ 529, 188, 544, 204 ], [ 547, 188, 595, 204 ], [ 529, 208, 578, 224 ], [ 580, 208, 605, 224 ], [ 529, 228, 558, 244 ], [ 529, 247, 595, 264 ], [ 529, 267, 575, 284 ], [ 529, 287, 539, 304 ], [ 529, 307, 594, 324 ], [ 529, 327, 554, 343 ], [ 557, 327, 572, 343 ], [ 529, 367, 577, 383 ], [ 620, 168, 678, 184 ], [ 620, 188, 665, 204 ], [ 668, 188, 691, 204 ], [ 620, 208, 630, 224 ], [ 632, 208, 660, 224 ], [ 662, 208, 673, 224 ], [ 620, 228, 647, 244 ], [ 620, 247, 678, 264 ], [ 620, 267, 681, 284 ], [ 717, 168, 752, 184 ], [ 755, 168, 805, 184 ], [ 717, 188, 741, 204 ], [ 744, 188, 755, 204 ], [ 758, 188, 771, 204 ], [ 774, 188, 817, 204 ], [ 109, 449, 157, 465 ], [ 109, 469, 159, 485 ], [ 200, 389, 209, 405 ], [ 212, 389, 236, 405 ], [ 239, 389, 280, 405 ], [ 200, 409, 224, 425 ], [ 200, 429, 271, 445 ], [ 200, 449, 256, 465 ], [ 200, 469, 253, 485 ], [ 200, 488, 240, 505 ], [ 200, 508, 209, 525 ], [ 212, 508, 269, 525 ], [ 200, 528, 221, 545 ], [ 224, 528, 275, 545 ], [ 200, 548, 224, 565 ], [ 227, 548, 263, 565 ], [ 200, 568, 243, 584 ], [ 246, 568, 256, 584 ], [ 259, 568, 287, 584 ], [ 307, 389, 317, 405 ], [ 320, 389, 406, 405 ], [ 307, 409, 362, 425 ], [ 334, 429, 357, 445 ], [ 360, 429, 400, 445 ], [ 307, 449, 322, 465 ], [ 325, 449, 369, 465 ], [ 307, 469, 385, 485 ], [ 307, 488, 317, 505 ], [ 320, 488, 361, 505 ], [ 364, 488, 375, 505 ], [ 307, 508, 361, 525 ], [ 364, 508, 404, 525 ], [ 307, 528, 340, 545 ], [ 342, 528, 372, 545 ], [ 307, 548, 317, 565 ], [ 320, 548, 354, 565 ], [ 357, 548, 376, 565 ], [ 307, 568, 376, 584 ], [ 379, 568, 401, 584 ], [ 307, 588, 373, 604 ], [ 307, 608, 354, 624 ], [ 357, 608, 403, 624 ], [ 307, 628, 322, 644 ], [ 325, 628, 347, 644 ], [ 350, 628, 386, 644 ], [ 307, 648, 317, 664 ], [ 320, 648, 381, 664 ], [ 384, 648, 403, 664 ], [ 307, 668, 341, 684 ], [ 344, 668, 355, 684 ], [ 358, 668, 377, 684 ], [ 307, 688, 361, 704 ], [ 364, 688, 383, 704 ], [ 307, 708, 375, 724 ], [ 378, 708, 401, 724 ], [ 421, 389, 431, 405 ], [ 434, 389, 475, 405 ], [ 421, 409, 466, 425 ], [ 469, 409, 501, 425 ], [ 421, 429, 453, 445 ], [ 421, 449, 492, 465 ], [ 421, 469, 500, 485 ], [ 421, 488, 431, 505 ], [ 434, 488, 459, 505 ], [ 462, 488, 508, 505 ], [ 421, 508, 431, 525 ], [ 434, 508, 485, 525 ], [ 421, 528, 462, 545 ], [ 421, 548, 473, 565 ], [ 421, 568, 431, 584 ], [ 434, 568, 446, 584 ], [ 449, 568, 464, 584 ], [ 421, 588, 479, 604 ], [ 421, 608, 431, 624 ], [ 434, 608, 472, 624 ], [ 475, 608, 515, 624 ], [ 421, 628, 446, 644 ], [ 449, 628, 473, 644 ], [ 476, 628, 487, 644 ], [ 421, 648, 478, 664 ], [ 421, 668, 476, 684 ], [ 479, 668, 509, 684 ], [ 421, 688, 459, 704 ], [ 462, 688, 514, 704 ], [ 421, 708, 488, 724 ], [ 421, 728, 453, 744 ], [ 456, 728, 514, 744 ], [ 421, 748, 451, 764 ], [ 421, 768, 431, 784 ], [ 434, 768, 461, 784 ], [ 464, 768, 503, 784 ], [ 421, 788, 467, 804 ], [ 421, 808, 431, 824 ], [ 434, 808, 475, 824 ], [ 451, 828, 471, 844 ], [ 474, 828, 506, 844 ], [ 421, 847, 447, 864 ], [ 450, 847, 503, 864 ], [ 529, 389, 539, 405 ], [ 562, 409, 596, 425 ], [ 529, 429, 544, 445 ], [ 547, 429, 588, 445 ], [ 529, 449, 577, 465 ], [ 580, 449, 603, 465 ], [ 620, 389, 630, 405 ], [ 632, 389, 676, 405 ], [ 679, 389, 690, 405 ], [ 620, 409, 686, 425 ], [ 620, 429, 661, 445 ], [ 664, 429, 692, 445 ], [ 620, 449, 665, 465 ], [ 620, 469, 665, 485 ], [ 668, 469, 691, 485 ], [ 620, 488, 686, 505 ], [ 620, 508, 630, 525 ], [ 632, 508, 699, 525 ], [ 620, 528, 674, 545 ], [ 677, 528, 687, 545 ], [ 620, 548, 663, 565 ], [ 717, 389, 726, 405 ], [ 729, 389, 781, 405 ], [ 784, 389, 803, 405 ], [ 717, 409, 776, 425 ], [ 717, 429, 788, 445 ], [ 791, 429, 815, 445 ], [ 717, 449, 727, 465 ], [ 730, 449, 784, 465 ], [ 787, 449, 809, 465 ], [ 717, 469, 785, 485 ], [ 788, 469, 810, 485 ], [ 717, 488, 726, 505 ], [ 729, 488, 745, 505 ], [ 748, 488, 758, 505 ], [ 761, 488, 795, 505 ], [ 798, 488, 823, 505 ], [ 717, 508, 759, 525 ], [ 762, 508, 805, 525 ], [ 838, 389, 847, 405 ], [ 850, 389, 886, 405 ], [ 838, 409, 900, 425 ], [ 838, 429, 870, 445 ], [ 873, 429, 883, 445 ], [ 838, 449, 871, 465 ], [ 838, 469, 886, 485 ], [ 838, 488, 886, 505 ], [ 838, 508, 899, 525 ] ]
(networking) 1. Traditional and 1. Large-scale 1. Computing 1. Multi-level 1. Protection of 1. Data fusion from 1. Efficient Social new architecture modeling for infrastructure detailed PII of variety of data method of Contagion for dynamic various events that can capture network individuals used sources (i.e., Stata moving data Modeling for distributed (disease, emotions, human-to-human in modeling data files) Planning processing on behaviors, etc.) interactions on 2. Data 2. Data consistency commodity 2. Scalable fusion various social 2. protection and and no corruption clusters between combined events via the Visualization secure platform 3. Preprocessing of 2. Fine-resolution datasets Internet with for raw data models and 3. Multi-level (infrastructure) interactions computation datasets to analysis while 2. File servers and support Twitter generating databases network traffic sufficient results (platform) 3. Huge data quickly 3. Ethernet and storage Infiniband supporting annual networking data growth (networking) 4. Specialized simulators, open source software, and proprietary modeling (application) 5. Huge user accounts across country boundaries (networking) 1. Special 1. Web-based 1. Expandable 1. Access by 1. Federated 1. Data storage and -- Biodiversity dedicated or services, mobile users identity archiving, data and LifeWatch overlay sensor services, storage resource 2. Advanced/ management exchange and network relational for global users for mobile integration 2. Storage: databases, NoSQL 2. Cloud researchers and 2. Data lifecycle distributed, 2. Personalized community visualization mobile sensors management: data historical, and virtual labs resource required 3. 4D 2. Access provenance, referral
(networking) Social Contagion Modeling for Planning 1. Traditional and new architecture for dynamic distributed processing on commodity clusters 2. Fine-resolution models and datasets to support Twitter network traffic 3. Huge data storage supporting annual data growth 1. Large-scale modeling for various events (disease, emotions, behaviors, etc.) 2. Scalable fusion between combined datasets 3. Multi-level analysis while generating sufficient results quickly 1. Computing infrastructure that can capture human-to-human interactions on various social events via the Internet (infrastructure) 2. File servers and databases (platform) 3. Ethernet and Infiniband networking (networking) 4. Specialized simulators, open source software, and proprietary modeling (application) 5. Huge user accounts across country boundaries (networking) 1. Multi-level detailed network 2. Visualization with interactions 1. Protection of PII of individuals used in modeling 2. Data protection and secure platform for computation 1. Data fusion from variety of data sources (i.e., Stata data files) 2. Data consistency and no corruption 3. Preprocessing of raw data 1. Efficient method of moving data Biodiversity and LifeWatch 1. Special dedicated or overlay sensor network 2. Storage: distributed, historical, and 1. Web-based services, services, relational databases, NoSQL 2. Personalized virtual labs 1. Expandable storage resource for global users 2. Cloud community resource required 1. Access by mobile users 2. Advanced/ visualization 3. 4D 1. Federated identity management for mobile researchers and mobile sensors 2. Access 1. Data storage and archiving, data exchange and integration 2. Data lifecycle management: data provenance, referral --
0.295087
[ 0, 19, 33, 49, 50, 59, 1, 2, 3, 20, 21, 34, 35, 51, 60, 61, 71, 83, 95, 96, 103, 104, 110, 111, 118, 119, 122, 123, 127, 128, 129, 134, 136, 137, 139, 140, 4, 5, 22, 23, 36, 37, 52, 53, 62, 63, 72, 73, 74, 84, 85, 97, 105, 106, 112, 113, 120, 124, 125, 130, 6, 7, 24, 38, 39, 40, 54, 64, 65, 75, 76, 86, 87, 88, 98, 107, 114, 115, 116, 117, 121, 126, 131, 132, 133, 135, 138, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 8, 9, 25, 41, 77, 89, 99, 108, 10, 11, 12, 26, 27, 42, 43, 55, 56, 66, 67, 78, 79, 90, 91, 100, 109, 13, 14, 15, 16, 28, 29, 30, 44, 45, 46, 57, 58, 68, 69, 70, 80, 81, 82, 92, 93, 94, 101, 102, 17, 18, 31, 32, 47, 48, 176, 185, 186, 160, 161, 177, 178, 187, 188, 197, 205, 206, 216, 225, 226, 162, 163, 179, 189, 198, 207, 208, 217, 218, 227, 228, 164, 165, 190, 191, 199, 200, 201, 209, 210, 219, 229, 230, 166, 167, 168, 180, 181, 192, 193, 220, 231, 232, 169, 170, 182, 194, 202, 203, 211, 212, 221, 222, 233, 234, 171, 172, 173, 174, 183, 184, 195, 196, 204, 213, 214, 215, 223, 224, 235, 236, 175 ]
M0363_v1_4695311424.docx
task-1430-762
181
[ [ 421, 168, 487, 184 ], [ 200, 189, 209, 206 ], [ 212, 189, 267, 206 ], [ 270, 189, 290, 206 ], [ 307, 189, 317, 206 ], [ 320, 189, 377, 206 ], [ 421, 189, 431, 206 ], [ 434, 189, 490, 206 ], [ 529, 189, 539, 206 ], [ 542, 189, 597, 206 ], [ 620, 189, 630, 206 ], [ 632, 189, 686, 206 ], [ 689, 189, 700, 206 ], [ 717, 189, 726, 206 ], [ 729, 189, 753, 206 ], [ 756, 189, 787, 206 ], [ 790, 189, 815, 206 ], [ 838, 189, 847, 206 ], [ 850, 189, 892, 206 ], [ 109, 209, 138, 225 ], [ 200, 209, 221, 225 ], [ 224, 209, 287, 225 ], [ 307, 209, 355, 225 ], [ 358, 209, 373, 225 ], [ 421, 209, 492, 225 ], [ 529, 209, 571, 225 ], [ 620, 209, 633, 225 ], [ 636, 209, 646, 225 ], [ 717, 209, 752, 225 ], [ 755, 209, 765, 225 ], [ 768, 209, 791, 225 ], [ 838, 209, 878, 225 ], [ 881, 209, 892, 225 ], [ 109, 229, 161, 245 ], [ 200, 229, 214, 245 ], [ 217, 229, 261, 245 ], [ 307, 229, 345, 245 ], [ 347, 229, 382, 245 ], [ 421, 229, 442, 245 ], [ 445, 229, 463, 245 ], [ 466, 229, 506, 245 ], [ 529, 229, 572, 245 ], [ 620, 229, 675, 245 ], [ 678, 229, 702, 245 ], [ 717, 229, 756, 245 ], [ 759, 229, 781, 245 ], [ 784, 229, 810, 245 ], [ 838, 229, 876, 245 ], [ 878, 229, 901, 245 ], [ 109, 249, 157, 265 ], [ 160, 249, 175, 265 ], [ 200, 249, 256, 265 ], [ 307, 249, 352, 265 ], [ 355, 249, 407, 265 ], [ 421, 249, 512, 265 ], [ 620, 249, 630, 265 ], [ 632, 249, 680, 265 ], [ 717, 249, 740, 265 ], [ 743, 249, 767, 265 ], [ 109, 269, 153, 285 ], [ 200, 269, 254, 285 ], [ 257, 269, 270, 285 ], [ 307, 269, 361, 285 ], [ 364, 269, 386, 285 ], [ 421, 269, 482, 285 ], [ 485, 269, 498, 285 ], [ 620, 269, 630, 285 ], [ 632, 269, 657, 285 ], [ 717, 269, 726, 285 ], [ 729, 269, 753, 285 ], [ 756, 269, 815, 285 ], [ 200, 289, 258, 305 ], [ 307, 289, 317, 305 ], [ 320, 289, 362, 305 ], [ 365, 289, 396, 305 ], [ 421, 289, 458, 305 ], [ 461, 289, 490, 305 ], [ 529, 289, 539, 305 ], [ 620, 289, 674, 305 ], [ 677, 289, 696, 305 ], [ 717, 289, 736, 305 ], [ 739, 289, 752, 305 ], [ 755, 289, 810, 305 ], [ 200, 309, 239, 325 ], [ 307, 309, 353, 325 ], [ 356, 309, 407, 325 ], [ 421, 309, 455, 325 ], [ 458, 309, 472, 325 ], [ 475, 309, 492, 325 ], [ 529, 309, 594, 325 ], [ 620, 309, 654, 325 ], [ 657, 309, 701, 325 ], [ 717, 309, 726, 325 ], [ 729, 309, 801, 325 ], [ 804, 309, 814, 325 ], [ 200, 329, 209, 345 ], [ 212, 329, 289, 345 ], [ 307, 329, 351, 345 ], [ 421, 329, 463, 345 ], [ 529, 329, 552, 345 ], [ 620, 329, 635, 345 ], [ 717, 329, 736, 345 ], [ 739, 329, 762, 345 ], [ 200, 349, 237, 365 ], [ 240, 349, 259, 365 ], [ 307, 349, 317, 365 ], [ 320, 349, 375, 365 ], [ 421, 349, 500, 365 ], [ 529, 349, 590, 365 ], [ 620, 349, 686, 365 ], [ 200, 369, 243, 385 ], [ 246, 369, 256, 385 ], [ 307, 369, 347, 385 ], [ 350, 369, 378, 385 ], [ 421, 369, 431, 385 ], [ 434, 369, 451, 385 ], [ 454, 369, 491, 385 ], [ 494, 369, 513, 385 ], [ 200, 389, 240, 405 ], [ 243, 389, 280, 405 ], [ 307, 389, 363, 405 ], [ 421, 389, 473, 405 ], [ 200, 409, 242, 425 ], [ 245, 409, 276, 425 ], [ 307, 409, 355, 425 ], [ 358, 409, 392, 425 ], [ 421, 409, 473, 425 ], [ 200, 429, 209, 445 ], [ 212, 429, 239, 445 ], [ 241, 429, 264, 445 ], [ 307, 429, 343, 445 ], [ 421, 429, 431, 445 ], [ 434, 429, 478, 445 ], [ 481, 429, 501, 445 ], [ 200, 449, 238, 465 ], [ 421, 449, 473, 465 ], [ 200, 469, 255, 485 ], [ 258, 469, 293, 485 ], [ 421, 469, 479, 485 ], [ 200, 488, 222, 505 ], [ 225, 488, 262, 505 ], [ 421, 488, 487, 505 ], [ 421, 508, 431, 525 ], [ 434, 508, 490, 525 ], [ 421, 528, 478, 545 ], [ 481, 528, 507, 545 ], [ 421, 548, 455, 565 ], [ 458, 548, 507, 565 ], [ 421, 568, 440, 584 ], [ 443, 568, 502, 584 ], [ 421, 588, 469, 604 ], [ 421, 608, 486, 624 ], [ 421, 628, 431, 644 ], [ 434, 628, 460, 644 ], [ 463, 628, 485, 644 ], [ 421, 648, 467, 664 ], [ 470, 648, 502, 664 ], [ 421, 668, 461, 684 ], [ 421, 688, 479, 704 ], [ 421, 708, 487, 724 ], [ 200, 729, 209, 746 ], [ 212, 729, 248, 746 ], [ 307, 729, 317, 746 ], [ 320, 729, 378, 746 ], [ 421, 729, 431, 746 ], [ 434, 729, 493, 746 ], [ 529, 729, 539, 746 ], [ 542, 729, 576, 746 ], [ 578, 729, 591, 746 ], [ 620, 729, 630, 746 ], [ 632, 729, 685, 746 ], [ 717, 729, 726, 746 ], [ 729, 729, 753, 746 ], [ 756, 729, 794, 746 ], [ 797, 729, 817, 746 ], [ 838, 729, 845, 746 ], [ 109, 749, 169, 766 ], [ 200, 749, 250, 766 ], [ 253, 749, 264, 766 ], [ 307, 749, 351, 766 ], [ 529, 749, 564, 766 ], [ 567, 749, 594, 766 ], [ 620, 749, 659, 766 ], [ 717, 749, 766, 766 ], [ 769, 749, 792, 766 ], [ 109, 769, 128, 786 ], [ 131, 769, 182, 786 ], [ 200, 769, 237, 786 ], [ 240, 769, 274, 786 ], [ 341, 769, 385, 786 ], [ 421, 769, 459, 786 ], [ 462, 769, 507, 786 ], [ 529, 769, 539, 786 ], [ 542, 769, 597, 786 ], [ 620, 769, 688, 786 ], [ 717, 769, 765, 786 ], [ 768, 769, 787, 786 ], [ 200, 789, 242, 806 ], [ 307, 789, 356, 806 ], [ 421, 789, 436, 806 ], [ 439, 789, 470, 806 ], [ 473, 789, 500, 806 ], [ 620, 789, 635, 806 ], [ 638, 789, 673, 806 ], [ 717, 789, 773, 806 ], [ 200, 809, 209, 825 ], [ 212, 809, 255, 825 ], [ 307, 809, 362, 825 ], [ 365, 809, 400, 825 ], [ 421, 809, 431, 825 ], [ 434, 809, 463, 825 ], [ 620, 809, 680, 825 ], [ 683, 809, 702, 825 ], [ 717, 809, 726, 825 ], [ 729, 809, 753, 825 ], [ 756, 809, 797, 825 ], [ 200, 829, 259, 845 ], [ 307, 829, 317, 845 ], [ 320, 829, 385, 845 ], [ 421, 829, 479, 845 ], [ 529, 829, 592, 845 ], [ 620, 829, 655, 845 ], [ 658, 829, 697, 845 ], [ 717, 829, 788, 845 ], [ 791, 829, 814, 845 ], [ 200, 849, 249, 865 ], [ 252, 849, 272, 865 ], [ 307, 849, 340, 865 ], [ 343, 849, 364, 865 ], [ 421, 849, 466, 865 ], [ 469, 849, 513, 865 ], [ 529, 849, 539, 865 ], [ 542, 849, 556, 865 ], [ 620, 849, 630, 865 ], [ 632, 849, 666, 865 ], [ 717, 849, 780, 865 ], [ 783, 849, 822, 865 ] ]
[ [ 421, 168, 487, 184 ], [ 109, 209, 138, 225 ], [ 109, 229, 161, 245 ], [ 109, 249, 157, 265 ], [ 160, 249, 175, 265 ], [ 109, 269, 153, 285 ], [ 200, 189, 209, 206 ], [ 212, 189, 267, 206 ], [ 270, 189, 290, 206 ], [ 200, 209, 221, 225 ], [ 224, 209, 287, 225 ], [ 200, 229, 214, 245 ], [ 217, 229, 261, 245 ], [ 200, 249, 256, 265 ], [ 200, 269, 254, 285 ], [ 257, 269, 270, 285 ], [ 200, 289, 258, 305 ], [ 200, 309, 239, 325 ], [ 200, 329, 209, 345 ], [ 212, 329, 289, 345 ], [ 200, 349, 237, 365 ], [ 240, 349, 259, 365 ], [ 200, 369, 243, 385 ], [ 246, 369, 256, 385 ], [ 200, 389, 240, 405 ], [ 243, 389, 280, 405 ], [ 200, 409, 242, 425 ], [ 245, 409, 276, 425 ], [ 200, 429, 209, 445 ], [ 212, 429, 239, 445 ], [ 241, 429, 264, 445 ], [ 200, 449, 238, 465 ], [ 200, 469, 255, 485 ], [ 258, 469, 293, 485 ], [ 200, 488, 222, 505 ], [ 225, 488, 262, 505 ], [ 307, 189, 317, 206 ], [ 320, 189, 377, 206 ], [ 307, 209, 355, 225 ], [ 358, 209, 373, 225 ], [ 307, 229, 345, 245 ], [ 347, 229, 382, 245 ], [ 307, 249, 352, 265 ], [ 355, 249, 407, 265 ], [ 307, 269, 361, 285 ], [ 364, 269, 386, 285 ], [ 307, 289, 317, 305 ], [ 320, 289, 362, 305 ], [ 365, 289, 396, 305 ], [ 307, 309, 353, 325 ], [ 356, 309, 407, 325 ], [ 307, 329, 351, 345 ], [ 307, 349, 317, 365 ], [ 320, 349, 375, 365 ], [ 307, 369, 347, 385 ], [ 350, 369, 378, 385 ], [ 307, 389, 363, 405 ], [ 307, 409, 355, 425 ], [ 358, 409, 392, 425 ], [ 307, 429, 343, 445 ], [ 421, 189, 431, 206 ], [ 434, 189, 490, 206 ], [ 421, 209, 492, 225 ], [ 421, 229, 442, 245 ], [ 445, 229, 463, 245 ], [ 466, 229, 506, 245 ], [ 421, 249, 512, 265 ], [ 421, 269, 482, 285 ], [ 485, 269, 498, 285 ], [ 421, 289, 458, 305 ], [ 461, 289, 490, 305 ], [ 421, 309, 455, 325 ], [ 458, 309, 472, 325 ], [ 475, 309, 492, 325 ], [ 421, 329, 463, 345 ], [ 421, 349, 500, 365 ], [ 421, 369, 431, 385 ], [ 434, 369, 451, 385 ], [ 454, 369, 491, 385 ], [ 494, 369, 513, 385 ], [ 421, 389, 473, 405 ], [ 421, 409, 473, 425 ], [ 421, 429, 431, 445 ], [ 434, 429, 478, 445 ], [ 481, 429, 501, 445 ], [ 421, 449, 473, 465 ], [ 421, 469, 479, 485 ], [ 421, 488, 487, 505 ], [ 421, 508, 431, 525 ], [ 434, 508, 490, 525 ], [ 421, 528, 478, 545 ], [ 481, 528, 507, 545 ], [ 421, 548, 455, 565 ], [ 458, 548, 507, 565 ], [ 421, 568, 440, 584 ], [ 443, 568, 502, 584 ], [ 421, 588, 469, 604 ], [ 421, 608, 486, 624 ], [ 421, 628, 431, 644 ], [ 434, 628, 460, 644 ], [ 463, 628, 485, 644 ], [ 421, 648, 467, 664 ], [ 470, 648, 502, 664 ], [ 421, 668, 461, 684 ], [ 421, 688, 479, 704 ], [ 421, 708, 487, 724 ], [ 529, 189, 539, 206 ], [ 542, 189, 597, 206 ], [ 529, 209, 571, 225 ], [ 529, 229, 572, 245 ], [ 529, 289, 539, 305 ], [ 529, 309, 594, 325 ], [ 529, 329, 552, 345 ], [ 529, 349, 590, 365 ], [ 620, 189, 630, 206 ], [ 632, 189, 686, 206 ], [ 689, 189, 700, 206 ], [ 620, 209, 633, 225 ], [ 636, 209, 646, 225 ], [ 620, 229, 675, 245 ], [ 678, 229, 702, 245 ], [ 620, 249, 630, 265 ], [ 632, 249, 680, 265 ], [ 620, 269, 630, 285 ], [ 632, 269, 657, 285 ], [ 620, 289, 674, 305 ], [ 677, 289, 696, 305 ], [ 620, 309, 654, 325 ], [ 657, 309, 701, 325 ], [ 620, 329, 635, 345 ], [ 620, 349, 686, 365 ], [ 717, 189, 726, 206 ], [ 729, 189, 753, 206 ], [ 756, 189, 787, 206 ], [ 790, 189, 815, 206 ], [ 717, 209, 752, 225 ], [ 755, 209, 765, 225 ], [ 768, 209, 791, 225 ], [ 717, 229, 756, 245 ], [ 759, 229, 781, 245 ], [ 784, 229, 810, 245 ], [ 717, 249, 740, 265 ], [ 743, 249, 767, 265 ], [ 717, 269, 726, 285 ], [ 729, 269, 753, 285 ], [ 756, 269, 815, 285 ], [ 717, 289, 736, 305 ], [ 739, 289, 752, 305 ], [ 755, 289, 810, 305 ], [ 717, 309, 726, 325 ], [ 729, 309, 801, 325 ], [ 804, 309, 814, 325 ], [ 717, 329, 736, 345 ], [ 739, 329, 762, 345 ], [ 838, 189, 847, 206 ], [ 850, 189, 892, 206 ], [ 838, 209, 878, 225 ], [ 881, 209, 892, 225 ], [ 838, 229, 876, 245 ], [ 878, 229, 901, 245 ], [ 109, 749, 169, 766 ], [ 109, 769, 128, 786 ], [ 131, 769, 182, 786 ], [ 200, 729, 209, 746 ], [ 212, 729, 248, 746 ], [ 200, 749, 250, 766 ], [ 253, 749, 264, 766 ], [ 200, 769, 237, 786 ], [ 240, 769, 274, 786 ], [ 200, 789, 242, 806 ], [ 200, 809, 209, 825 ], [ 212, 809, 255, 825 ], [ 200, 829, 259, 845 ], [ 200, 849, 249, 865 ], [ 252, 849, 272, 865 ], [ 307, 729, 317, 746 ], [ 320, 729, 378, 746 ], [ 307, 749, 351, 766 ], [ 341, 769, 385, 786 ], [ 307, 789, 356, 806 ], [ 307, 809, 362, 825 ], [ 365, 809, 400, 825 ], [ 307, 829, 317, 845 ], [ 320, 829, 385, 845 ], [ 307, 849, 340, 865 ], [ 343, 849, 364, 865 ], [ 421, 729, 431, 746 ], [ 434, 729, 493, 746 ], [ 421, 769, 459, 786 ], [ 462, 769, 507, 786 ], [ 421, 789, 436, 806 ], [ 439, 789, 470, 806 ], [ 473, 789, 500, 806 ], [ 421, 809, 431, 825 ], [ 434, 809, 463, 825 ], [ 421, 829, 479, 845 ], [ 421, 849, 466, 865 ], [ 469, 849, 513, 865 ], [ 529, 729, 539, 746 ], [ 542, 729, 576, 746 ], [ 578, 729, 591, 746 ], [ 529, 749, 564, 766 ], [ 567, 749, 594, 766 ], [ 529, 769, 539, 786 ], [ 542, 769, 597, 786 ], [ 529, 829, 592, 845 ], [ 529, 849, 539, 865 ], [ 542, 849, 556, 865 ], [ 620, 729, 630, 746 ], [ 632, 729, 685, 746 ], [ 620, 749, 659, 766 ], [ 620, 769, 688, 786 ], [ 620, 789, 635, 806 ], [ 638, 789, 673, 806 ], [ 620, 809, 680, 825 ], [ 683, 809, 702, 825 ], [ 620, 829, 655, 845 ], [ 658, 829, 697, 845 ], [ 620, 849, 630, 865 ], [ 632, 849, 666, 865 ], [ 717, 729, 726, 746 ], [ 729, 729, 753, 746 ], [ 756, 729, 794, 746 ], [ 797, 729, 817, 746 ], [ 717, 749, 766, 766 ], [ 769, 749, 792, 766 ], [ 717, 769, 765, 786 ], [ 768, 769, 787, 786 ], [ 717, 789, 773, 806 ], [ 717, 809, 726, 825 ], [ 729, 809, 753, 825 ], [ 756, 809, 797, 825 ], [ 717, 829, 788, 845 ], [ 791, 829, 814, 845 ], [ 717, 849, 780, 865 ], [ 783, 849, 822, 865 ], [ 838, 729, 845, 746 ] ]
various and real-time computing cluster algorithms synchronous 4. EC2 computing 2. Asynchronous distributed cluster and real-time computing 5. Various graph synchronous 4. Different parallel libraries, distributed algorithms for management computing different tools, databases, partitioning semantic web schemes for tools efficient operation 1. Large amounts 1. Test analytic 1. PERL, Python, 1. Analytic 1. Security -- -- NIST of algorithms working C/C++, Matlab, R flows involving requirements Information web with written development users for protecting Access pages, tweets, language, speech, tools; creation of sensitive data Division images, video human imagery, ground-up test while enabling 2. Scaling etc. against real or and measurement meaningful to larger realistic data; applications developmental data, intrinsic and challenge: performance annotation engineering evaluation; uncertainty artificial data that shared measurement, sufficiently evaluation performance captures the testbeds that measurement for variability of real protect the incompletely data involving intellectual annotated data, humans property of measuring analytic analytic algorithm performance for developers heterogeneous data and analytic flows involving users 1. Process key 1. Provision of 1. iRODS data 1. General 1. Federate -- -- DataNet format types general analytics management visualization across existing (iRODS) NetCDF, HDF5, workflows needed software workflows authentication
various algorithms 2. Asynchronous and real-time synchronous distributed computing and real-time synchronous distributed computing 4. Different parallel algorithms for different partitioning schemes for efficient operation computing cluster 4. EC2 computing cluster 5. Various graph libraries, management tools, databases, semantic web tools NIST Information Access Division 1. Large amounts of web pages, tweets, images, video 2. Scaling to larger data, intrinsic and annotation uncertainty measurement, performance measurement for incompletely annotated data, measuring analytic performance for heterogeneous data and analytic flows involving users 1. Test analytic algorithms working with written language, speech, human imagery, etc. against real or realistic data; challenge: engineering artificial data that sufficiently captures the variability of real data involving humans 1. PERL, Python, C/C++, Matlab, R development tools; creation of ground-up test and measurement applications 1. Analytic flows involving users 1. Security requirements for protecting sensitive data while enabling meaningful developmental performance evaluation; shared evaluation testbeds that protect the intellectual property of analytic algorithm developers -- -- DataNet (iRODS) 1. Process key format types NetCDF, HDF5, 1. Provision of general analytics workflows needed 1. iRODS data management software 1. General visualization workflows 1. Federate across existing authentication -- --
0.203562
[ 0, 5, 10, 11, 14, 15, 20, 25, 29, 1, 2, 6, 12, 16, 21, 22, 23, 26, 27, 30, 33, 36, 37, 39, 40, 3, 4, 7, 8, 9, 13, 17, 18, 19, 24, 28, 31, 32, 34, 35, 38, 56, 66, 74, 84, 41, 42, 43, 57, 67, 75, 76, 85, 86, 93, 94, 102, 103, 108, 109, 110, 113, 116, 121, 124, 129, 130, 136, 140, 141, 145, 147, 149, 150, 152, 153, 154, 155, 156, 157, 158, 44, 45, 46, 58, 59, 68, 69, 77, 78, 87, 88, 95, 96, 97, 98, 104, 105, 111, 114, 117, 118, 119, 122, 125, 126, 131, 132, 133, 137, 138, 142, 47, 48, 49, 60, 61, 62, 70, 79, 80, 81, 89, 90, 99, 100, 106, 50, 51, 63, 64, 71, 52, 53, 65, 72, 73, 82, 83, 91, 92, 101, 107, 112, 115, 120, 123, 127, 128, 134, 135, 139, 143, 144, 146, 148, 151, 54, 55, 174, 183, 159, 160, 161, 175, 176, 184, 185, 162, 163, 164, 177, 178, 186, 187, 165, 166, 167, 179, 188, 168, 169, 180, 189, 170, 171, 181, 182, 190, 172, 173 ]
M0363_v1_4695311424.docx
task-1430-762
185
[ [ 200, 168, 237, 184 ], [ 307, 168, 327, 184 ], [ 330, 168, 376, 184 ], [ 421, 168, 476, 184 ], [ 479, 168, 513, 184 ], [ 200, 188, 254, 204 ], [ 307, 188, 373, 204 ], [ 421, 188, 431, 204 ], [ 434, 188, 453, 204 ], [ 456, 188, 511, 204 ], [ 200, 208, 209, 224 ], [ 212, 208, 284, 224 ], [ 307, 208, 364, 224 ], [ 421, 208, 456, 224 ], [ 200, 228, 219, 244 ], [ 222, 228, 269, 244 ], [ 307, 228, 362, 244 ], [ 421, 228, 431, 244 ], [ 434, 228, 472, 244 ], [ 475, 228, 505, 244 ], [ 200, 247, 265, 264 ], [ 307, 247, 317, 264 ], [ 320, 247, 366, 264 ], [ 369, 247, 407, 264 ], [ 421, 247, 465, 264 ], [ 200, 267, 256, 284 ], [ 307, 267, 362, 284 ], [ 365, 267, 380, 284 ], [ 421, 267, 489, 284 ], [ 200, 287, 254, 304 ], [ 307, 287, 352, 304 ], [ 421, 287, 449, 304 ], [ 452, 287, 507, 304 ], [ 307, 307, 367, 324 ], [ 421, 307, 467, 324 ], [ 470, 307, 492, 324 ], [ 307, 327, 352, 343 ], [ 355, 327, 370, 343 ], [ 421, 327, 446, 343 ], [ 307, 347, 349, 363 ], [ 352, 347, 403, 363 ], [ 200, 369, 209, 385 ], [ 212, 369, 240, 385 ], [ 243, 369, 288, 385 ], [ 307, 369, 317, 385 ], [ 320, 369, 341, 385 ], [ 344, 369, 384, 385 ], [ 421, 369, 431, 385 ], [ 434, 369, 461, 385 ], [ 464, 369, 504, 385 ], [ 529, 369, 539, 385 ], [ 542, 369, 583, 385 ], [ 620, 369, 630, 385 ], [ 632, 369, 674, 385 ], [ 717, 369, 724, 385 ], [ 838, 369, 845, 385 ], [ 109, 389, 132, 405 ], [ 200, 389, 210, 405 ], [ 307, 389, 362, 405 ], [ 365, 389, 406, 405 ], [ 421, 389, 455, 405 ], [ 458, 389, 498, 405 ], [ 501, 389, 507, 405 ], [ 529, 389, 556, 405 ], [ 559, 389, 605, 405 ], [ 620, 389, 690, 405 ], [ 109, 409, 170, 425 ], [ 256, 409, 278, 425 ], [ 307, 409, 330, 425 ], [ 333, 409, 371, 425 ], [ 421, 409, 489, 425 ], [ 529, 409, 556, 425 ], [ 620, 409, 635, 425 ], [ 638, 409, 691, 425 ], [ 109, 429, 143, 445 ], [ 200, 429, 232, 445 ], [ 235, 429, 273, 445 ], [ 307, 429, 357, 445 ], [ 360, 429, 399, 445 ], [ 421, 429, 450, 445 ], [ 453, 429, 495, 445 ], [ 498, 429, 508, 445 ], [ 620, 429, 665, 445 ], [ 668, 429, 691, 445 ], [ 109, 449, 149, 465 ], [ 200, 449, 239, 465 ], [ 242, 449, 270, 465 ], [ 307, 449, 343, 465 ], [ 346, 449, 391, 465 ], [ 421, 449, 475, 465 ], [ 478, 449, 498, 465 ], [ 620, 449, 648, 465 ], [ 650, 449, 694, 465 ], [ 200, 469, 209, 485 ], [ 212, 469, 247, 485 ], [ 307, 469, 326, 485 ], [ 329, 469, 366, 485 ], [ 369, 469, 388, 485 ], [ 391, 469, 402, 485 ], [ 421, 469, 440, 485 ], [ 443, 469, 515, 485 ], [ 620, 469, 678, 485 ], [ 244, 488, 255, 505 ], [ 258, 488, 288, 505 ], [ 307, 488, 347, 505 ], [ 350, 488, 376, 505 ], [ 421, 488, 483, 505 ], [ 620, 488, 697, 505 ], [ 200, 508, 226, 525 ], [ 229, 508, 269, 525 ], [ 272, 508, 292, 525 ], [ 307, 508, 360, 525 ], [ 620, 508, 687, 525 ], [ 200, 528, 256, 545 ], [ 307, 528, 368, 545 ], [ 620, 528, 677, 545 ], [ 200, 548, 258, 565 ], [ 307, 548, 349, 565 ], [ 352, 548, 375, 565 ], [ 378, 548, 399, 565 ], [ 620, 548, 655, 565 ], [ 200, 568, 274, 584 ], [ 307, 568, 363, 584 ], [ 620, 568, 674, 584 ], [ 200, 588, 266, 604 ], [ 307, 588, 352, 604 ], [ 355, 588, 372, 604 ], [ 620, 588, 664, 604 ], [ 667, 588, 688, 604 ], [ 200, 608, 271, 624 ], [ 274, 608, 289, 624 ], [ 307, 608, 358, 624 ], [ 361, 608, 371, 624 ], [ 374, 608, 393, 624 ], [ 620, 608, 658, 624 ], [ 661, 608, 678, 624 ], [ 200, 628, 266, 644 ], [ 307, 628, 330, 644 ], [ 333, 628, 379, 644 ], [ 620, 628, 677, 644 ], [ 200, 648, 253, 664 ], [ 256, 648, 282, 664 ], [ 307, 648, 348, 664 ], [ 620, 648, 665, 664 ], [ 668, 648, 678, 664 ], [ 200, 668, 253, 684 ], [ 620, 668, 660, 684 ], [ 200, 688, 239, 704 ], [ 620, 688, 670, 704 ], [ 200, 708, 266, 724 ], [ 269, 708, 284, 724 ], [ 620, 708, 677, 724 ], [ 200, 728, 277, 744 ], [ 200, 748, 222, 764 ], [ 225, 748, 245, 764 ], [ 248, 748, 287, 764 ], [ 200, 768, 227, 784 ], [ 230, 768, 276, 784 ], [ 200, 788, 227, 804 ], [ 200, 809, 209, 825 ], [ 212, 809, 251, 825 ], [ 254, 809, 271, 825 ], [ 307, 809, 317, 825 ], [ 320, 809, 367, 825 ], [ 370, 809, 381, 825 ], [ 421, 809, 431, 825 ], [ 434, 809, 465, 825 ], [ 468, 809, 491, 825 ], [ 529, 809, 539, 825 ], [ 542, 809, 582, 825 ], [ 620, 809, 630, 825 ], [ 632, 809, 678, 825 ], [ 717, 809, 724, 825 ], [ 838, 809, 845, 825 ], [ 109, 829, 151, 845 ], [ 200, 829, 235, 845 ], [ 238, 829, 265, 845 ], [ 307, 829, 346, 845 ], [ 349, 829, 393, 845 ], [ 421, 829, 489, 845 ], [ 529, 829, 592, 845 ], [ 620, 829, 652, 845 ], [ 655, 829, 694, 845 ], [ 109, 849, 148, 865 ], [ 200, 849, 241, 865 ], [ 244, 849, 275, 865 ], [ 307, 849, 360, 865 ], [ 363, 849, 402, 865 ], [ 421, 849, 466, 865 ], [ 529, 849, 582, 865 ], [ 620, 849, 695, 865 ] ]
[ [ 200, 168, 237, 184 ], [ 200, 188, 254, 204 ], [ 200, 208, 209, 224 ], [ 212, 208, 284, 224 ], [ 200, 228, 219, 244 ], [ 222, 228, 269, 244 ], [ 200, 247, 265, 264 ], [ 200, 267, 256, 284 ], [ 200, 287, 254, 304 ], [ 307, 168, 327, 184 ], [ 330, 168, 376, 184 ], [ 307, 188, 373, 204 ], [ 307, 208, 364, 224 ], [ 307, 228, 362, 244 ], [ 307, 247, 317, 264 ], [ 320, 247, 366, 264 ], [ 369, 247, 407, 264 ], [ 307, 267, 362, 284 ], [ 365, 267, 380, 284 ], [ 307, 287, 352, 304 ], [ 307, 307, 367, 324 ], [ 307, 327, 352, 343 ], [ 355, 327, 370, 343 ], [ 307, 347, 349, 363 ], [ 352, 347, 403, 363 ], [ 421, 168, 476, 184 ], [ 479, 168, 513, 184 ], [ 421, 188, 431, 204 ], [ 434, 188, 453, 204 ], [ 456, 188, 511, 204 ], [ 421, 208, 456, 224 ], [ 421, 228, 431, 244 ], [ 434, 228, 472, 244 ], [ 475, 228, 505, 244 ], [ 421, 247, 465, 264 ], [ 421, 267, 489, 284 ], [ 421, 287, 449, 304 ], [ 452, 287, 507, 304 ], [ 421, 307, 467, 324 ], [ 470, 307, 492, 324 ], [ 421, 327, 446, 343 ], [ 109, 389, 132, 405 ], [ 109, 409, 170, 425 ], [ 109, 429, 143, 445 ], [ 109, 449, 149, 465 ], [ 200, 369, 209, 385 ], [ 212, 369, 240, 385 ], [ 243, 369, 288, 385 ], [ 200, 389, 210, 405 ], [ 256, 409, 278, 425 ], [ 200, 429, 232, 445 ], [ 235, 429, 273, 445 ], [ 200, 449, 239, 465 ], [ 242, 449, 270, 465 ], [ 200, 469, 209, 485 ], [ 212, 469, 247, 485 ], [ 244, 488, 255, 505 ], [ 258, 488, 288, 505 ], [ 200, 508, 226, 525 ], [ 229, 508, 269, 525 ], [ 272, 508, 292, 525 ], [ 200, 528, 256, 545 ], [ 200, 548, 258, 565 ], [ 200, 568, 274, 584 ], [ 200, 588, 266, 604 ], [ 200, 608, 271, 624 ], [ 274, 608, 289, 624 ], [ 200, 628, 266, 644 ], [ 200, 648, 253, 664 ], [ 256, 648, 282, 664 ], [ 200, 668, 253, 684 ], [ 200, 688, 239, 704 ], [ 200, 708, 266, 724 ], [ 269, 708, 284, 724 ], [ 200, 728, 277, 744 ], [ 200, 748, 222, 764 ], [ 225, 748, 245, 764 ], [ 248, 748, 287, 764 ], [ 200, 768, 227, 784 ], [ 230, 768, 276, 784 ], [ 200, 788, 227, 804 ], [ 307, 369, 317, 385 ], [ 320, 369, 341, 385 ], [ 344, 369, 384, 385 ], [ 307, 389, 362, 405 ], [ 365, 389, 406, 405 ], [ 307, 409, 330, 425 ], [ 333, 409, 371, 425 ], [ 307, 429, 357, 445 ], [ 360, 429, 399, 445 ], [ 307, 449, 343, 465 ], [ 346, 449, 391, 465 ], [ 307, 469, 326, 485 ], [ 329, 469, 366, 485 ], [ 369, 469, 388, 485 ], [ 391, 469, 402, 485 ], [ 307, 488, 347, 505 ], [ 350, 488, 376, 505 ], [ 307, 508, 360, 525 ], [ 307, 528, 368, 545 ], [ 307, 548, 349, 565 ], [ 352, 548, 375, 565 ], [ 378, 548, 399, 565 ], [ 307, 568, 363, 584 ], [ 307, 588, 352, 604 ], [ 355, 588, 372, 604 ], [ 307, 608, 358, 624 ], [ 361, 608, 371, 624 ], [ 374, 608, 393, 624 ], [ 307, 628, 330, 644 ], [ 333, 628, 379, 644 ], [ 307, 648, 348, 664 ], [ 421, 369, 431, 385 ], [ 434, 369, 461, 385 ], [ 464, 369, 504, 385 ], [ 421, 389, 455, 405 ], [ 458, 389, 498, 405 ], [ 501, 389, 507, 405 ], [ 421, 409, 489, 425 ], [ 421, 429, 450, 445 ], [ 453, 429, 495, 445 ], [ 498, 429, 508, 445 ], [ 421, 449, 475, 465 ], [ 478, 449, 498, 465 ], [ 421, 469, 440, 485 ], [ 443, 469, 515, 485 ], [ 421, 488, 483, 505 ], [ 529, 369, 539, 385 ], [ 542, 369, 583, 385 ], [ 529, 389, 556, 405 ], [ 559, 389, 605, 405 ], [ 529, 409, 556, 425 ], [ 620, 369, 630, 385 ], [ 632, 369, 674, 385 ], [ 620, 389, 690, 405 ], [ 620, 409, 635, 425 ], [ 638, 409, 691, 425 ], [ 620, 429, 665, 445 ], [ 668, 429, 691, 445 ], [ 620, 449, 648, 465 ], [ 650, 449, 694, 465 ], [ 620, 469, 678, 485 ], [ 620, 488, 697, 505 ], [ 620, 508, 687, 525 ], [ 620, 528, 677, 545 ], [ 620, 548, 655, 565 ], [ 620, 568, 674, 584 ], [ 620, 588, 664, 604 ], [ 667, 588, 688, 604 ], [ 620, 608, 658, 624 ], [ 661, 608, 678, 624 ], [ 620, 628, 677, 644 ], [ 620, 648, 665, 664 ], [ 668, 648, 678, 664 ], [ 620, 668, 660, 684 ], [ 620, 688, 670, 704 ], [ 620, 708, 677, 724 ], [ 717, 369, 724, 385 ], [ 838, 369, 845, 385 ], [ 109, 829, 151, 845 ], [ 109, 849, 148, 865 ], [ 200, 809, 209, 825 ], [ 212, 809, 251, 825 ], [ 254, 809, 271, 825 ], [ 200, 829, 235, 845 ], [ 238, 829, 265, 845 ], [ 200, 849, 241, 865 ], [ 244, 849, 275, 865 ], [ 307, 809, 317, 825 ], [ 320, 809, 367, 825 ], [ 370, 809, 381, 825 ], [ 307, 829, 346, 845 ], [ 349, 829, 393, 845 ], [ 307, 849, 360, 865 ], [ 363, 849, 402, 865 ], [ 421, 809, 431, 825 ], [ 434, 809, 465, 825 ], [ 468, 809, 491, 825 ], [ 421, 829, 489, 845 ], [ 421, 849, 466, 865 ], [ 529, 809, 539, 825 ], [ 542, 809, 582, 825 ], [ 529, 829, 592, 845 ], [ 529, 849, 582, 865 ], [ 620, 809, 630, 825 ], [ 632, 809, 678, 825 ], [ 620, 829, 652, 845 ], [ 655, 829, 694, 845 ], [ 620, 849, 695, 865 ], [ 717, 809, 724, 825 ], [ 838, 809, 845, 825 ] ]
Dicom 2. interoperability environments 2. Real-time and across storage through batch data and network Generic protocol types Security Service API and pluggable authentication modules (GSI, Kerberos, InCommon, Shibboleth) 2. Access controls on files independent of the storage location 1. Integration of -- 1. Software: -- 1. Significant 1. Integration of -- The Discinnet metadata Symfony-PHP, but optional metadata Process approaches Linux, MySQL security and approaches across across disciplines privacy disciplines including secure servers and anonymization 1. All data types, 1. Data graph 1. Cloud 1. Efficient -- -- -- Semantic image to text, processing community Graph-Search structures to 2. RDBMS resource required protein sequence visualization needed 1. Multiple 1. Standard 1. High-volume -- 1. Multiple -- -- Light source streams of bioinformatics data transfer to security and beamlines data to be tools (BLAST, remote batch privacy stored and HMMER, multiple processing requirements analyzed later alignment and resource to be satisfied 2. Sample data to phylogenetic tools,
Dicom 2. Real-time and batch data 2. interoperability across storage and network protocol types environments through Generic Security Service API and pluggable authentication modules (GSI, Kerberos, InCommon, Shibboleth) 2. Access controls on files independent of the storage location The Discinnet Process 1. Integration of metadata approaches across disciplines -- 1. Software: Symfony-PHP, Linux, MySQL -- 1. Significant but optional security and privacy including secure servers and anonymization 1. Integration of metadata approaches across disciplines -- Semantic Graph-Search 1. All data types, image to text, structures to protein sequence 1. Data graph processing 2. RDBMS 1. Cloud community resource required 1. Efficient visualization needed -- -- -- Light source beamlines 1. Multiple streams of data to be stored and analyzed later 2. Sample data to 1. Standard bioinformatics tools (BLAST, HMMER, multiple alignment and phylogenetic tools, 1. High-volume data transfer to remote batch processing resource -- 1. Multiple security and privacy requirements to be satisfied -- --
0.394615
[ 0, 4, 5, 6, 10, 11, 1, 2, 7, 8, 12, 13, 15, 16, 3, 9, 14, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 51, 52, 58, 38, 39, 40, 53, 59, 66, 67, 41, 42, 43, 54, 60, 61, 44, 45, 46, 55, 56, 62, 63, 68, 70, 71, 72, 73, 74, 47, 48, 49, 57, 64, 65, 69, 50, 89, 95, 75, 76, 77, 78, 90, 91, 92, 96, 97, 102, 103, 79, 80, 81, 93, 98, 99, 82, 83, 94, 100, 101, 84, 85, 104, 105, 86, 87, 88, 117, 118, 127, 106, 107, 119, 120, 128, 129, 130, 136, 137, 142, 143, 150, 151, 152, 153, 108, 109, 121, 131, 132, 138, 139, 144, 145, 154, 155, 110, 111, 122, 123, 124, 133, 134, 140, 146, 112, 113, 114, 125, 126, 135, 141, 147, 148, 149, 115, 116 ]
M0363_v1_4695311424.docx
task-1430-762
186
[ [ 200, 168, 232, 184 ], [ 421, 168, 431, 184 ], [ 434, 168, 513, 184 ], [ 620, 168, 691, 184 ], [ 200, 188, 209, 204 ], [ 212, 188, 261, 204 ], [ 264, 188, 283, 204 ], [ 421, 188, 453, 204 ], [ 456, 188, 495, 204 ], [ 620, 188, 661, 204 ], [ 200, 208, 228, 224 ], [ 231, 208, 254, 224 ], [ 421, 208, 440, 224 ], [ 443, 208, 486, 224 ], [ 620, 208, 660, 224 ], [ 421, 228, 465, 244 ], [ 467, 228, 495, 244 ], [ 620, 228, 661, 244 ], [ 664, 228, 701, 244 ], [ 620, 247, 637, 264 ], [ 640, 247, 659, 264 ], [ 620, 267, 670, 284 ], [ 620, 287, 695, 304 ], [ 620, 307, 664, 324 ], [ 667, 307, 691, 324 ], [ 620, 327, 669, 343 ], [ 620, 347, 680, 363 ], [ 620, 367, 679, 383 ], [ 620, 387, 630, 403 ], [ 632, 387, 666, 403 ], [ 620, 407, 662, 423 ], [ 665, 407, 678, 423 ], [ 681, 407, 702, 423 ], [ 620, 427, 686, 443 ], [ 689, 427, 699, 443 ], [ 620, 447, 637, 463 ], [ 640, 447, 678, 463 ], [ 620, 467, 661, 483 ], [ 200, 488, 209, 505 ], [ 212, 488, 269, 505 ], [ 272, 488, 282, 505 ], [ 307, 488, 315, 505 ], [ 421, 488, 431, 505 ], [ 434, 488, 483, 505 ], [ 529, 488, 537, 505 ], [ 620, 488, 630, 505 ], [ 632, 488, 685, 505 ], [ 717, 488, 726, 505 ], [ 729, 488, 786, 505 ], [ 789, 488, 800, 505 ], [ 838, 488, 845, 505 ], [ 109, 508, 128, 525 ], [ 130, 508, 178, 525 ], [ 200, 508, 249, 525 ], [ 421, 508, 493, 525 ], [ 620, 508, 638, 525 ], [ 640, 508, 683, 525 ], [ 717, 508, 766, 525 ], [ 109, 528, 148, 545 ], [ 200, 528, 259, 545 ], [ 421, 528, 451, 545 ], [ 454, 528, 490, 545 ], [ 620, 528, 660, 545 ], [ 663, 528, 683, 545 ], [ 717, 528, 776, 545 ], [ 779, 528, 811, 545 ], [ 200, 548, 232, 565 ], [ 235, 548, 288, 565 ], [ 620, 548, 657, 565 ], [ 717, 548, 769, 565 ], [ 620, 568, 667, 584 ], [ 620, 588, 654, 604 ], [ 657, 588, 694, 604 ], [ 620, 608, 639, 624 ], [ 620, 628, 696, 644 ], [ 200, 650, 209, 666 ], [ 212, 650, 225, 666 ], [ 228, 650, 251, 666 ], [ 254, 650, 285, 666 ], [ 307, 650, 317, 666 ], [ 320, 650, 344, 666 ], [ 347, 650, 376, 666 ], [ 421, 650, 431, 666 ], [ 434, 650, 463, 666 ], [ 529, 650, 539, 666 ], [ 542, 650, 584, 666 ], [ 620, 650, 628, 666 ], [ 717, 650, 724, 666 ], [ 838, 650, 845, 666 ], [ 109, 670, 156, 686 ], [ 200, 670, 231, 686 ], [ 233, 670, 244, 686 ], [ 247, 670, 271, 686 ], [ 307, 670, 362, 686 ], [ 421, 670, 479, 686 ], [ 109, 690, 179, 706 ], [ 200, 690, 251, 706 ], [ 254, 690, 265, 706 ], [ 307, 690, 317, 706 ], [ 320, 690, 358, 706 ], [ 421, 690, 466, 706 ], [ 469, 690, 513, 706 ], [ 200, 710, 237, 726 ], [ 240, 710, 289, 726 ], [ 529, 710, 592, 726 ], [ 529, 729, 568, 746 ], [ 200, 751, 209, 767 ], [ 212, 751, 255, 767 ], [ 307, 751, 317, 767 ], [ 320, 751, 366, 767 ], [ 421, 751, 431, 767 ], [ 434, 751, 499, 767 ], [ 529, 751, 537, 767 ], [ 620, 751, 630, 767 ], [ 632, 751, 676, 767 ], [ 717, 751, 724, 767 ], [ 838, 751, 845, 767 ], [ 109, 771, 134, 787 ], [ 136, 771, 171, 787 ], [ 200, 771, 240, 787 ], [ 243, 771, 254, 787 ], [ 307, 771, 382, 787 ], [ 421, 771, 444, 787 ], [ 447, 771, 488, 787 ], [ 490, 771, 501, 787 ], [ 620, 771, 660, 787 ], [ 663, 771, 683, 787 ], [ 109, 791, 161, 807 ], [ 226, 791, 249, 807 ], [ 252, 791, 262, 807 ], [ 265, 791, 278, 807 ], [ 307, 791, 333, 807 ], [ 336, 791, 374, 807 ], [ 421, 791, 459, 807 ], [ 462, 791, 491, 807 ], [ 620, 791, 657, 807 ], [ 200, 811, 232, 827 ], [ 235, 811, 255, 827 ], [ 307, 811, 353, 827 ], [ 356, 811, 398, 827 ], [ 421, 811, 476, 827 ], [ 620, 811, 690, 827 ], [ 200, 831, 245, 847 ], [ 248, 831, 271, 847 ], [ 307, 831, 359, 847 ], [ 362, 831, 381, 847 ], [ 421, 831, 466, 847 ], [ 620, 831, 631, 847 ], [ 634, 831, 647, 847 ], [ 650, 831, 692, 847 ], [ 200, 851, 209, 867 ], [ 212, 851, 250, 867 ], [ 252, 851, 275, 867 ], [ 278, 851, 289, 867 ], [ 307, 851, 373, 867 ], [ 376, 851, 405, 867 ] ]
[ [ 200, 168, 232, 184 ], [ 200, 188, 209, 204 ], [ 212, 188, 261, 204 ], [ 264, 188, 283, 204 ], [ 200, 208, 228, 224 ], [ 231, 208, 254, 224 ], [ 421, 168, 431, 184 ], [ 434, 168, 513, 184 ], [ 421, 188, 453, 204 ], [ 456, 188, 495, 204 ], [ 421, 208, 440, 224 ], [ 443, 208, 486, 224 ], [ 421, 228, 465, 244 ], [ 467, 228, 495, 244 ], [ 620, 168, 691, 184 ], [ 620, 188, 661, 204 ], [ 620, 208, 660, 224 ], [ 620, 228, 661, 244 ], [ 664, 228, 701, 244 ], [ 620, 247, 637, 264 ], [ 640, 247, 659, 264 ], [ 620, 267, 670, 284 ], [ 620, 287, 695, 304 ], [ 620, 307, 664, 324 ], [ 667, 307, 691, 324 ], [ 620, 327, 669, 343 ], [ 620, 347, 680, 363 ], [ 620, 367, 679, 383 ], [ 620, 387, 630, 403 ], [ 632, 387, 666, 403 ], [ 620, 407, 662, 423 ], [ 665, 407, 678, 423 ], [ 681, 407, 702, 423 ], [ 620, 427, 686, 443 ], [ 689, 427, 699, 443 ], [ 620, 447, 637, 463 ], [ 640, 447, 678, 463 ], [ 620, 467, 661, 483 ], [ 109, 508, 128, 525 ], [ 130, 508, 178, 525 ], [ 109, 528, 148, 545 ], [ 200, 488, 209, 505 ], [ 212, 488, 269, 505 ], [ 272, 488, 282, 505 ], [ 200, 508, 249, 525 ], [ 200, 528, 259, 545 ], [ 200, 548, 232, 565 ], [ 235, 548, 288, 565 ], [ 307, 488, 315, 505 ], [ 421, 488, 431, 505 ], [ 434, 488, 483, 505 ], [ 421, 508, 493, 525 ], [ 421, 528, 451, 545 ], [ 454, 528, 490, 545 ], [ 529, 488, 537, 505 ], [ 620, 488, 630, 505 ], [ 632, 488, 685, 505 ], [ 620, 508, 638, 525 ], [ 640, 508, 683, 525 ], [ 620, 528, 660, 545 ], [ 663, 528, 683, 545 ], [ 620, 548, 657, 565 ], [ 620, 568, 667, 584 ], [ 620, 588, 654, 604 ], [ 657, 588, 694, 604 ], [ 620, 608, 639, 624 ], [ 620, 628, 696, 644 ], [ 717, 488, 726, 505 ], [ 729, 488, 786, 505 ], [ 789, 488, 800, 505 ], [ 717, 508, 766, 525 ], [ 717, 528, 776, 545 ], [ 779, 528, 811, 545 ], [ 717, 548, 769, 565 ], [ 838, 488, 845, 505 ], [ 109, 670, 156, 686 ], [ 109, 690, 179, 706 ], [ 200, 650, 209, 666 ], [ 212, 650, 225, 666 ], [ 228, 650, 251, 666 ], [ 254, 650, 285, 666 ], [ 200, 670, 231, 686 ], [ 233, 670, 244, 686 ], [ 247, 670, 271, 686 ], [ 200, 690, 251, 706 ], [ 254, 690, 265, 706 ], [ 200, 710, 237, 726 ], [ 240, 710, 289, 726 ], [ 307, 650, 317, 666 ], [ 320, 650, 344, 666 ], [ 347, 650, 376, 666 ], [ 307, 670, 362, 686 ], [ 307, 690, 317, 706 ], [ 320, 690, 358, 706 ], [ 421, 650, 431, 666 ], [ 434, 650, 463, 666 ], [ 421, 670, 479, 686 ], [ 421, 690, 466, 706 ], [ 469, 690, 513, 706 ], [ 529, 650, 539, 666 ], [ 542, 650, 584, 666 ], [ 529, 710, 592, 726 ], [ 529, 729, 568, 746 ], [ 620, 650, 628, 666 ], [ 717, 650, 724, 666 ], [ 838, 650, 845, 666 ], [ 109, 771, 134, 787 ], [ 136, 771, 171, 787 ], [ 109, 791, 161, 807 ], [ 200, 751, 209, 767 ], [ 212, 751, 255, 767 ], [ 200, 771, 240, 787 ], [ 243, 771, 254, 787 ], [ 226, 791, 249, 807 ], [ 252, 791, 262, 807 ], [ 265, 791, 278, 807 ], [ 200, 811, 232, 827 ], [ 235, 811, 255, 827 ], [ 200, 831, 245, 847 ], [ 248, 831, 271, 847 ], [ 200, 851, 209, 867 ], [ 212, 851, 250, 867 ], [ 252, 851, 275, 867 ], [ 278, 851, 289, 867 ], [ 307, 751, 317, 767 ], [ 320, 751, 366, 767 ], [ 307, 771, 382, 787 ], [ 307, 791, 333, 807 ], [ 336, 791, 374, 807 ], [ 307, 811, 353, 827 ], [ 356, 811, 398, 827 ], [ 307, 831, 359, 847 ], [ 362, 831, 381, 847 ], [ 307, 851, 373, 867 ], [ 376, 851, 405, 867 ], [ 421, 751, 431, 767 ], [ 434, 751, 499, 767 ], [ 421, 771, 444, 787 ], [ 447, 771, 488, 787 ], [ 490, 771, 501, 787 ], [ 421, 791, 459, 807 ], [ 462, 791, 491, 807 ], [ 421, 811, 476, 827 ], [ 421, 831, 466, 847 ], [ 529, 751, 537, 767 ], [ 620, 751, 630, 767 ], [ 632, 751, 676, 767 ], [ 620, 771, 660, 787 ], [ 663, 771, 683, 787 ], [ 620, 791, 657, 807 ], [ 620, 811, 690, 827 ], [ 620, 831, 631, 847 ], [ 634, 831, 647, 847 ], [ 650, 831, 692, 847 ], [ 717, 751, 724, 767 ], [ 838, 751, 845, 767 ] ]
47 200 TB (current), 500 Data analyzed Re-analysis datasets are MapReduce or the Data mining customized Atmospheric TB within 5 years incrementally inconsistent in format, like, SciDB or other for specific event types Turbulence resolution, semantics, and scientific database metadata; interpretation/analysis of each of these input streams into a common product 48 Up to 30 PB/year 42 GB/second Variety across simulation National Center for Need analytics next to Climate Studies from 15 end-to-end from simulations groups and between Atmospheric Research data storage simulations at observation and simulation (NCAR) PIO library and NERSC, more at utilities NCL and NCO, other HPC centers parallel NetCDF 49 — — From omics of the microbes PFLOWTran, postgres, Data mining, data quality DOE-BER in the soil to watershed HDF5, Akuna, NEWT, assessment, Subsurface hydro-biogeochemistry, etc. across Biogeochemistry from observation to datasets, reduced model simulation development, statistics, quality assessment, data fusion 50 — Streaming data Flux data merged with EddyPro, custom Data mining, data quality DOE-BER from ~150 towers biological, disturbance, and analysis software, R, assessment, AmeriFlux and in AmeriFlux and other ancillary data Python, neural correlation across FLUXNET over 500 towers networks, Matlab datasets, data Networks distributed assimilation, data globally collecting interpolation, statistics, flux quality assessment, data measurements fusion 51 4 TB/year for a city Streaming data Tuple-based: timeseries, R/Matlab, Weka, Forecasting models, Consumption with 1.4 million from millions of database rows; graph-based: Hadoop; GIS-based machine learning models, forecasting in sensors, such as Los sensors network topology, customer visualization time series analysis, Smart Grids Angeles connectivity; some semantic clustering, motif data for normalization detection, complex event processing, visual network analysis
47 Atmospheric Turbulence 200 TB (current), 500 TB within 5 years Data analyzed incrementally Re-analysis datasets are inconsistent in format, resolution, semantics, and metadata; interpretation/analysis of each of these input streams into a common product MapReduce or the like, SciDB or other scientific database Data mining customized for specific event types 48 Climate Studies Up to 30 PB/year from 15 end-to-end simulations at NERSC, more at other HPC centers 42 GB/second from simulations Variety across simulation groups and between observation and simulation National Center for Atmospheric Research (NCAR) PIO library and utilities NCL and NCO, parallel NetCDF Need analytics next to data storage 49 DOE-BER Subsurface Biogeochemistry — — From omics of the microbes in the soil to watershed hydro-biogeochemistry, from observation to simulation PFLOWTran, postgres, HDF5, Akuna, NEWT, etc. Data mining, data quality assessment, across datasets, reduced model development, statistics, quality assessment, data fusion 50 DOE-BER AmeriFlux and FLUXNET Networks — Streaming data from ~150 towers in AmeriFlux and over 500 towers distributed globally collecting flux measurements Flux data merged with biological, disturbance, and other ancillary data EddyPro, custom analysis software, R, Python, neural networks, Matlab Data mining, data quality assessment, across datasets, data assimilation, data interpolation, statistics, quality assessment, data fusion 51 Consumption forecasting in Smart Grids 4 TB/year for a city with 1.4 million sensors, such as Los Angeles Streaming data from millions of sensors Tuple-based: timeseries, database rows; graph-based: network topology, customer connectivity; some semantic data for normalization R/Matlab, Weka, Hadoop; GIS-based visualization Forecasting models, machine learning models, time series analysis, clustering, motif detection, complex event processing, visual network analysis correlation
0.419404
[ 0, 16, 33, 1, 2, 3, 4, 17, 18, 19, 20, 5, 6, 21, 7, 8, 9, 22, 23, 24, 34, 35, 36, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 10, 11, 12, 25, 26, 27, 28, 37, 38, 13, 14, 15, 29, 30, 31, 32, 51, 68, 69, 52, 53, 54, 55, 70, 71, 72, 82, 83, 91, 92, 93, 98, 99, 100, 56, 57, 73, 74, 58, 59, 60, 75, 76, 77, 84, 85, 86, 61, 62, 63, 78, 79, 87, 88, 89, 90, 94, 95, 96, 97, 101, 102, 64, 65, 66, 67, 80, 81, 103, 117, 127, 131, 104, 105, 106, 107, 108, 109, 110, 118, 119, 120, 121, 122, 128, 132, 133, 134, 138, 111, 112, 123, 124, 125, 129, 113, 114, 115, 116, 126, 130, 135, 136, 137, 139, 140, 141, 142, 143, 144, 145, 159, 170, 171, 182, 190, 146, 147, 148, 160, 161, 162, 172, 173, 174, 183, 184, 185, 191, 194, 195, 198, 202, 149, 150, 151, 152, 163, 164, 165, 175, 176, 177, 153, 154, 166, 167, 168, 178, 179, 186, 187, 155, 156, 157, 158, 169, 181, 188, 189, 192, 193, 196, 197, 199, 200, 201, 203, 204, 218, 233, 234, 247, 248, 205, 206, 207, 208, 209, 219, 220, 221, 235, 236, 237, 238, 249, 210, 211, 222, 223, 224, 239, 212, 213, 225, 226, 227, 240, 241, 242, 250, 251, 252, 255, 256, 257, 214, 215, 228, 229, 243, 216, 217, 230, 231, 232, 244, 245, 246, 253, 254, 258, 259, 260, 261, 262, 263, 264, 180 ]
M0394_v1_4746659136.docx
task-1430-774
168
[ [ 98, 137, 110, 159 ], [ 233, 143, 252, 159 ], [ 255, 143, 268, 159 ], [ 271, 143, 319, 159 ], [ 322, 143, 342, 159 ], [ 356, 143, 380, 159 ], [ 383, 143, 429, 159 ], [ 468, 143, 525, 159 ], [ 528, 143, 571, 159 ], [ 574, 143, 591, 159 ], [ 632, 143, 693, 159 ], [ 696, 143, 707, 159 ], [ 710, 143, 727, 159 ], [ 763, 143, 787, 159 ], [ 790, 143, 825, 159 ], [ 828, 143, 886, 159 ], [ 124, 163, 191, 179 ], [ 233, 163, 246, 179 ], [ 249, 163, 281, 179 ], [ 284, 163, 290, 179 ], [ 293, 163, 321, 179 ], [ 356, 163, 427, 179 ], [ 468, 163, 530, 179 ], [ 533, 163, 543, 179 ], [ 546, 163, 584, 179 ], [ 632, 163, 653, 179 ], [ 656, 163, 684, 179 ], [ 687, 163, 698, 179 ], [ 701, 163, 729, 179 ], [ 763, 163, 778, 179 ], [ 781, 163, 819, 179 ], [ 822, 163, 851, 179 ], [ 854, 163, 881, 179 ], [ 124, 183, 183, 199 ], [ 468, 183, 523, 199 ], [ 526, 183, 581, 199 ], [ 584, 183, 603, 199 ], [ 632, 183, 677, 199 ], [ 680, 183, 727, 199 ], [ 468, 203, 521, 219 ], [ 468, 223, 585, 239 ], [ 588, 223, 599, 239 ], [ 468, 243, 492, 259 ], [ 495, 243, 506, 259 ], [ 509, 243, 537, 259 ], [ 540, 243, 567, 259 ], [ 570, 243, 611, 259 ], [ 468, 263, 488, 279 ], [ 491, 263, 497, 279 ], [ 500, 263, 546, 279 ], [ 549, 263, 589, 279 ], [ 98, 278, 110, 300 ], [ 233, 284, 248, 300 ], [ 251, 284, 261, 300 ], [ 264, 284, 277, 300 ], [ 280, 284, 321, 300 ], [ 356, 284, 369, 300 ], [ 372, 284, 428, 300 ], [ 468, 284, 505, 300 ], [ 508, 284, 540, 300 ], [ 543, 284, 597, 300 ], [ 632, 284, 676, 300 ], [ 679, 284, 713, 300 ], [ 716, 284, 731, 300 ], [ 763, 284, 790, 300 ], [ 793, 284, 838, 300 ], [ 841, 284, 863, 300 ], [ 866, 284, 877, 300 ], [ 124, 304, 164, 320 ], [ 167, 304, 205, 320 ], [ 233, 304, 258, 320 ], [ 261, 304, 273, 320 ], [ 276, 304, 334, 320 ], [ 356, 304, 381, 320 ], [ 384, 304, 443, 320 ], [ 468, 304, 503, 320 ], [ 506, 304, 525, 320 ], [ 528, 304, 573, 320 ], [ 632, 304, 697, 320 ], [ 700, 304, 747, 320 ], [ 763, 304, 786, 320 ], [ 789, 304, 827, 320 ], [ 233, 324, 292, 340 ], [ 295, 324, 305, 340 ], [ 468, 324, 529, 340 ], [ 532, 324, 551, 340 ], [ 554, 324, 608, 340 ], [ 632, 324, 669, 340 ], [ 671, 324, 689, 340 ], [ 692, 324, 725, 340 ], [ 728, 324, 748, 340 ], [ 233, 343, 270, 360 ], [ 273, 343, 300, 360 ], [ 303, 343, 313, 360 ], [ 632, 343, 670, 360 ], [ 673, 343, 693, 360 ], [ 696, 343, 715, 360 ], [ 718, 343, 744, 360 ], [ 233, 363, 261, 380 ], [ 264, 363, 285, 380 ], [ 288, 363, 326, 380 ], [ 632, 363, 670, 380 ], [ 673, 363, 712, 380 ], [ 98, 379, 110, 400 ], [ 233, 384, 244, 401 ], [ 356, 384, 368, 401 ], [ 468, 384, 495, 401 ], [ 498, 384, 528, 401 ], [ 530, 384, 541, 401 ], [ 544, 384, 561, 401 ], [ 564, 384, 611, 401 ], [ 632, 384, 695, 401 ], [ 698, 384, 745, 401 ], [ 763, 384, 787, 401 ], [ 790, 384, 828, 401 ], [ 831, 384, 854, 401 ], [ 857, 384, 892, 401 ], [ 124, 404, 170, 421 ], [ 468, 404, 478, 421 ], [ 480, 404, 498, 421 ], [ 500, 404, 518, 421 ], [ 521, 404, 531, 421 ], [ 534, 404, 589, 421 ], [ 632, 404, 663, 421 ], [ 666, 404, 701, 421 ], [ 704, 404, 739, 421 ], [ 763, 404, 825, 421 ], [ 124, 424, 181, 441 ], [ 468, 424, 591, 441 ], [ 632, 424, 651, 441 ], [ 822, 424, 855, 441 ], [ 124, 444, 211, 460 ], [ 468, 444, 493, 460 ], [ 496, 444, 557, 460 ], [ 560, 444, 571, 460 ], [ 763, 444, 809, 460 ], [ 812, 444, 854, 460 ], [ 857, 444, 890, 460 ], [ 468, 464, 522, 480 ], [ 763, 464, 834, 480 ], [ 837, 464, 885, 480 ], [ 763, 484, 798, 500 ], [ 801, 484, 863, 500 ], [ 866, 484, 889, 500 ], [ 763, 504, 794, 520 ], [ 98, 519, 110, 541 ], [ 233, 525, 244, 541 ], [ 356, 525, 409, 541 ], [ 411, 525, 434, 541 ], [ 468, 525, 489, 541 ], [ 492, 525, 515, 541 ], [ 518, 525, 557, 541 ], [ 560, 525, 583, 541 ], [ 632, 525, 678, 541 ], [ 681, 525, 719, 541 ], [ 763, 525, 787, 541 ], [ 790, 525, 828, 541 ], [ 831, 525, 854, 541 ], [ 857, 525, 892, 541 ], [ 124, 545, 170, 561 ], [ 356, 545, 381, 561 ], [ 384, 545, 410, 561 ], [ 412, 545, 448, 561 ], [ 468, 545, 520, 561 ], [ 523, 545, 587, 561 ], [ 590, 545, 609, 561 ], [ 632, 545, 672, 561 ], [ 675, 545, 723, 561 ], [ 726, 545, 736, 561 ], [ 763, 545, 825, 561 ], [ 124, 565, 177, 581 ], [ 180, 565, 200, 581 ], [ 356, 565, 366, 581 ], [ 369, 565, 420, 581 ], [ 423, 565, 443, 581 ], [ 468, 565, 496, 581 ], [ 499, 565, 542, 581 ], [ 545, 565, 568, 581 ], [ 632, 565, 672, 581 ], [ 675, 565, 707, 581 ], [ 763, 565, 819, 581 ], [ 822, 565, 855, 581 ], [ 124, 585, 171, 601 ], [ 356, 585, 379, 601 ], [ 382, 585, 401, 601 ], [ 404, 585, 440, 601 ], [ 632, 585, 683, 601 ], [ 686, 585, 722, 601 ], [ 763, 585, 809, 601 ], [ 812, 585, 835, 601 ], [ 124, 604, 175, 621 ], [ 356, 604, 413, 621 ], [ 763, 604, 827, 621 ], [ 830, 604, 853, 621 ], [ 356, 624, 396, 641 ], [ 399, 624, 448, 641 ], [ 763, 624, 833, 641 ], [ 836, 624, 884, 641 ], [ 356, 644, 375, 661 ], [ 763, 644, 798, 661 ], [ 801, 644, 863, 661 ], [ 866, 644, 889, 661 ], [ 356, 664, 433, 681 ], [ 763, 664, 794, 681 ], [ 98, 679, 110, 701 ], [ 233, 685, 239, 701 ], [ 242, 685, 282, 701 ], [ 285, 685, 300, 701 ], [ 303, 685, 309, 701 ], [ 312, 685, 330, 701 ], [ 356, 685, 409, 701 ], [ 411, 685, 434, 701 ], [ 468, 685, 534, 701 ], [ 537, 685, 593, 701 ], [ 632, 685, 683, 701 ], [ 686, 685, 719, 701 ], [ 763, 685, 822, 701 ], [ 825, 685, 865, 701 ], [ 124, 705, 194, 721 ], [ 233, 705, 256, 721 ], [ 259, 705, 275, 721 ], [ 277, 705, 312, 721 ], [ 356, 705, 381, 721 ], [ 384, 705, 424, 721 ], [ 427, 705, 437, 721 ], [ 468, 705, 515, 721 ], [ 518, 705, 546, 721 ], [ 549, 705, 616, 721 ], [ 632, 705, 676, 721 ], [ 679, 705, 730, 721 ], [ 763, 705, 807, 721 ], [ 810, 705, 851, 721 ], [ 854, 705, 895, 721 ], [ 124, 725, 182, 741 ], [ 185, 725, 195, 741 ], [ 233, 725, 275, 741 ], [ 278, 725, 301, 741 ], [ 304, 725, 315, 741 ], [ 318, 725, 335, 741 ], [ 356, 725, 395, 741 ], [ 468, 725, 511, 741 ], [ 514, 725, 562, 741 ], [ 565, 725, 614, 741 ], [ 632, 725, 695, 741 ], [ 763, 725, 786, 741 ], [ 789, 725, 819, 741 ], [ 822, 725, 865, 741 ], [ 124, 745, 155, 761 ], [ 158, 745, 185, 761 ], [ 233, 745, 273, 761 ], [ 468, 745, 534, 761 ], [ 537, 745, 565, 761 ], [ 568, 745, 614, 761 ], [ 763, 745, 816, 761 ], [ 819, 745, 847, 761 ], [ 468, 765, 491, 781 ], [ 494, 765, 509, 781 ], [ 512, 765, 583, 781 ], [ 763, 765, 815, 781 ], [ 818, 765, 861, 781 ], [ 864, 765, 893, 781 ], [ 763, 785, 821, 801 ], [ 824, 785, 853, 801 ], [ 856, 785, 898, 801 ], [ 763, 805, 803, 821 ] ]
[ [ 98, 137, 110, 159 ], [ 124, 163, 191, 179 ], [ 124, 183, 183, 199 ], [ 233, 143, 252, 159 ], [ 255, 143, 268, 159 ], [ 271, 143, 319, 159 ], [ 322, 143, 342, 159 ], [ 233, 163, 246, 179 ], [ 249, 163, 281, 179 ], [ 284, 163, 290, 179 ], [ 293, 163, 321, 179 ], [ 356, 143, 380, 159 ], [ 383, 143, 429, 159 ], [ 356, 163, 427, 179 ], [ 468, 143, 525, 159 ], [ 528, 143, 571, 159 ], [ 574, 143, 591, 159 ], [ 468, 163, 530, 179 ], [ 533, 163, 543, 179 ], [ 546, 163, 584, 179 ], [ 468, 183, 523, 199 ], [ 526, 183, 581, 199 ], [ 584, 183, 603, 199 ], [ 468, 203, 521, 219 ], [ 468, 223, 585, 239 ], [ 588, 223, 599, 239 ], [ 468, 243, 492, 259 ], [ 495, 243, 506, 259 ], [ 509, 243, 537, 259 ], [ 540, 243, 567, 259 ], [ 570, 243, 611, 259 ], [ 468, 263, 488, 279 ], [ 491, 263, 497, 279 ], [ 500, 263, 546, 279 ], [ 549, 263, 589, 279 ], [ 632, 143, 693, 159 ], [ 696, 143, 707, 159 ], [ 710, 143, 727, 159 ], [ 632, 163, 653, 179 ], [ 656, 163, 684, 179 ], [ 687, 163, 698, 179 ], [ 701, 163, 729, 179 ], [ 632, 183, 677, 199 ], [ 680, 183, 727, 199 ], [ 763, 143, 787, 159 ], [ 790, 143, 825, 159 ], [ 828, 143, 886, 159 ], [ 763, 163, 778, 179 ], [ 781, 163, 819, 179 ], [ 822, 163, 851, 179 ], [ 854, 163, 881, 179 ], [ 98, 278, 110, 300 ], [ 124, 304, 164, 320 ], [ 167, 304, 205, 320 ], [ 233, 284, 248, 300 ], [ 251, 284, 261, 300 ], [ 264, 284, 277, 300 ], [ 280, 284, 321, 300 ], [ 233, 304, 258, 320 ], [ 261, 304, 273, 320 ], [ 276, 304, 334, 320 ], [ 233, 324, 292, 340 ], [ 295, 324, 305, 340 ], [ 233, 343, 270, 360 ], [ 273, 343, 300, 360 ], [ 303, 343, 313, 360 ], [ 233, 363, 261, 380 ], [ 264, 363, 285, 380 ], [ 288, 363, 326, 380 ], [ 356, 284, 369, 300 ], [ 372, 284, 428, 300 ], [ 356, 304, 381, 320 ], [ 384, 304, 443, 320 ], [ 468, 284, 505, 300 ], [ 508, 284, 540, 300 ], [ 543, 284, 597, 300 ], [ 468, 304, 503, 320 ], [ 506, 304, 525, 320 ], [ 528, 304, 573, 320 ], [ 468, 324, 529, 340 ], [ 532, 324, 551, 340 ], [ 554, 324, 608, 340 ], [ 632, 284, 676, 300 ], [ 679, 284, 713, 300 ], [ 716, 284, 731, 300 ], [ 632, 304, 697, 320 ], [ 700, 304, 747, 320 ], [ 632, 324, 669, 340 ], [ 671, 324, 689, 340 ], [ 692, 324, 725, 340 ], [ 728, 324, 748, 340 ], [ 632, 343, 670, 360 ], [ 673, 343, 693, 360 ], [ 696, 343, 715, 360 ], [ 718, 343, 744, 360 ], [ 632, 363, 670, 380 ], [ 673, 363, 712, 380 ], [ 763, 284, 790, 300 ], [ 793, 284, 838, 300 ], [ 841, 284, 863, 300 ], [ 866, 284, 877, 300 ], [ 763, 304, 786, 320 ], [ 789, 304, 827, 320 ], [ 98, 379, 110, 400 ], [ 124, 404, 170, 421 ], [ 124, 424, 181, 441 ], [ 124, 444, 211, 460 ], [ 233, 384, 244, 401 ], [ 356, 384, 368, 401 ], [ 468, 384, 495, 401 ], [ 498, 384, 528, 401 ], [ 530, 384, 541, 401 ], [ 544, 384, 561, 401 ], [ 564, 384, 611, 401 ], [ 468, 404, 478, 421 ], [ 480, 404, 498, 421 ], [ 500, 404, 518, 421 ], [ 521, 404, 531, 421 ], [ 534, 404, 589, 421 ], [ 468, 424, 591, 441 ], [ 468, 444, 493, 460 ], [ 496, 444, 557, 460 ], [ 560, 444, 571, 460 ], [ 468, 464, 522, 480 ], [ 632, 384, 695, 401 ], [ 698, 384, 745, 401 ], [ 632, 404, 663, 421 ], [ 666, 404, 701, 421 ], [ 704, 404, 739, 421 ], [ 632, 424, 651, 441 ], [ 763, 384, 787, 401 ], [ 790, 384, 828, 401 ], [ 831, 384, 854, 401 ], [ 857, 384, 892, 401 ], [ 763, 404, 825, 421 ], [ 822, 424, 855, 441 ], [ 763, 444, 809, 460 ], [ 812, 444, 854, 460 ], [ 857, 444, 890, 460 ], [ 763, 464, 834, 480 ], [ 837, 464, 885, 480 ], [ 763, 484, 798, 500 ], [ 801, 484, 863, 500 ], [ 866, 484, 889, 500 ], [ 763, 504, 794, 520 ], [ 98, 519, 110, 541 ], [ 124, 545, 170, 561 ], [ 124, 565, 177, 581 ], [ 180, 565, 200, 581 ], [ 124, 585, 171, 601 ], [ 124, 604, 175, 621 ], [ 233, 525, 244, 541 ], [ 356, 525, 409, 541 ], [ 411, 525, 434, 541 ], [ 356, 545, 381, 561 ], [ 384, 545, 410, 561 ], [ 412, 545, 448, 561 ], [ 356, 565, 366, 581 ], [ 369, 565, 420, 581 ], [ 423, 565, 443, 581 ], [ 356, 585, 379, 601 ], [ 382, 585, 401, 601 ], [ 404, 585, 440, 601 ], [ 356, 604, 413, 621 ], [ 356, 624, 396, 641 ], [ 399, 624, 448, 641 ], [ 356, 644, 375, 661 ], [ 356, 664, 433, 681 ], [ 468, 525, 489, 541 ], [ 492, 525, 515, 541 ], [ 518, 525, 557, 541 ], [ 560, 525, 583, 541 ], [ 468, 545, 520, 561 ], [ 523, 545, 587, 561 ], [ 590, 545, 609, 561 ], [ 468, 565, 496, 581 ], [ 499, 565, 542, 581 ], [ 545, 565, 568, 581 ], [ 632, 525, 678, 541 ], [ 681, 525, 719, 541 ], [ 632, 545, 672, 561 ], [ 675, 545, 723, 561 ], [ 726, 545, 736, 561 ], [ 632, 565, 672, 581 ], [ 675, 565, 707, 581 ], [ 632, 585, 683, 601 ], [ 686, 585, 722, 601 ], [ 763, 525, 787, 541 ], [ 790, 525, 828, 541 ], [ 831, 525, 854, 541 ], [ 857, 525, 892, 541 ], [ 763, 545, 825, 561 ], [ 822, 565, 855, 581 ], [ 763, 585, 809, 601 ], [ 812, 585, 835, 601 ], [ 763, 604, 827, 621 ], [ 830, 604, 853, 621 ], [ 763, 624, 833, 641 ], [ 836, 624, 884, 641 ], [ 763, 644, 798, 661 ], [ 801, 644, 863, 661 ], [ 866, 644, 889, 661 ], [ 763, 664, 794, 681 ], [ 98, 679, 110, 701 ], [ 124, 705, 194, 721 ], [ 124, 725, 182, 741 ], [ 185, 725, 195, 741 ], [ 124, 745, 155, 761 ], [ 158, 745, 185, 761 ], [ 233, 685, 239, 701 ], [ 242, 685, 282, 701 ], [ 285, 685, 300, 701 ], [ 303, 685, 309, 701 ], [ 312, 685, 330, 701 ], [ 233, 705, 256, 721 ], [ 259, 705, 275, 721 ], [ 277, 705, 312, 721 ], [ 233, 725, 275, 741 ], [ 278, 725, 301, 741 ], [ 304, 725, 315, 741 ], [ 318, 725, 335, 741 ], [ 233, 745, 273, 761 ], [ 356, 685, 409, 701 ], [ 411, 685, 434, 701 ], [ 356, 705, 381, 721 ], [ 384, 705, 424, 721 ], [ 427, 705, 437, 721 ], [ 356, 725, 395, 741 ], [ 468, 685, 534, 701 ], [ 537, 685, 593, 701 ], [ 468, 705, 515, 721 ], [ 518, 705, 546, 721 ], [ 549, 705, 616, 721 ], [ 468, 725, 511, 741 ], [ 514, 725, 562, 741 ], [ 565, 725, 614, 741 ], [ 468, 745, 534, 761 ], [ 537, 745, 565, 761 ], [ 568, 745, 614, 761 ], [ 468, 765, 491, 781 ], [ 494, 765, 509, 781 ], [ 512, 765, 583, 781 ], [ 632, 685, 683, 701 ], [ 686, 685, 719, 701 ], [ 632, 705, 676, 721 ], [ 679, 705, 730, 721 ], [ 632, 725, 695, 741 ], [ 763, 685, 822, 701 ], [ 825, 685, 865, 701 ], [ 763, 705, 807, 721 ], [ 810, 705, 851, 721 ], [ 854, 705, 895, 721 ], [ 763, 725, 786, 741 ], [ 789, 725, 819, 741 ], [ 822, 725, 865, 741 ], [ 763, 745, 816, 761 ], [ 819, 745, 847, 761 ], [ 763, 765, 815, 781 ], [ 818, 765, 861, 781 ], [ 864, 765, 893, 781 ], [ 763, 785, 821, 801 ], [ 824, 785, 853, 801 ], [ 856, 785, 898, 801 ], [ 763, 805, 803, 821 ], [ 763, 565, 819, 581 ] ]
vary by several orders of magnitude, such as several hundred thousand genes to a billion genes 21 1. Distributed EHR 1. Data integration 1. data 1. Efficient 1. Protection of 1. Data annotated 1. Mobile data using ontological warehouse, open data health data in based on domain access Diabetes 2. Over 5 million annotation and source indexed accordance ontologies or patients with taxonomies Hbase visualization with privacy taxonomies thousands of 2. Parallel retrieval 2. needed policies and 2. Traceability of properties each algorithms for both supercomputers, legal data from origin and many more indexed and cloud and parallel requirements, (initial point of derived from custom searches; computing e.g., HIPAA. collection) through primary values identification of 3. I/O intensive 2. Security use 3. Each record: a data of interest; processing policies for 3. Data conversion range of patient cohorts, 4. HDFS storage different user from existing data data patients’ meeting 5. custom code to roles warehouse into RDF property values, certain criteria, develop new triples average of 100 patients sharing properties from controlled similar stored data. vocabulary characteristics values, and 3. Distributed average of 1,000 graph mining continuous values algorithms, pattern 4. No real-time, analysis and graph but data updated indexing, pattern periodically; data searching on RDF timestamped with triple graphs the time of 4. Robust statistical observation (time analysis tools to the value is manage false recorded) discovery rates, 5. Two main determine true
vary by several orders of magnitude, such as several hundred thousand genes to a billion genes 21 Diabetes 1. Distributed EHR data 2. Over 5 million patients with thousands of properties each and many more derived from primary values 3. Each record: a range of data property values, average of 100 controlled vocabulary values, and average of 1,000 continuous values 4. No real-time, but data updated periodically; data timestamped with the time of observation (time the value is recorded) 5. Two main 1. Data integration using ontological annotation and taxonomies 2. Parallel retrieval algorithms for both indexed and custom searches; identification of data of interest; patient cohorts, patients’ meeting certain criteria, patients sharing similar characteristics 3. Distributed graph mining algorithms, pattern analysis and graph indexing, pattern searching on RDF triple graphs 4. Robust statistical analysis tools to manage false discovery rates, determine true 1. data warehouse, open source indexed Hbase 2. supercomputers, cloud and parallel computing 3. I/O intensive processing 4. HDFS storage 5. custom code to develop new properties from stored data. 1. Efficient data visualization needed 1. Protection of health data in accordance with privacy policies and legal requirements, e.g., HIPAA. 2. Security policies for different user roles 1. Data annotated based on domain ontologies or taxonomies 2. Traceability of data from origin (initial point of collection) through use 3. Data conversion from existing data warehouse into RDF triples 1. Mobile access
0.310916
[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 48, 17, 18, 19, 35, 49, 50, 51, 52, 60, 61, 68, 69, 80, 81, 90, 91, 92, 102, 103, 111, 112, 121, 122, 123, 124, 134, 135, 146, 157, 158, 164, 165, 166, 171, 175, 177, 178, 181, 182, 183, 186, 187, 190, 191, 192, 196, 197, 198, 201, 202, 206, 207, 210, 211, 212, 216, 217, 221, 222, 223, 226, 229, 230, 231, 20, 21, 22, 36, 37, 53, 54, 62, 70, 71, 72, 82, 83, 84, 93, 94, 104, 105, 113, 114, 125, 126, 127, 136, 137, 147, 148, 159, 160, 167, 168, 172, 176, 179, 180, 184, 185, 188, 189, 193, 194, 195, 199, 200, 203, 204, 205, 208, 209, 213, 214, 215, 218, 219, 220, 224, 225, 227, 228, 232, 233, 23, 24, 38, 39, 55, 56, 63, 73, 85, 95, 96, 97, 106, 115, 116, 117, 128, 138, 139, 140, 149, 150, 151, 152, 161, 162, 169, 170, 173, 174, 25, 26, 40, 64, 74, 27, 28, 29, 41, 42, 43, 57, 65, 66, 75, 76, 86, 98, 107, 108, 118, 119, 129, 130, 141, 142, 153, 30, 31, 32, 44, 45, 46, 58, 59, 67, 77, 78, 79, 87, 88, 89, 99, 100, 101, 109, 110, 120, 131, 132, 133, 143, 144, 145, 154, 155, 156, 163, 33, 34, 47 ]
M0394_v1_4746659136.docx
task-1430-774
180
[ [ 207, 168, 229, 184 ], [ 232, 168, 244, 184 ], [ 247, 168, 283, 184 ], [ 207, 188, 240, 204 ], [ 243, 188, 254, 204 ], [ 207, 208, 265, 224 ], [ 268, 208, 292, 224 ], [ 207, 228, 218, 244 ], [ 221, 228, 257, 244 ], [ 207, 247, 251, 264 ], [ 207, 267, 255, 284 ], [ 258, 267, 288, 284 ], [ 207, 287, 218, 304 ], [ 221, 287, 227, 304 ], [ 230, 287, 261, 304 ], [ 264, 287, 294, 304 ], [ 98, 309, 111, 325 ], [ 207, 309, 216, 325 ], [ 219, 309, 277, 325 ], [ 280, 309, 301, 325 ], [ 315, 309, 325, 325 ], [ 327, 309, 351, 325 ], [ 354, 309, 411, 325 ], [ 429, 309, 438, 325 ], [ 441, 309, 464, 325 ], [ 537, 309, 546, 325 ], [ 549, 309, 591, 325 ], [ 627, 309, 637, 325 ], [ 640, 309, 694, 325 ], [ 697, 309, 707, 325 ], [ 724, 309, 734, 325 ], [ 737, 309, 761, 325 ], [ 764, 309, 817, 325 ], [ 845, 309, 855, 325 ], [ 858, 309, 894, 325 ], [ 207, 329, 230, 345 ], [ 315, 329, 342, 345 ], [ 345, 329, 402, 345 ], [ 429, 329, 489, 345 ], [ 492, 329, 518, 345 ], [ 537, 329, 560, 345 ], [ 627, 329, 660, 345 ], [ 663, 329, 686, 345 ], [ 689, 329, 698, 345 ], [ 724, 329, 755, 345 ], [ 758, 329, 771, 345 ], [ 774, 329, 813, 345 ], [ 845, 329, 878, 345 ], [ 137, 349, 182, 365 ], [ 207, 349, 216, 365 ], [ 219, 349, 244, 365 ], [ 247, 349, 253, 365 ], [ 256, 349, 291, 365 ], [ 315, 349, 372, 365 ], [ 375, 349, 394, 365 ], [ 429, 349, 463, 365 ], [ 466, 349, 506, 365 ], [ 627, 349, 686, 365 ], [ 724, 349, 778, 365 ], [ 781, 349, 792, 365 ], [ 207, 369, 249, 385 ], [ 252, 369, 274, 385 ], [ 315, 369, 375, 385 ], [ 429, 369, 460, 385 ], [ 537, 369, 600, 385 ], [ 627, 369, 650, 385 ], [ 653, 369, 690, 385 ], [ 724, 369, 784, 385 ], [ 207, 389, 260, 405 ], [ 263, 389, 274, 405 ], [ 315, 389, 325, 405 ], [ 327, 389, 365, 405 ], [ 368, 389, 411, 405 ], [ 429, 389, 438, 405 ], [ 537, 389, 575, 405 ], [ 627, 389, 666, 405 ], [ 669, 389, 688, 405 ], [ 724, 389, 734, 405 ], [ 737, 389, 796, 405 ], [ 799, 389, 809, 405 ], [ 207, 409, 260, 425 ], [ 263, 409, 287, 425 ], [ 315, 409, 370, 425 ], [ 373, 409, 387, 425 ], [ 390, 409, 414, 425 ], [ 429, 409, 516, 425 ], [ 627, 409, 651, 425 ], [ 724, 409, 747, 425 ], [ 750, 409, 775, 425 ], [ 778, 409, 807, 425 ], [ 207, 429, 226, 445 ], [ 229, 429, 258, 445 ], [ 261, 429, 288, 445 ], [ 315, 429, 356, 445 ], [ 359, 429, 378, 445 ], [ 429, 429, 457, 445 ], [ 460, 429, 479, 445 ], [ 482, 429, 520, 445 ], [ 627, 429, 700, 445 ], [ 724, 429, 756, 445 ], [ 759, 429, 786, 445 ], [ 789, 429, 800, 445 ], [ 207, 449, 246, 465 ], [ 249, 449, 274, 465 ], [ 315, 449, 353, 465 ], [ 356, 449, 404, 465 ], [ 429, 449, 484, 465 ], [ 627, 449, 649, 465 ], [ 652, 449, 687, 465 ], [ 724, 449, 778, 465 ], [ 781, 449, 822, 465 ], [ 207, 469, 247, 485 ], [ 250, 469, 282, 485 ], [ 315, 469, 383, 485 ], [ 386, 469, 396, 485 ], [ 429, 469, 438, 485 ], [ 441, 469, 457, 485 ], [ 460, 469, 507, 485 ], [ 627, 469, 637, 485 ], [ 640, 469, 681, 485 ], [ 724, 469, 742, 485 ], [ 207, 488, 216, 505 ], [ 219, 488, 244, 505 ], [ 246, 488, 283, 505 ], [ 286, 488, 292, 505 ], [ 315, 488, 338, 505 ], [ 341, 488, 351, 505 ], [ 354, 488, 397, 505 ], [ 429, 488, 483, 505 ], [ 627, 488, 666, 505 ], [ 669, 488, 684, 505 ], [ 724, 488, 734, 505 ], [ 737, 488, 761, 505 ], [ 764, 488, 820, 505 ], [ 207, 508, 236, 525 ], [ 239, 508, 250, 525 ], [ 315, 508, 352, 525 ], [ 355, 508, 397, 525 ], [ 429, 508, 438, 525 ], [ 441, 508, 468, 525 ], [ 471, 508, 510, 525 ], [ 627, 508, 672, 525 ], [ 675, 508, 697, 525 ], [ 724, 508, 749, 525 ], [ 752, 508, 791, 525 ], [ 794, 508, 817, 525 ], [ 251, 528, 274, 545 ], [ 315, 528, 360, 545 ], [ 363, 528, 405, 545 ], [ 429, 528, 438, 545 ], [ 441, 528, 479, 545 ], [ 482, 528, 507, 545 ], [ 509, 528, 520, 545 ], [ 627, 528, 653, 545 ], [ 724, 528, 781, 545 ], [ 784, 528, 804, 545 ], [ 807, 528, 828, 545 ], [ 207, 548, 252, 565 ], [ 255, 548, 290, 565 ], [ 315, 548, 351, 565 ], [ 354, 548, 393, 565 ], [ 429, 548, 469, 565 ], [ 472, 548, 494, 565 ], [ 724, 548, 756, 565 ], [ 207, 568, 248, 584 ], [ 250, 568, 261, 584 ], [ 264, 568, 283, 584 ], [ 315, 568, 357, 584 ], [ 360, 568, 397, 584 ], [ 429, 568, 482, 584 ], [ 485, 568, 510, 584 ], [ 207, 588, 259, 604 ], [ 315, 588, 349, 604 ], [ 429, 588, 462, 604 ], [ 465, 588, 491, 604 ], [ 207, 608, 263, 624 ], [ 315, 608, 389, 624 ], [ 207, 628, 242, 644 ], [ 245, 628, 265, 644 ], [ 315, 628, 325, 644 ], [ 327, 628, 385, 644 ], [ 207, 648, 248, 664 ], [ 250, 648, 261, 664 ], [ 264, 648, 293, 664 ], [ 315, 648, 345, 664 ], [ 348, 648, 383, 664 ], [ 207, 668, 264, 684 ], [ 267, 668, 299, 684 ], [ 315, 668, 373, 684 ], [ 376, 668, 414, 684 ], [ 207, 688, 216, 704 ], [ 219, 688, 234, 704 ], [ 237, 688, 287, 704 ], [ 315, 688, 355, 704 ], [ 358, 688, 377, 704 ], [ 380, 688, 410, 704 ], [ 207, 708, 224, 724 ], [ 227, 708, 250, 724 ], [ 253, 708, 296, 724 ], [ 315, 708, 361, 724 ], [ 364, 708, 403, 724 ], [ 207, 728, 270, 744 ], [ 272, 728, 295, 744 ], [ 315, 728, 364, 744 ], [ 367, 728, 380, 744 ], [ 383, 728, 403, 744 ], [ 207, 748, 275, 764 ], [ 278, 748, 301, 764 ], [ 315, 748, 342, 764 ], [ 345, 748, 380, 764 ], [ 207, 768, 224, 784 ], [ 227, 768, 250, 784 ], [ 253, 768, 264, 784 ], [ 315, 768, 325, 784 ], [ 327, 768, 363, 784 ], [ 366, 768, 415, 784 ], [ 207, 788, 268, 804 ], [ 271, 788, 298, 804 ], [ 315, 788, 355, 804 ], [ 358, 788, 383, 804 ], [ 386, 788, 397, 804 ], [ 207, 808, 224, 824 ], [ 227, 808, 254, 824 ], [ 257, 808, 265, 824 ], [ 315, 808, 356, 824 ], [ 359, 808, 383, 824 ], [ 207, 828, 257, 844 ], [ 315, 828, 363, 844 ], [ 366, 828, 395, 844 ], [ 207, 847, 216, 864 ], [ 219, 847, 241, 864 ], [ 244, 847, 270, 864 ], [ 315, 847, 369, 864 ], [ 372, 847, 393, 864 ] ]
[ [ 207, 168, 229, 184 ], [ 232, 168, 244, 184 ], [ 247, 168, 283, 184 ], [ 207, 188, 240, 204 ], [ 243, 188, 254, 204 ], [ 207, 208, 265, 224 ], [ 268, 208, 292, 224 ], [ 207, 228, 218, 244 ], [ 221, 228, 257, 244 ], [ 207, 247, 251, 264 ], [ 207, 267, 255, 284 ], [ 258, 267, 288, 284 ], [ 207, 287, 218, 304 ], [ 221, 287, 227, 304 ], [ 230, 287, 261, 304 ], [ 264, 287, 294, 304 ], [ 98, 309, 111, 325 ], [ 137, 349, 182, 365 ], [ 207, 309, 216, 325 ], [ 219, 309, 277, 325 ], [ 280, 309, 301, 325 ], [ 207, 329, 230, 345 ], [ 207, 349, 216, 365 ], [ 219, 349, 244, 365 ], [ 247, 349, 253, 365 ], [ 256, 349, 291, 365 ], [ 207, 369, 249, 385 ], [ 252, 369, 274, 385 ], [ 207, 389, 260, 405 ], [ 263, 389, 274, 405 ], [ 207, 409, 260, 425 ], [ 263, 409, 287, 425 ], [ 207, 429, 226, 445 ], [ 229, 429, 258, 445 ], [ 261, 429, 288, 445 ], [ 207, 449, 246, 465 ], [ 249, 449, 274, 465 ], [ 207, 469, 247, 485 ], [ 250, 469, 282, 485 ], [ 207, 488, 216, 505 ], [ 219, 488, 244, 505 ], [ 246, 488, 283, 505 ], [ 286, 488, 292, 505 ], [ 207, 508, 236, 525 ], [ 239, 508, 250, 525 ], [ 251, 528, 274, 545 ], [ 207, 548, 252, 565 ], [ 255, 548, 290, 565 ], [ 207, 568, 248, 584 ], [ 250, 568, 261, 584 ], [ 264, 568, 283, 584 ], [ 207, 588, 259, 604 ], [ 207, 608, 263, 624 ], [ 207, 628, 242, 644 ], [ 245, 628, 265, 644 ], [ 207, 648, 248, 664 ], [ 250, 648, 261, 664 ], [ 264, 648, 293, 664 ], [ 207, 668, 264, 684 ], [ 267, 668, 299, 684 ], [ 207, 688, 216, 704 ], [ 219, 688, 234, 704 ], [ 237, 688, 287, 704 ], [ 207, 708, 224, 724 ], [ 227, 708, 250, 724 ], [ 253, 708, 296, 724 ], [ 207, 728, 270, 744 ], [ 272, 728, 295, 744 ], [ 207, 748, 275, 764 ], [ 278, 748, 301, 764 ], [ 207, 768, 224, 784 ], [ 227, 768, 250, 784 ], [ 253, 768, 264, 784 ], [ 207, 788, 268, 804 ], [ 271, 788, 298, 804 ], [ 207, 808, 224, 824 ], [ 227, 808, 254, 824 ], [ 257, 808, 265, 824 ], [ 207, 828, 257, 844 ], [ 207, 847, 216, 864 ], [ 219, 847, 241, 864 ], [ 244, 847, 270, 864 ], [ 315, 309, 325, 325 ], [ 327, 309, 351, 325 ], [ 354, 309, 411, 325 ], [ 315, 329, 342, 345 ], [ 345, 329, 402, 345 ], [ 315, 349, 372, 365 ], [ 375, 349, 394, 365 ], [ 315, 369, 375, 385 ], [ 315, 389, 325, 405 ], [ 327, 389, 365, 405 ], [ 368, 389, 411, 405 ], [ 315, 409, 370, 425 ], [ 373, 409, 387, 425 ], [ 390, 409, 414, 425 ], [ 315, 429, 356, 445 ], [ 359, 429, 378, 445 ], [ 315, 449, 353, 465 ], [ 356, 449, 404, 465 ], [ 315, 469, 383, 485 ], [ 386, 469, 396, 485 ], [ 315, 488, 338, 505 ], [ 341, 488, 351, 505 ], [ 354, 488, 397, 505 ], [ 315, 508, 352, 525 ], [ 355, 508, 397, 525 ], [ 315, 528, 360, 545 ], [ 363, 528, 405, 545 ], [ 315, 548, 351, 565 ], [ 354, 548, 393, 565 ], [ 315, 568, 357, 584 ], [ 360, 568, 397, 584 ], [ 315, 588, 349, 604 ], [ 315, 608, 389, 624 ], [ 315, 628, 325, 644 ], [ 327, 628, 385, 644 ], [ 315, 648, 345, 664 ], [ 348, 648, 383, 664 ], [ 315, 668, 373, 684 ], [ 376, 668, 414, 684 ], [ 315, 688, 355, 704 ], [ 358, 688, 377, 704 ], [ 380, 688, 410, 704 ], [ 315, 708, 361, 724 ], [ 364, 708, 403, 724 ], [ 315, 728, 364, 744 ], [ 367, 728, 380, 744 ], [ 383, 728, 403, 744 ], [ 315, 748, 342, 764 ], [ 345, 748, 380, 764 ], [ 315, 768, 325, 784 ], [ 327, 768, 363, 784 ], [ 366, 768, 415, 784 ], [ 315, 788, 355, 804 ], [ 358, 788, 383, 804 ], [ 386, 788, 397, 804 ], [ 315, 808, 356, 824 ], [ 359, 808, 383, 824 ], [ 315, 828, 363, 844 ], [ 366, 828, 395, 844 ], [ 315, 847, 369, 864 ], [ 372, 847, 393, 864 ], [ 429, 309, 438, 325 ], [ 441, 309, 464, 325 ], [ 429, 329, 489, 345 ], [ 492, 329, 518, 345 ], [ 429, 349, 463, 365 ], [ 466, 349, 506, 365 ], [ 429, 369, 460, 385 ], [ 429, 389, 438, 405 ], [ 429, 409, 516, 425 ], [ 429, 429, 457, 445 ], [ 460, 429, 479, 445 ], [ 482, 429, 520, 445 ], [ 429, 449, 484, 465 ], [ 429, 469, 438, 485 ], [ 441, 469, 457, 485 ], [ 460, 469, 507, 485 ], [ 429, 488, 483, 505 ], [ 429, 508, 438, 525 ], [ 441, 508, 468, 525 ], [ 471, 508, 510, 525 ], [ 429, 528, 438, 545 ], [ 441, 528, 479, 545 ], [ 482, 528, 507, 545 ], [ 509, 528, 520, 545 ], [ 429, 548, 469, 565 ], [ 472, 548, 494, 565 ], [ 429, 568, 482, 584 ], [ 485, 568, 510, 584 ], [ 429, 588, 462, 604 ], [ 465, 588, 491, 604 ], [ 537, 309, 546, 325 ], [ 549, 309, 591, 325 ], [ 537, 329, 560, 345 ], [ 537, 369, 600, 385 ], [ 537, 389, 575, 405 ], [ 627, 309, 637, 325 ], [ 640, 309, 694, 325 ], [ 697, 309, 707, 325 ], [ 627, 329, 660, 345 ], [ 663, 329, 686, 345 ], [ 689, 329, 698, 345 ], [ 627, 349, 686, 365 ], [ 627, 369, 650, 385 ], [ 653, 369, 690, 385 ], [ 627, 389, 666, 405 ], [ 669, 389, 688, 405 ], [ 627, 409, 651, 425 ], [ 627, 429, 700, 445 ], [ 627, 449, 649, 465 ], [ 652, 449, 687, 465 ], [ 627, 469, 637, 485 ], [ 640, 469, 681, 485 ], [ 627, 488, 666, 505 ], [ 669, 488, 684, 505 ], [ 627, 508, 672, 525 ], [ 675, 508, 697, 525 ], [ 627, 528, 653, 545 ], [ 724, 309, 734, 325 ], [ 737, 309, 761, 325 ], [ 764, 309, 817, 325 ], [ 724, 329, 755, 345 ], [ 758, 329, 771, 345 ], [ 774, 329, 813, 345 ], [ 724, 349, 778, 365 ], [ 781, 349, 792, 365 ], [ 724, 369, 784, 385 ], [ 724, 389, 734, 405 ], [ 737, 389, 796, 405 ], [ 799, 389, 809, 405 ], [ 724, 409, 747, 425 ], [ 750, 409, 775, 425 ], [ 778, 409, 807, 425 ], [ 724, 429, 756, 445 ], [ 759, 429, 786, 445 ], [ 789, 429, 800, 445 ], [ 724, 449, 778, 465 ], [ 781, 449, 822, 465 ], [ 724, 469, 742, 485 ], [ 724, 488, 734, 505 ], [ 737, 488, 761, 505 ], [ 764, 488, 820, 505 ], [ 724, 508, 749, 525 ], [ 752, 508, 791, 525 ], [ 794, 508, 817, 525 ], [ 724, 528, 781, 545 ], [ 784, 528, 804, 545 ], [ 807, 528, 828, 545 ], [ 724, 548, 756, 565 ], [ 845, 309, 855, 325 ], [ 858, 309, 894, 325 ], [ 845, 329, 878, 345 ] ]
longitudinal data data are available hard drive for test 5. Rich relational for a small number data data comprising of subjects) multiple tables, 3. Learning different data algorithms to types such as identify skews in imaging, EHR, data, so as to not demographic, to (incorrectly) genetic, and model noise natural language 4. Generalized and data requiring refined learned rich models for representation application to 6. Unpredictable diverse sets of data arrival rates, 5. Challenge: often real time acceptance of data in different modalities (and from disparate sources) 23 1. File-based 1. 1. Movement of 1. 1. Protection of 1. Data quality, -- World synthetic and very large volume Visualization PII on ability to capture the Population population, either of data for individuals used traceability of Scale centralized or computation, like visualization in modeling quality from distributed sites supercomputer (networking) 2. Data computation Study 2. Large volume performance 2. Distributed protection and of real-time 2. Unstructured MPI-based secure platform output data and irregular simulation system for 3. Variety of nature of graph (platform) computation output datasets processing 3. Charm++ on depending on the 3. Summary of multi-nodes model’s various runs of (software) complexity simulation 4. Network file system (storage) 5. Infiniband
longitudinal data 5. Rich relational data comprising multiple tables, different data types such as imaging, EHR, demographic, genetic, and natural language data requiring rich representation 6. Unpredictable arrival rates, often real time data are available for a small number of subjects) 3. Learning algorithms to identify skews in data, so as to not to (incorrectly) model noise 4. Generalized and refined learned models for application to diverse sets of data 5. Challenge: acceptance of data in different modalities (and from disparate sources) hard drive for test data 23 World Population Scale Study 1. File-based synthetic population, either centralized or distributed sites 2. Large volume of real-time output data 3. Variety of output datasets depending on the model’s complexity 1. and computation, like supercomputer performance 2. Unstructured and irregular nature of graph processing 3. Summary of various runs of simulation 1. Movement of very large volume of data for visualization (networking) 2. Distributed MPI-based simulation system (platform) 3. Charm++ on multi-nodes (software) 4. Network file system (storage) 5. Infiniband 1. Visualization 1. Protection of PII on individuals used in modeling 2. Data protection and secure platform for computation 1. Data quality, ability to capture the traceability of quality from computation --
0.316435
[ 0, 1, 9, 10, 11, 17, 18, 21, 22, 25, 26, 29, 30, 31, 35, 36, 42, 45, 46, 49, 50, 54, 55, 58, 61, 64, 65, 70, 71, 74, 75, 76, 2, 3, 4, 12, 13, 14, 15, 19, 20, 23, 24, 27, 28, 32, 33, 34, 37, 38, 39, 40, 41, 43, 44, 47, 48, 51, 52, 53, 56, 57, 59, 60, 62, 63, 66, 67, 68, 69, 72, 73, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 5, 6, 7, 8, 16, 87, 102, 115, 125, 142, 88, 89, 103, 116, 117, 126, 127, 135, 136, 143, 144, 145, 151, 152, 158, 159, 165, 166, 167, 173, 174, 179, 180, 181, 186, 191, 90, 104, 128, 129, 137, 146, 153, 154, 160, 161, 168, 169, 170, 175, 182, 183, 184, 187, 188, 189, 192, 91, 92, 93, 105, 106, 107, 118, 119, 120, 130, 138, 147, 148, 155, 162, 163, 171, 176, 177, 178, 185, 190, 193, 194, 195, 196, 197, 198, 199, 94, 108, 95, 96, 97, 109, 110, 121, 122, 131, 132, 139, 140, 149, 150, 156, 157, 164, 172, 98, 99, 100, 111, 112, 113, 114, 123, 124, 133, 134, 141, 101 ]
M0394_v1_4746659136.docx
task-1430-774
182
[ [ 207, 168, 268, 184 ], [ 271, 168, 294, 184 ], [ 315, 168, 338, 184 ], [ 341, 168, 358, 184 ], [ 360, 168, 406, 184 ], [ 429, 168, 452, 184 ], [ 455, 168, 481, 184 ], [ 484, 168, 499, 184 ], [ 502, 168, 521, 184 ], [ 207, 188, 216, 204 ], [ 219, 188, 241, 204 ], [ 244, 188, 293, 204 ], [ 315, 188, 330, 204 ], [ 333, 188, 339, 204 ], [ 342, 188, 368, 204 ], [ 371, 188, 412, 204 ], [ 429, 188, 452, 204 ], [ 207, 208, 230, 224 ], [ 233, 208, 289, 224 ], [ 315, 208, 325, 224 ], [ 328, 208, 374, 224 ], [ 207, 228, 249, 244 ], [ 252, 228, 286, 244 ], [ 315, 228, 325, 244 ], [ 327, 228, 372, 244 ], [ 207, 247, 252, 264 ], [ 255, 247, 278, 264 ], [ 315, 247, 370, 264 ], [ 372, 247, 383, 264 ], [ 207, 267, 235, 284 ], [ 238, 267, 261, 284 ], [ 264, 267, 275, 284 ], [ 315, 267, 354, 284 ], [ 357, 267, 388, 284 ], [ 391, 267, 400, 284 ], [ 207, 287, 250, 304 ], [ 253, 287, 277, 304 ], [ 315, 287, 341, 304 ], [ 344, 287, 356, 304 ], [ 359, 287, 369, 304 ], [ 372, 287, 383, 304 ], [ 386, 287, 404, 304 ], [ 207, 307, 277, 324 ], [ 315, 307, 326, 324 ], [ 329, 307, 391, 324 ], [ 207, 327, 248, 343 ], [ 250, 327, 270, 343 ], [ 315, 327, 347, 343 ], [ 350, 327, 378, 343 ], [ 207, 347, 244, 363 ], [ 247, 347, 293, 363 ], [ 315, 347, 325, 363 ], [ 327, 347, 389, 363 ], [ 392, 347, 411, 363 ], [ 207, 367, 230, 383 ], [ 233, 367, 279, 383 ], [ 315, 367, 352, 383 ], [ 355, 367, 394, 383 ], [ 207, 387, 226, 403 ], [ 315, 387, 352, 403 ], [ 355, 387, 370, 403 ], [ 207, 407, 283, 423 ], [ 315, 407, 372, 423 ], [ 375, 407, 386, 423 ], [ 207, 427, 216, 443 ], [ 219, 427, 292, 443 ], [ 315, 427, 352, 443 ], [ 355, 427, 375, 443 ], [ 378, 427, 389, 443 ], [ 392, 427, 414, 443 ], [ 207, 447, 239, 463 ], [ 242, 447, 271, 463 ], [ 315, 447, 325, 463 ], [ 327, 447, 381, 463 ], [ 207, 467, 234, 483 ], [ 237, 467, 257, 483 ], [ 260, 467, 283, 483 ], [ 315, 467, 373, 483 ], [ 376, 467, 386, 483 ], [ 389, 467, 412, 483 ], [ 315, 487, 324, 503 ], [ 327, 487, 372, 503 ], [ 315, 507, 368, 523 ], [ 371, 507, 394, 523 ], [ 315, 527, 340, 543 ], [ 343, 527, 391, 543 ], [ 315, 547, 358, 563 ], [ 98, 568, 111, 584 ], [ 207, 568, 216, 584 ], [ 219, 568, 271, 584 ], [ 315, 568, 325, 584 ], [ 429, 568, 438, 584 ], [ 441, 568, 498, 584 ], [ 500, 568, 511, 584 ], [ 537, 568, 546, 584 ], [ 627, 568, 637, 584 ], [ 640, 568, 694, 584 ], [ 697, 568, 707, 584 ], [ 724, 568, 734, 584 ], [ 737, 568, 761, 584 ], [ 764, 568, 802, 584 ], [ 845, 568, 853, 584 ], [ 127, 588, 159, 604 ], [ 207, 588, 254, 604 ], [ 364, 588, 384, 604 ], [ 429, 588, 451, 604 ], [ 454, 588, 479, 604 ], [ 482, 588, 520, 604 ], [ 537, 588, 601, 604 ], [ 627, 588, 640, 604 ], [ 643, 588, 656, 604 ], [ 724, 588, 755, 604 ], [ 758, 588, 769, 604 ], [ 772, 588, 812, 604 ], [ 815, 588, 832, 604 ], [ 127, 608, 183, 624 ], [ 207, 608, 266, 624 ], [ 269, 608, 300, 624 ], [ 429, 608, 439, 624 ], [ 442, 608, 465, 624 ], [ 468, 608, 483, 624 ], [ 627, 608, 682, 624 ], [ 685, 608, 709, 624 ], [ 724, 608, 782, 624 ], [ 785, 608, 795, 624 ], [ 127, 628, 154, 644 ], [ 207, 628, 263, 644 ], [ 266, 628, 277, 644 ], [ 315, 628, 384, 644 ], [ 387, 628, 405, 644 ], [ 429, 628, 492, 644 ], [ 627, 628, 637, 644 ], [ 640, 628, 688, 644 ], [ 724, 628, 759, 644 ], [ 762, 628, 787, 644 ], [ 207, 648, 263, 664 ], [ 266, 648, 289, 664 ], [ 315, 648, 394, 664 ], [ 429, 648, 495, 664 ], [ 627, 648, 637, 664 ], [ 640, 648, 664, 664 ], [ 724, 648, 790, 664 ], [ 147, 668, 176, 684 ], [ 207, 668, 216, 684 ], [ 219, 668, 247, 684 ], [ 250, 668, 288, 684 ], [ 315, 668, 382, 684 ], [ 429, 668, 438, 684 ], [ 441, 668, 498, 684 ], [ 627, 668, 681, 684 ], [ 684, 668, 704, 684 ], [ 207, 688, 217, 704 ], [ 220, 688, 267, 704 ], [ 315, 688, 325, 704 ], [ 327, 688, 396, 704 ], [ 429, 688, 483, 704 ], [ 627, 688, 661, 704 ], [ 664, 688, 709, 704 ], [ 207, 708, 242, 724 ], [ 245, 708, 268, 724 ], [ 315, 708, 334, 724 ], [ 337, 708, 381, 724 ], [ 429, 708, 482, 724 ], [ 485, 708, 522, 724 ], [ 627, 708, 642, 724 ], [ 207, 728, 216, 744 ], [ 219, 728, 256, 744 ], [ 259, 728, 269, 744 ], [ 315, 728, 349, 744 ], [ 352, 728, 363, 744 ], [ 365, 728, 395, 744 ], [ 429, 728, 481, 744 ], [ 627, 728, 693, 744 ], [ 207, 748, 242, 764 ], [ 245, 748, 288, 764 ], [ 315, 748, 370, 764 ], [ 429, 748, 438, 764 ], [ 441, 748, 487, 764 ], [ 490, 748, 504, 764 ], [ 207, 768, 261, 784 ], [ 264, 768, 278, 784 ], [ 281, 768, 298, 784 ], [ 315, 768, 325, 784 ], [ 327, 768, 376, 784 ], [ 379, 768, 389, 784 ], [ 429, 768, 490, 784 ], [ 207, 788, 247, 804 ], [ 315, 788, 352, 804 ], [ 355, 788, 378, 804 ], [ 380, 788, 391, 804 ], [ 429, 788, 482, 804 ], [ 207, 808, 263, 824 ], [ 315, 808, 369, 824 ], [ 429, 808, 438, 824 ], [ 441, 808, 485, 824 ], [ 488, 808, 504, 824 ], [ 429, 828, 465, 844 ], [ 468, 828, 514, 844 ], [ 429, 847, 438, 864 ], [ 441, 847, 493, 864 ] ]
[ [ 207, 168, 268, 184 ], [ 271, 168, 294, 184 ], [ 207, 188, 216, 204 ], [ 219, 188, 241, 204 ], [ 244, 188, 293, 204 ], [ 207, 208, 230, 224 ], [ 233, 208, 289, 224 ], [ 207, 228, 249, 244 ], [ 252, 228, 286, 244 ], [ 207, 247, 252, 264 ], [ 255, 247, 278, 264 ], [ 207, 267, 235, 284 ], [ 238, 267, 261, 284 ], [ 264, 267, 275, 284 ], [ 207, 287, 250, 304 ], [ 253, 287, 277, 304 ], [ 207, 307, 277, 324 ], [ 207, 327, 248, 343 ], [ 250, 327, 270, 343 ], [ 207, 347, 244, 363 ], [ 247, 347, 293, 363 ], [ 207, 367, 230, 383 ], [ 233, 367, 279, 383 ], [ 207, 387, 226, 403 ], [ 207, 407, 283, 423 ], [ 207, 427, 216, 443 ], [ 219, 427, 292, 443 ], [ 207, 447, 239, 463 ], [ 242, 447, 271, 463 ], [ 207, 467, 234, 483 ], [ 237, 467, 257, 483 ], [ 260, 467, 283, 483 ], [ 315, 168, 338, 184 ], [ 341, 168, 358, 184 ], [ 360, 168, 406, 184 ], [ 315, 188, 330, 204 ], [ 333, 188, 339, 204 ], [ 342, 188, 368, 204 ], [ 371, 188, 412, 204 ], [ 315, 208, 325, 224 ], [ 328, 208, 374, 224 ], [ 315, 228, 325, 244 ], [ 327, 228, 372, 244 ], [ 315, 247, 370, 264 ], [ 372, 247, 383, 264 ], [ 315, 267, 354, 284 ], [ 357, 267, 388, 284 ], [ 391, 267, 400, 284 ], [ 315, 287, 341, 304 ], [ 344, 287, 356, 304 ], [ 359, 287, 369, 304 ], [ 372, 287, 383, 304 ], [ 386, 287, 404, 304 ], [ 315, 307, 326, 324 ], [ 329, 307, 391, 324 ], [ 315, 327, 347, 343 ], [ 350, 327, 378, 343 ], [ 315, 347, 325, 363 ], [ 327, 347, 389, 363 ], [ 392, 347, 411, 363 ], [ 315, 367, 352, 383 ], [ 355, 367, 394, 383 ], [ 315, 387, 352, 403 ], [ 355, 387, 370, 403 ], [ 315, 407, 372, 423 ], [ 375, 407, 386, 423 ], [ 315, 427, 352, 443 ], [ 355, 427, 375, 443 ], [ 378, 427, 389, 443 ], [ 392, 427, 414, 443 ], [ 315, 447, 325, 463 ], [ 327, 447, 381, 463 ], [ 315, 467, 373, 483 ], [ 376, 467, 386, 483 ], [ 389, 467, 412, 483 ], [ 315, 487, 324, 503 ], [ 327, 487, 372, 503 ], [ 315, 507, 368, 523 ], [ 371, 507, 394, 523 ], [ 315, 527, 340, 543 ], [ 343, 527, 391, 543 ], [ 315, 547, 358, 563 ], [ 429, 168, 452, 184 ], [ 455, 168, 481, 184 ], [ 484, 168, 499, 184 ], [ 502, 168, 521, 184 ], [ 429, 188, 452, 204 ], [ 98, 568, 111, 584 ], [ 127, 588, 159, 604 ], [ 127, 608, 183, 624 ], [ 127, 628, 154, 644 ], [ 147, 668, 176, 684 ], [ 207, 568, 216, 584 ], [ 219, 568, 271, 584 ], [ 207, 588, 254, 604 ], [ 207, 608, 266, 624 ], [ 269, 608, 300, 624 ], [ 207, 628, 263, 644 ], [ 266, 628, 277, 644 ], [ 207, 648, 263, 664 ], [ 266, 648, 289, 664 ], [ 207, 668, 216, 684 ], [ 219, 668, 247, 684 ], [ 250, 668, 288, 684 ], [ 207, 688, 217, 704 ], [ 220, 688, 267, 704 ], [ 207, 708, 242, 724 ], [ 245, 708, 268, 724 ], [ 207, 728, 216, 744 ], [ 219, 728, 256, 744 ], [ 259, 728, 269, 744 ], [ 207, 748, 242, 764 ], [ 245, 748, 288, 764 ], [ 207, 768, 261, 784 ], [ 264, 768, 278, 784 ], [ 281, 768, 298, 784 ], [ 207, 788, 247, 804 ], [ 207, 808, 263, 824 ], [ 315, 568, 325, 584 ], [ 364, 588, 384, 604 ], [ 315, 628, 384, 644 ], [ 387, 628, 405, 644 ], [ 315, 648, 394, 664 ], [ 315, 668, 382, 684 ], [ 315, 688, 325, 704 ], [ 327, 688, 396, 704 ], [ 315, 708, 334, 724 ], [ 337, 708, 381, 724 ], [ 315, 728, 349, 744 ], [ 352, 728, 363, 744 ], [ 365, 728, 395, 744 ], [ 315, 748, 370, 764 ], [ 315, 768, 325, 784 ], [ 327, 768, 376, 784 ], [ 379, 768, 389, 784 ], [ 315, 788, 352, 804 ], [ 355, 788, 378, 804 ], [ 380, 788, 391, 804 ], [ 315, 808, 369, 824 ], [ 429, 568, 438, 584 ], [ 441, 568, 498, 584 ], [ 500, 568, 511, 584 ], [ 429, 588, 451, 604 ], [ 454, 588, 479, 604 ], [ 482, 588, 520, 604 ], [ 429, 608, 439, 624 ], [ 442, 608, 465, 624 ], [ 468, 608, 483, 624 ], [ 429, 628, 492, 644 ], [ 429, 648, 495, 664 ], [ 429, 668, 438, 684 ], [ 441, 668, 498, 684 ], [ 429, 688, 483, 704 ], [ 429, 708, 482, 724 ], [ 485, 708, 522, 724 ], [ 429, 728, 481, 744 ], [ 429, 748, 438, 764 ], [ 441, 748, 487, 764 ], [ 490, 748, 504, 764 ], [ 429, 768, 490, 784 ], [ 429, 788, 482, 804 ], [ 429, 808, 438, 824 ], [ 441, 808, 485, 824 ], [ 488, 808, 504, 824 ], [ 429, 828, 465, 844 ], [ 468, 828, 514, 844 ], [ 429, 847, 438, 864 ], [ 441, 847, 493, 864 ], [ 537, 568, 546, 584 ], [ 537, 588, 601, 604 ], [ 627, 568, 637, 584 ], [ 640, 568, 694, 584 ], [ 697, 568, 707, 584 ], [ 627, 588, 640, 604 ], [ 643, 588, 656, 604 ], [ 627, 608, 682, 624 ], [ 685, 608, 709, 624 ], [ 627, 628, 637, 644 ], [ 640, 628, 688, 644 ], [ 627, 648, 637, 664 ], [ 640, 648, 664, 664 ], [ 627, 668, 681, 684 ], [ 684, 668, 704, 684 ], [ 627, 688, 661, 704 ], [ 664, 688, 709, 704 ], [ 627, 708, 642, 724 ], [ 627, 728, 693, 744 ], [ 724, 568, 734, 584 ], [ 737, 568, 761, 584 ], [ 764, 568, 802, 584 ], [ 724, 588, 755, 604 ], [ 758, 588, 769, 604 ], [ 772, 588, 812, 604 ], [ 815, 588, 832, 604 ], [ 724, 608, 782, 624 ], [ 785, 608, 795, 624 ], [ 724, 628, 759, 644 ], [ 762, 628, 787, 644 ], [ 724, 648, 790, 664 ], [ 845, 568, 853, 584 ] ]
2. Link to many mining, data other quality environment and assessment, biology datasets cross-correlation 3. Link to HPC across datasets, climate and other data assimilation, simulations data 4. Link to interpolation, European data statistics, quality sources and assessment, data projects fusion, etc. 5. Access to data from 500 distributed sources 51 1. Diverse data 1. New machine 1. SQL databases, -- 1. Privacy and -- 1. Mobile from smart grid learning analytics CVS files, HDFS anonymization access for sensors, city to predict (platform) by aggregation clients Forecasting planning, consumption 2. R/Matlab, in Smart weather, utilities Weka, Hadoop Grids 2. Data updated (platform) every 15 minutes
2. Link to many other environment and biology datasets 3. Link to HPC climate and other simulations 4. Link to European data sources and projects 5. Access to data from 500 distributed sources mining, data quality assessment, cross-correlation across datasets, data assimilation, data interpolation, statistics, quality assessment, data fusion, etc. 51 Forecasting in Smart Grids 1. Diverse data from smart grid sensors, city planning, weather, utilities 2. Data updated every 15 minutes 1. New machine learning analytics to predict consumption 1. SQL databases, CVS files, HDFS (platform) 2. R/Matlab, Weka, Hadoop (platform) -- 1. Privacy and anonymization by aggregation -- 1. Mobile access for clients
0.306797
[ 0, 1, 2, 3, 6, 8, 9, 11, 12, 14, 15, 16, 17, 20, 21, 22, 25, 27, 28, 29, 31, 32, 35, 36, 39, 42, 43, 44, 45, 46, 47, 48, 49, 4, 5, 7, 10, 13, 18, 19, 23, 24, 26, 30, 33, 34, 37, 38, 40, 41, 50, 86, 91, 92, 97, 51, 52, 53, 67, 68, 69, 78, 79, 87, 93, 94, 98, 99, 100, 102, 103, 104, 54, 55, 56, 70, 71, 80, 81, 88, 57, 58, 59, 72, 73, 74, 82, 89, 90, 95, 96, 101, 60, 61, 62, 63, 75, 83, 84, 64, 65, 66, 76, 77, 85 ]
M0394_v1_4746659136.docx
task-1430-774
196
[ [ 207, 168, 216, 184 ], [ 219, 168, 240, 184 ], [ 243, 168, 254, 184 ], [ 257, 168, 285, 184 ], [ 429, 168, 467, 184 ], [ 470, 168, 493, 184 ], [ 207, 188, 235, 204 ], [ 429, 188, 464, 204 ], [ 207, 208, 273, 224 ], [ 276, 208, 296, 224 ], [ 429, 208, 491, 224 ], [ 207, 228, 244, 244 ], [ 247, 228, 290, 244 ], [ 429, 228, 515, 244 ], [ 207, 247, 216, 264 ], [ 219, 247, 240, 264 ], [ 243, 247, 254, 264 ], [ 257, 247, 278, 264 ], [ 429, 247, 461, 264 ], [ 464, 247, 510, 264 ], [ 207, 267, 245, 284 ], [ 247, 267, 267, 284 ], [ 270, 267, 298, 284 ], [ 429, 267, 452, 284 ], [ 455, 267, 519, 284 ], [ 207, 287, 266, 304 ], [ 429, 287, 452, 304 ], [ 207, 307, 216, 324 ], [ 219, 307, 240, 324 ], [ 243, 307, 254, 324 ], [ 429, 307, 499, 324 ], [ 207, 327, 256, 343 ], [ 259, 327, 282, 343 ], [ 429, 327, 476, 343 ], [ 479, 327, 514, 343 ], [ 207, 347, 246, 363 ], [ 249, 347, 268, 363 ], [ 429, 347, 491, 363 ], [ 494, 347, 517, 363 ], [ 207, 367, 248, 383 ], [ 429, 367, 463, 383 ], [ 466, 367, 485, 383 ], [ 207, 387, 216, 403 ], [ 219, 387, 253, 403 ], [ 256, 387, 267, 403 ], [ 270, 387, 293, 403 ], [ 207, 407, 232, 423 ], [ 235, 407, 254, 423 ], [ 207, 427, 263, 443 ], [ 207, 447, 246, 463 ], [ 98, 469, 111, 485 ], [ 207, 469, 216, 485 ], [ 219, 469, 258, 485 ], [ 260, 469, 283, 485 ], [ 315, 469, 325, 485 ], [ 327, 469, 351, 485 ], [ 354, 469, 398, 485 ], [ 429, 469, 438, 485 ], [ 441, 469, 461, 485 ], [ 464, 469, 518, 485 ], [ 537, 469, 544, 485 ], [ 627, 469, 637, 485 ], [ 640, 469, 676, 485 ], [ 679, 469, 699, 485 ], [ 724, 469, 732, 485 ], [ 845, 469, 855, 485 ], [ 858, 469, 894, 485 ], [ 207, 488, 232, 505 ], [ 235, 488, 264, 505 ], [ 267, 488, 287, 505 ], [ 315, 488, 357, 505 ], [ 360, 488, 404, 505 ], [ 429, 488, 448, 505 ], [ 451, 488, 475, 505 ], [ 478, 488, 505, 505 ], [ 627, 488, 704, 505 ], [ 845, 488, 878, 505 ], [ 881, 488, 896, 505 ], [ 207, 508, 249, 525 ], [ 252, 508, 270, 525 ], [ 315, 508, 326, 525 ], [ 329, 508, 365, 525 ], [ 429, 508, 481, 525 ], [ 627, 508, 640, 525 ], [ 643, 508, 704, 525 ], [ 845, 508, 878, 525 ], [ 127, 528, 186, 545 ], [ 207, 528, 254, 545 ], [ 315, 528, 382, 545 ], [ 429, 528, 438, 545 ], [ 441, 528, 493, 545 ], [ 127, 548, 137, 565 ], [ 140, 548, 170, 565 ], [ 207, 548, 253, 565 ], [ 256, 548, 294, 565 ], [ 429, 548, 461, 565 ], [ 464, 548, 504, 565 ], [ 127, 568, 154, 584 ], [ 207, 568, 216, 584 ], [ 219, 568, 243, 584 ], [ 246, 568, 289, 584 ], [ 429, 568, 481, 584 ], [ 207, 588, 235, 604 ], [ 238, 588, 251, 604 ], [ 254, 588, 295, 604 ] ]
[ [ 207, 168, 216, 184 ], [ 219, 168, 240, 184 ], [ 243, 168, 254, 184 ], [ 257, 168, 285, 184 ], [ 207, 188, 235, 204 ], [ 207, 208, 273, 224 ], [ 276, 208, 296, 224 ], [ 207, 228, 244, 244 ], [ 247, 228, 290, 244 ], [ 207, 247, 216, 264 ], [ 219, 247, 240, 264 ], [ 243, 247, 254, 264 ], [ 257, 247, 278, 264 ], [ 207, 267, 245, 284 ], [ 247, 267, 267, 284 ], [ 270, 267, 298, 284 ], [ 207, 287, 266, 304 ], [ 207, 307, 216, 324 ], [ 219, 307, 240, 324 ], [ 243, 307, 254, 324 ], [ 207, 327, 256, 343 ], [ 259, 327, 282, 343 ], [ 207, 347, 246, 363 ], [ 249, 347, 268, 363 ], [ 207, 367, 248, 383 ], [ 207, 387, 216, 403 ], [ 219, 387, 253, 403 ], [ 256, 387, 267, 403 ], [ 270, 387, 293, 403 ], [ 207, 407, 232, 423 ], [ 235, 407, 254, 423 ], [ 207, 427, 263, 443 ], [ 207, 447, 246, 463 ], [ 429, 168, 467, 184 ], [ 470, 168, 493, 184 ], [ 429, 188, 464, 204 ], [ 429, 208, 491, 224 ], [ 429, 228, 515, 244 ], [ 429, 247, 461, 264 ], [ 464, 247, 510, 264 ], [ 429, 267, 452, 284 ], [ 455, 267, 519, 284 ], [ 429, 287, 452, 304 ], [ 429, 307, 499, 324 ], [ 429, 327, 476, 343 ], [ 479, 327, 514, 343 ], [ 429, 347, 491, 363 ], [ 494, 347, 517, 363 ], [ 429, 367, 463, 383 ], [ 466, 367, 485, 383 ], [ 98, 469, 111, 485 ], [ 127, 528, 186, 545 ], [ 127, 548, 137, 565 ], [ 140, 548, 170, 565 ], [ 127, 568, 154, 584 ], [ 207, 469, 216, 485 ], [ 219, 469, 258, 485 ], [ 260, 469, 283, 485 ], [ 207, 488, 232, 505 ], [ 235, 488, 264, 505 ], [ 267, 488, 287, 505 ], [ 207, 508, 249, 525 ], [ 252, 508, 270, 525 ], [ 207, 528, 254, 545 ], [ 207, 548, 253, 565 ], [ 256, 548, 294, 565 ], [ 207, 568, 216, 584 ], [ 219, 568, 243, 584 ], [ 246, 568, 289, 584 ], [ 207, 588, 235, 604 ], [ 238, 588, 251, 604 ], [ 254, 588, 295, 604 ], [ 315, 469, 325, 485 ], [ 327, 469, 351, 485 ], [ 354, 469, 398, 485 ], [ 315, 488, 357, 505 ], [ 360, 488, 404, 505 ], [ 315, 508, 326, 525 ], [ 329, 508, 365, 525 ], [ 315, 528, 382, 545 ], [ 429, 469, 438, 485 ], [ 441, 469, 461, 485 ], [ 464, 469, 518, 485 ], [ 429, 488, 448, 505 ], [ 451, 488, 475, 505 ], [ 478, 488, 505, 505 ], [ 429, 508, 481, 525 ], [ 429, 528, 438, 545 ], [ 441, 528, 493, 545 ], [ 429, 548, 461, 565 ], [ 464, 548, 504, 565 ], [ 429, 568, 481, 584 ], [ 537, 469, 544, 485 ], [ 627, 469, 637, 485 ], [ 640, 469, 676, 485 ], [ 679, 469, 699, 485 ], [ 627, 488, 704, 505 ], [ 627, 508, 640, 525 ], [ 643, 508, 704, 525 ], [ 724, 469, 732, 485 ], [ 845, 469, 855, 485 ], [ 858, 469, 894, 485 ], [ 845, 488, 878, 505 ], [ 881, 488, 896, 505 ], [ 845, 508, 878, 525 ] ]
FEES TO BE REMITTED THROUGH INDIAN BANK MULTI-UTILITY CHALAN Amount per Type of Service Period of Issue Certificate (in Rupees) Transcript / Attestation of Within 10 Years 300 Diploma Certificate Provisional Diploma Certificate Before 10 Years 450 Consolidated Mark Statement / Mark Statements *Amount mentioned above is exclusive of Bank Charges. ***
FEES TO BE REMITTED THROUGH INDIAN BANK MULTI-UTILITY CHALAN Type of Service Period of Issue Amount per Certificate (in Rupees) Transcript / Attestation of Diploma Certificate Provisional Diploma Certificate Consolidated Mark Statement / Mark Statements Within 10 Years 300 Before 10 Years 450 *Amount mentioned above is exclusive of Bank Charges. ***
0.74267
[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 15, 16, 9, 10, 17, 18, 19, 20, 21, 22, 23, 28, 29, 30, 31, 32, 37, 38, 39, 40, 41, 42, 24, 25, 26, 27, 33, 34, 35, 36, 43, 44, 45, 46, 47, 48, 49, 50, 51 ]
M03ApplicationForTranscriptOrAttestation.docx
task-1430-780
2
[ [ 207, 69, 246, 87 ], [ 251, 69, 276, 87 ], [ 281, 69, 302, 87 ], [ 307, 69, 392, 87 ], [ 398, 69, 486, 87 ], [ 491, 69, 554, 87 ], [ 560, 69, 607, 87 ], [ 613, 69, 737, 87 ], [ 742, 69, 815, 87 ], [ 789, 115, 854, 133 ], [ 860, 115, 886, 133 ], [ 291, 138, 330, 155 ], [ 335, 138, 352, 155 ], [ 357, 138, 414, 155 ], [ 619, 138, 671, 155 ], [ 676, 138, 693, 155 ], [ 698, 138, 738, 155 ], [ 797, 138, 878, 155 ], [ 793, 160, 813, 178 ], [ 818, 160, 883, 178 ], [ 119, 184, 198, 201 ], [ 203, 184, 211, 201 ], [ 216, 184, 303, 201 ], [ 309, 184, 325, 201 ], [ 604, 189, 656, 206 ], [ 661, 189, 678, 206 ], [ 684, 189, 727, 206 ], [ 875, 189, 905, 206 ], [ 149, 206, 217, 223 ], [ 222, 206, 304, 223 ], [ 149, 229, 236, 246 ], [ 241, 229, 310, 246 ], [ 315, 229, 396, 246 ], [ 604, 235, 657, 252 ], [ 662, 235, 679, 252 ], [ 684, 235, 727, 252 ], [ 874, 235, 905, 252 ], [ 149, 251, 255, 269 ], [ 261, 251, 301, 269 ], [ 307, 251, 389, 269 ], [ 394, 251, 402, 269 ], [ 407, 251, 448, 269 ], [ 453, 251, 543, 269 ], [ 119, 274, 179, 288 ], [ 183, 274, 254, 288 ], [ 259, 274, 299, 288 ], [ 303, 274, 313, 288 ], [ 317, 274, 376, 288 ], [ 380, 274, 394, 288 ], [ 398, 274, 430, 288 ], [ 434, 274, 491, 288 ], [ 500, 330, 523, 347 ] ]
[ [ 207, 69, 246, 87 ], [ 251, 69, 276, 87 ], [ 281, 69, 302, 87 ], [ 307, 69, 392, 87 ], [ 398, 69, 486, 87 ], [ 491, 69, 554, 87 ], [ 560, 69, 607, 87 ], [ 613, 69, 737, 87 ], [ 742, 69, 815, 87 ], [ 291, 138, 330, 155 ], [ 335, 138, 352, 155 ], [ 357, 138, 414, 155 ], [ 619, 138, 671, 155 ], [ 676, 138, 693, 155 ], [ 698, 138, 738, 155 ], [ 789, 115, 854, 133 ], [ 860, 115, 886, 133 ], [ 797, 138, 878, 155 ], [ 793, 160, 813, 178 ], [ 818, 160, 883, 178 ], [ 119, 184, 198, 201 ], [ 203, 184, 211, 201 ], [ 216, 184, 303, 201 ], [ 309, 184, 325, 201 ], [ 149, 206, 217, 223 ], [ 222, 206, 304, 223 ], [ 149, 229, 236, 246 ], [ 241, 229, 310, 246 ], [ 315, 229, 396, 246 ], [ 149, 251, 255, 269 ], [ 261, 251, 301, 269 ], [ 307, 251, 389, 269 ], [ 394, 251, 402, 269 ], [ 407, 251, 448, 269 ], [ 453, 251, 543, 269 ], [ 604, 189, 656, 206 ], [ 661, 189, 678, 206 ], [ 684, 189, 727, 206 ], [ 875, 189, 905, 206 ], [ 604, 235, 657, 252 ], [ 662, 235, 679, 252 ], [ 684, 235, 727, 252 ], [ 874, 235, 905, 252 ], [ 119, 274, 179, 288 ], [ 183, 274, 254, 288 ], [ 259, 274, 299, 288 ], [ 303, 274, 313, 288 ], [ 317, 274, 376, 288 ], [ 380, 274, 394, 288 ], [ 398, 274, 430, 288 ], [ 434, 274, 491, 288 ], [ 500, 330, 523, 347 ] ]
processing (DB) techniques for 5. Huge amounts consumer of storage (2 PB) personalization 6. I/O intensive 4. Robust learning processing algorithms 5. Continued analytic processing based on monitoring and performance results 8 1. Distributed 1. Dynamic 1. Petabytes of 1. Search time 1. Access 1. Data purge after 1. Mobile Web Search data sources fetching content text and rich of ≈0.1 control certain time interval search and 2. Streaming data over the network media (storage) seconds 2. Protection of (a few months) rendering 3. Multimedia 2. Linking of user 2. Top 10 sensitive 2. Data cleaning content profiles and social ranked results content network data 3. Page layout (visual) 9 -- 1. Robust backup 1. Hadoop -- 1. Strong -- -- Business algorithm 2. Commercial security for Continuity 2. Replication of cloud services many and Disaster recent changes applications Recovery Within a Cloud System 10 1. Centralized and 1. Tracking items 1. Internet -- 1. Security -- -- Cargo real-time based on the connectivity policy Shipping distributed unique sites/sensors identification with its sensor information, GPS coordinates 2. Real-time
System processing techniques for consumer personalization 4. Robust learning algorithms 5. Continued analytic processing based on monitoring and performance results (DB) 5. Huge amounts of storage (2 PB) 6. I/O intensive processing 8 Web Search 1. Distributed data sources 2. Streaming data 3. Multimedia content 1. Dynamic fetching content over the network 2. Linking of user profiles and social network data 1. Petabytes of text and rich media (storage) 1. Search time of ≈0.1 seconds 2. Top 10 ranked results 3. Page layout (visual) 1. Access control 2. Protection of sensitive content 1. Data purge after certain time interval (a few months) 2. Data cleaning 1. Mobile search and rendering 9 Business Continuity and Disaster Recovery Within a Cloud -- 1. Robust backup algorithm 2. Replication of recent changes 1. Hadoop 2. Commercial cloud services -- 1. Strong security for many applications -- -- 10 Cargo Shipping 1. Centralized and real-time distributed sites/sensors 1. Tracking items based on the unique identification with its sensor information, GPS coordinates 2. Real-time 1. Internet connectivity -- 1. Security policy -- --
0.366089
[ 143, 0, 2, 3, 7, 12, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 4, 5, 6, 8, 9, 10, 11, 13, 14, 15, 19, 31, 50, 51, 32, 33, 52, 53, 67, 68, 69, 83, 84, 96, 34, 35, 54, 55, 70, 71, 72, 85, 86, 87, 88, 97, 98, 99, 103, 104, 36, 37, 38, 56, 57, 58, 73, 74, 39, 40, 41, 59, 60, 75, 89, 90, 91, 100, 101, 105, 106, 107, 108, 42, 43, 61, 76, 77, 78, 92, 102, 44, 45, 46, 47, 62, 63, 64, 79, 80, 81, 93, 94, 95, 48, 49, 65, 66, 82, 109, 121, 127, 134, 135, 139, 140, 141, 142, 110, 111, 112, 113, 122, 128, 129, 130, 136, 137, 114, 115, 123, 124, 131, 132, 116, 117, 118, 125, 126, 133, 138, 119, 120, 144, 158, 165, 145, 146, 147, 159, 166, 168, 148, 149, 150, 160, 161, 162, 167, 169, 170, 171, 172, 173, 174, 175, 176, 177, 151, 152, 163, 153, 154, 155, 164, 156, 157 ]
M0627_v1_8528813905.docx
task-1430-863
175
[ [ 307, 168, 362, 184 ], [ 421, 168, 443, 184 ], [ 307, 188, 364, 204 ], [ 367, 188, 382, 204 ], [ 421, 188, 431, 204 ], [ 434, 188, 460, 204 ], [ 463, 188, 508, 204 ], [ 307, 208, 358, 224 ], [ 421, 208, 432, 224 ], [ 434, 208, 473, 224 ], [ 476, 208, 486, 224 ], [ 489, 208, 506, 224 ], [ 307, 228, 386, 244 ], [ 421, 228, 431, 244 ], [ 434, 228, 450, 244 ], [ 453, 228, 499, 244 ], [ 307, 247, 317, 264 ], [ 320, 247, 356, 264 ], [ 359, 247, 400, 264 ], [ 421, 247, 476, 264 ], [ 307, 267, 362, 284 ], [ 307, 287, 317, 304 ], [ 320, 287, 373, 304 ], [ 307, 307, 347, 324 ], [ 350, 307, 405, 324 ], [ 307, 327, 338, 343 ], [ 341, 327, 354, 343 ], [ 307, 347, 364, 363 ], [ 367, 347, 387, 363 ], [ 307, 367, 374, 383 ], [ 307, 387, 342, 403 ], [ 90, 409, 97, 425 ], [ 200, 409, 209, 425 ], [ 212, 409, 269, 425 ], [ 307, 409, 317, 425 ], [ 320, 409, 364, 425 ], [ 421, 409, 431, 425 ], [ 434, 409, 484, 425 ], [ 487, 409, 498, 425 ], [ 529, 409, 539, 425 ], [ 542, 409, 576, 425 ], [ 579, 409, 602, 425 ], [ 620, 409, 630, 425 ], [ 632, 409, 666, 425 ], [ 717, 409, 726, 425 ], [ 729, 409, 753, 425 ], [ 756, 409, 786, 425 ], [ 789, 409, 813, 425 ], [ 838, 409, 847, 425 ], [ 850, 409, 886, 425 ], [ 120, 429, 144, 445 ], [ 147, 429, 181, 445 ], [ 200, 429, 222, 445 ], [ 225, 429, 264, 445 ], [ 307, 429, 349, 445 ], [ 352, 429, 392, 445 ], [ 421, 429, 441, 445 ], [ 444, 429, 463, 445 ], [ 466, 429, 486, 445 ], [ 529, 429, 540, 445 ], [ 542, 429, 565, 445 ], [ 620, 429, 657, 445 ], [ 717, 429, 752, 445 ], [ 755, 429, 779, 445 ], [ 781, 429, 820, 445 ], [ 838, 429, 871, 445 ], [ 874, 429, 893, 445 ], [ 200, 449, 209, 465 ], [ 212, 449, 264, 465 ], [ 267, 449, 290, 465 ], [ 307, 449, 330, 465 ], [ 333, 449, 350, 465 ], [ 353, 449, 396, 465 ], [ 421, 449, 453, 465 ], [ 456, 449, 502, 465 ], [ 529, 449, 570, 465 ], [ 620, 449, 630, 465 ], [ 632, 449, 686, 465 ], [ 689, 449, 700, 465 ], [ 717, 449, 726, 465 ], [ 729, 449, 748, 465 ], [ 751, 449, 794, 465 ], [ 838, 449, 888, 465 ], [ 200, 469, 209, 485 ], [ 212, 469, 271, 485 ], [ 307, 469, 317, 485 ], [ 320, 469, 356, 485 ], [ 359, 469, 369, 485 ], [ 372, 469, 394, 485 ], [ 529, 469, 539, 485 ], [ 542, 469, 561, 485 ], [ 564, 469, 577, 485 ], [ 620, 469, 665, 485 ], [ 717, 469, 726, 485 ], [ 729, 469, 753, 485 ], [ 756, 469, 799, 485 ], [ 200, 488, 239, 505 ], [ 307, 488, 346, 505 ], [ 349, 488, 368, 505 ], [ 371, 488, 400, 505 ], [ 529, 488, 565, 505 ], [ 568, 488, 602, 505 ], [ 620, 488, 660, 505 ], [ 307, 508, 350, 525 ], [ 353, 508, 376, 525 ], [ 529, 508, 539, 525 ], [ 542, 508, 566, 525 ], [ 569, 508, 601, 525 ], [ 529, 528, 566, 545 ], [ 90, 550, 97, 566 ], [ 200, 550, 207, 566 ], [ 307, 550, 317, 566 ], [ 320, 550, 356, 566 ], [ 359, 550, 396, 566 ], [ 421, 550, 431, 566 ], [ 434, 550, 474, 566 ], [ 529, 550, 537, 566 ], [ 620, 550, 630, 566 ], [ 632, 550, 666, 566 ], [ 717, 550, 724, 566 ], [ 838, 550, 845, 566 ], [ 120, 570, 164, 586 ], [ 307, 570, 357, 586 ], [ 421, 570, 431, 586 ], [ 434, 570, 495, 586 ], [ 620, 570, 660, 586 ], [ 663, 570, 678, 586 ], [ 120, 590, 173, 606 ], [ 307, 590, 317, 606 ], [ 320, 590, 377, 606 ], [ 380, 590, 391, 606 ], [ 421, 590, 449, 606 ], [ 452, 590, 493, 606 ], [ 620, 590, 648, 606 ], [ 120, 610, 139, 626 ], [ 142, 610, 183, 626 ], [ 307, 610, 340, 626 ], [ 343, 610, 385, 626 ], [ 620, 610, 682, 626 ], [ 120, 630, 167, 646 ], [ 120, 650, 154, 666 ], [ 157, 650, 163, 666 ], [ 120, 670, 149, 686 ], [ 120, 690, 157, 706 ], [ 90, 711, 103, 727 ], [ 200, 711, 209, 727 ], [ 212, 711, 270, 727 ], [ 273, 711, 292, 727 ], [ 307, 711, 317, 727 ], [ 320, 711, 363, 727 ], [ 366, 711, 394, 727 ], [ 421, 711, 431, 727 ], [ 434, 711, 475, 727 ], [ 529, 711, 537, 727 ], [ 620, 711, 630, 727 ], [ 632, 711, 674, 727 ], [ 717, 711, 724, 727 ], [ 838, 711, 845, 727 ], [ 120, 731, 150, 747 ], [ 200, 731, 246, 747 ], [ 307, 731, 338, 747 ], [ 341, 731, 354, 747 ], [ 357, 731, 374, 747 ], [ 421, 731, 483, 747 ], [ 620, 731, 650, 747 ], [ 120, 751, 164, 767 ], [ 200, 751, 256, 767 ], [ 307, 751, 343, 767 ], [ 200, 771, 266, 787 ], [ 307, 771, 375, 787 ], [ 378, 771, 401, 787 ], [ 307, 791, 319, 807 ], [ 322, 791, 356, 807 ], [ 307, 811, 371, 827 ], [ 374, 811, 395, 827 ], [ 307, 831, 368, 847 ], [ 307, 851, 317, 867 ], [ 320, 851, 369, 867 ] ]
[ [ 120, 690, 157, 706 ], [ 307, 168, 362, 184 ], [ 307, 188, 364, 204 ], [ 367, 188, 382, 204 ], [ 307, 208, 358, 224 ], [ 307, 228, 386, 244 ], [ 307, 247, 317, 264 ], [ 320, 247, 356, 264 ], [ 359, 247, 400, 264 ], [ 307, 267, 362, 284 ], [ 307, 287, 317, 304 ], [ 320, 287, 373, 304 ], [ 307, 307, 347, 324 ], [ 350, 307, 405, 324 ], [ 307, 327, 338, 343 ], [ 341, 327, 354, 343 ], [ 307, 347, 364, 363 ], [ 367, 347, 387, 363 ], [ 307, 367, 374, 383 ], [ 307, 387, 342, 403 ], [ 421, 168, 443, 184 ], [ 421, 188, 431, 204 ], [ 434, 188, 460, 204 ], [ 463, 188, 508, 204 ], [ 421, 208, 432, 224 ], [ 434, 208, 473, 224 ], [ 476, 208, 486, 224 ], [ 489, 208, 506, 224 ], [ 421, 228, 431, 244 ], [ 434, 228, 450, 244 ], [ 453, 228, 499, 244 ], [ 421, 247, 476, 264 ], [ 90, 409, 97, 425 ], [ 120, 429, 144, 445 ], [ 147, 429, 181, 445 ], [ 200, 409, 209, 425 ], [ 212, 409, 269, 425 ], [ 200, 429, 222, 445 ], [ 225, 429, 264, 445 ], [ 200, 449, 209, 465 ], [ 212, 449, 264, 465 ], [ 267, 449, 290, 465 ], [ 200, 469, 209, 485 ], [ 212, 469, 271, 485 ], [ 200, 488, 239, 505 ], [ 307, 409, 317, 425 ], [ 320, 409, 364, 425 ], [ 307, 429, 349, 445 ], [ 352, 429, 392, 445 ], [ 307, 449, 330, 465 ], [ 333, 449, 350, 465 ], [ 353, 449, 396, 465 ], [ 307, 469, 317, 485 ], [ 320, 469, 356, 485 ], [ 359, 469, 369, 485 ], [ 372, 469, 394, 485 ], [ 307, 488, 346, 505 ], [ 349, 488, 368, 505 ], [ 371, 488, 400, 505 ], [ 307, 508, 350, 525 ], [ 353, 508, 376, 525 ], [ 421, 409, 431, 425 ], [ 434, 409, 484, 425 ], [ 487, 409, 498, 425 ], [ 421, 429, 441, 445 ], [ 444, 429, 463, 445 ], [ 466, 429, 486, 445 ], [ 421, 449, 453, 465 ], [ 456, 449, 502, 465 ], [ 529, 409, 539, 425 ], [ 542, 409, 576, 425 ], [ 579, 409, 602, 425 ], [ 529, 429, 540, 445 ], [ 542, 429, 565, 445 ], [ 529, 449, 570, 465 ], [ 529, 469, 539, 485 ], [ 542, 469, 561, 485 ], [ 564, 469, 577, 485 ], [ 529, 488, 565, 505 ], [ 568, 488, 602, 505 ], [ 529, 508, 539, 525 ], [ 542, 508, 566, 525 ], [ 569, 508, 601, 525 ], [ 529, 528, 566, 545 ], [ 620, 409, 630, 425 ], [ 632, 409, 666, 425 ], [ 620, 429, 657, 445 ], [ 620, 449, 630, 465 ], [ 632, 449, 686, 465 ], [ 689, 449, 700, 465 ], [ 620, 469, 665, 485 ], [ 620, 488, 660, 505 ], [ 717, 409, 726, 425 ], [ 729, 409, 753, 425 ], [ 756, 409, 786, 425 ], [ 789, 409, 813, 425 ], [ 717, 429, 752, 445 ], [ 755, 429, 779, 445 ], [ 781, 429, 820, 445 ], [ 717, 449, 726, 465 ], [ 729, 449, 748, 465 ], [ 751, 449, 794, 465 ], [ 717, 469, 726, 485 ], [ 729, 469, 753, 485 ], [ 756, 469, 799, 485 ], [ 838, 409, 847, 425 ], [ 850, 409, 886, 425 ], [ 838, 429, 871, 445 ], [ 874, 429, 893, 445 ], [ 838, 449, 888, 465 ], [ 90, 550, 97, 566 ], [ 120, 570, 164, 586 ], [ 120, 590, 173, 606 ], [ 120, 610, 139, 626 ], [ 142, 610, 183, 626 ], [ 120, 630, 167, 646 ], [ 120, 650, 154, 666 ], [ 157, 650, 163, 666 ], [ 120, 670, 149, 686 ], [ 200, 550, 207, 566 ], [ 307, 550, 317, 566 ], [ 320, 550, 356, 566 ], [ 359, 550, 396, 566 ], [ 307, 570, 357, 586 ], [ 307, 590, 317, 606 ], [ 320, 590, 377, 606 ], [ 380, 590, 391, 606 ], [ 307, 610, 340, 626 ], [ 343, 610, 385, 626 ], [ 421, 550, 431, 566 ], [ 434, 550, 474, 566 ], [ 421, 570, 431, 586 ], [ 434, 570, 495, 586 ], [ 421, 590, 449, 606 ], [ 452, 590, 493, 606 ], [ 529, 550, 537, 566 ], [ 620, 550, 630, 566 ], [ 632, 550, 666, 566 ], [ 620, 570, 660, 586 ], [ 663, 570, 678, 586 ], [ 620, 590, 648, 606 ], [ 620, 610, 682, 626 ], [ 717, 550, 724, 566 ], [ 838, 550, 845, 566 ], [ 90, 711, 103, 727 ], [ 120, 731, 150, 747 ], [ 120, 751, 164, 767 ], [ 200, 711, 209, 727 ], [ 212, 711, 270, 727 ], [ 273, 711, 292, 727 ], [ 200, 731, 246, 747 ], [ 200, 751, 256, 767 ], [ 200, 771, 266, 787 ], [ 307, 711, 317, 727 ], [ 320, 711, 363, 727 ], [ 366, 711, 394, 727 ], [ 307, 731, 338, 747 ], [ 341, 731, 354, 747 ], [ 357, 731, 374, 747 ], [ 307, 751, 343, 767 ], [ 307, 771, 375, 787 ], [ 378, 771, 401, 787 ], [ 307, 791, 319, 807 ], [ 322, 791, 356, 807 ], [ 307, 811, 371, 827 ], [ 374, 811, 395, 827 ], [ 307, 831, 368, 847 ], [ 307, 851, 317, 867 ], [ 320, 851, 369, 867 ], [ 421, 711, 431, 727 ], [ 434, 711, 475, 727 ], [ 421, 731, 483, 747 ], [ 529, 711, 537, 727 ], [ 620, 711, 630, 727 ], [ 632, 711, 674, 727 ], [ 620, 731, 650, 747 ], [ 717, 711, 724, 727 ], [ 838, 711, 845, 727 ] ]
Highlight issues for A wide array of programs in the earth sciences are working on challenges that cross the generalizing this use same domains as this project. case (e.g. for ref. architecture) More Information Under development (URLs) Earth, Environmental and Polar Science> Use Case 50: AmeriFlux and FLUXNET Use Case Title DOE-BER AmeriFlux and FLUXNET Networks Vertical (area) Research: Earth Science Author/Company/Email Deb Agarwal, Lawrence Berkeley Lab. Actors/Stakeholders AmeriFlux scientists, Data Management Team, ICOS, DOE TES, USDA, NSF, and Climate and their roles and modelers. responsibilities AmeriFlux Network and FLUXNET measurements provide the crucial linkage between Goals organisms, ecosystems, and process-scale studies at climate-relevant scales of landscapes, regions, and continents, which can be incorporated into biogeochemical and climate models. Results from individual flux sites provide the foundation for a growing body of synthesis and modeling analyses. AmeriFlux network observations enable scaling of trace gas fluxes (CO2, water vapor) Use Case Description across a broad spectrum of times (hours, days, seasons, years, and decades) and space. Moreover, AmeriFlux and FLUXNET datasets provide the crucial linkages among organisms, ecosystems, and process-scale studies—at climate-relevant scales of landscapes, regions, and continents—for incorporation into biogeochemical and climate models Current Compute(System) NERSC Solutions Storage NERSC Networking ESNet Software EddyPro, Custom analysis software, R, python, neural networks, Matlab. towers in AmeriFlux and over 500 towers distributed ≈150 Big Data Data Source globally collecting flux measurements. Characteristics (distributed/centralized) Volume (size) Velocity (e.g. real time) Variety The flux data is relatively uniform, however, the (multiple datasets, biological, disturbance, and other ancillary data needed to mashup) process and to interpret the data is extensive and varies widely. Merging this data with the flux data is challenging in today’s systems. Variability (rate of change)
Highlight issues for generalizing this use case (e.g. for ref. architecture) A wide array of programs in the earth sciences are working on challenges that cross the same domains as this project. More Information (URLs) Under development Earth, Environmental and Polar Science> Use Case 50: AmeriFlux and FLUXNET Use Case Title DOE-BER AmeriFlux and FLUXNET Networks Vertical (area) Research: Earth Science Author/Company/Email Deb Agarwal, Lawrence Berkeley Lab. Actors/Stakeholders and their roles and responsibilities AmeriFlux scientists, Data Management Team, ICOS, DOE TES, USDA, NSF, and Climate modelers. Goals AmeriFlux Network and FLUXNET measurements provide the crucial linkage between organisms, ecosystems, and process-scale studies at climate-relevant scales of landscapes, regions, and continents, which can be incorporated into biogeochemical and climate models. Results from individual flux sites provide the foundation for a growing body of synthesis and modeling analyses. Use Case Description AmeriFlux network observations enable scaling of trace gas fluxes (CO2, water vapor) across a broad spectrum of times (hours, days, seasons, years, and decades) and space. Moreover, AmeriFlux and FLUXNET datasets provide the crucial linkages among organisms, ecosystems, and process-scale studies—at climate-relevant scales of landscapes, regions, and continents—for incorporation into biogeochemical and climate models Current Solutions Compute(System) NERSC Storage NERSC Networking ESNet Software EddyPro, Custom analysis software, R, python, neural networks, Matlab. Big Data Characteristics Data Source (distributed/centralized) ≈150 towers in AmeriFlux and over 500 towers distributed globally collecting flux measurements. Volume (size) Velocity (e.g. real time) Variety (multiple datasets, mashup) The flux data is relatively uniform, however, the biological, disturbance, and other ancillary data needed to process and to interpret the data is extensive and varies widely. Merging this data with the flux data is challenging in today’s systems. Variability (rate of change)
0.842263
[ 0, 1, 2, 19, 20, 21, 27, 28, 29, 30, 31, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 22, 23, 24, 25, 26, 32, 33, 36, 34, 35, 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, 80, 81, 82, 83, 85, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 84, 96, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 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, 148, 149, 150, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 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, 196, 194, 195, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 220, 221, 228, 222, 223, 229, 219, 211, 212, 213, 214, 215, 216, 217, 218, 224, 225, 226, 227, 230, 231, 232, 233, 234, 235, 236, 245, 246, 255, 237, 238, 239, 240, 241, 242, 243, 244, 247, 248, 249, 250, 251, 252, 253, 254, 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 ]
M0627_v1_8528813905.docx
task-1430-863
158
[ [ 152, 138, 213, 151 ], [ 216, 138, 257, 151 ], [ 261, 138, 280, 151 ], [ 298, 138, 307, 151 ], [ 311, 138, 343, 151 ], [ 347, 138, 381, 151 ], [ 385, 138, 399, 151 ], [ 402, 138, 466, 151 ], [ 470, 138, 482, 151 ], [ 486, 138, 508, 151 ], [ 512, 138, 547, 151 ], [ 551, 138, 606, 151 ], [ 610, 138, 631, 151 ], [ 635, 138, 688, 151 ], [ 692, 138, 710, 151 ], [ 713, 138, 783, 151 ], [ 787, 138, 814, 151 ], [ 818, 138, 852, 151 ], [ 855, 138, 878, 151 ], [ 143, 153, 224, 166 ], [ 228, 153, 253, 166 ], [ 257, 153, 280, 166 ], [ 298, 153, 333, 166 ], [ 337, 153, 394, 166 ], [ 397, 153, 412, 166 ], [ 415, 153, 440, 166 ], [ 443, 153, 495, 166 ], [ 167, 169, 196, 181 ], [ 200, 169, 230, 181 ], [ 233, 169, 253, 181 ], [ 257, 169, 280, 181 ], [ 192, 184, 280, 197 ], [ 158, 200, 195, 213 ], [ 199, 200, 280, 213 ], [ 298, 200, 339, 213 ], [ 343, 200, 431, 213 ], [ 237, 216, 280, 228 ], [ 117, 292, 183, 311 ], [ 196, 292, 356, 311 ], [ 369, 292, 409, 311 ], [ 422, 292, 479, 311 ], [ 492, 292, 592, 311 ], [ 605, 292, 645, 311 ], [ 657, 292, 709, 311 ], [ 722, 292, 758, 311 ], [ 770, 292, 882, 311 ], [ 117, 311, 158, 329 ], [ 165, 311, 264, 329 ], [ 186, 340, 211, 352 ], [ 215, 340, 246, 352 ], [ 250, 340, 280, 352 ], [ 298, 340, 357, 352 ], [ 361, 340, 428, 352 ], [ 432, 340, 457, 352 ], [ 461, 340, 521, 352 ], [ 524, 340, 588, 352 ], [ 184, 356, 236, 368 ], [ 240, 356, 280, 368 ], [ 298, 356, 363, 368 ], [ 366, 356, 402, 368 ], [ 406, 356, 456, 368 ], [ 117, 372, 280, 385 ], [ 298, 372, 325, 385 ], [ 328, 372, 386, 385 ], [ 390, 372, 454, 385 ], [ 458, 372, 515, 385 ], [ 519, 372, 546, 385 ], [ 141, 388, 280, 401 ], [ 298, 388, 365, 401 ], [ 369, 388, 434, 401 ], [ 438, 388, 469, 401 ], [ 473, 388, 562, 401 ], [ 566, 388, 607, 401 ], [ 610, 388, 645, 401 ], [ 649, 388, 678, 401 ], [ 682, 388, 709, 401 ], [ 713, 388, 754, 401 ], [ 758, 388, 788, 401 ], [ 792, 388, 817, 401 ], [ 820, 388, 871, 401 ], [ 152, 403, 178, 416 ], [ 181, 403, 214, 416 ], [ 218, 403, 251, 416 ], [ 255, 403, 280, 416 ], [ 298, 403, 364, 416 ], [ 178, 419, 280, 431 ], [ 298, 430, 370, 447 ], [ 374, 430, 431, 447 ], [ 435, 430, 458, 447 ], [ 463, 430, 537, 447 ], [ 542, 430, 635, 447 ], [ 639, 430, 689, 447 ], [ 693, 430, 713, 447 ], [ 717, 430, 761, 447 ], [ 765, 430, 813, 447 ], [ 818, 430, 872, 447 ], [ 242, 435, 280, 447 ], [ 298, 445, 369, 462 ], [ 373, 445, 452, 462 ], [ 456, 445, 479, 462 ], [ 484, 445, 571, 462 ], [ 575, 445, 620, 462 ], [ 624, 445, 636, 462 ], [ 640, 445, 746, 462 ], [ 750, 445, 789, 462 ], [ 793, 445, 807, 462 ], [ 298, 460, 373, 476 ], [ 377, 460, 429, 476 ], [ 433, 460, 457, 476 ], [ 461, 460, 532, 476 ], [ 536, 460, 576, 476 ], [ 580, 460, 603, 476 ], [ 607, 460, 622, 476 ], [ 626, 460, 709, 476 ], [ 713, 460, 739, 476 ], [ 743, 460, 846, 476 ], [ 850, 460, 874, 476 ], [ 298, 474, 346, 491 ], [ 350, 474, 401, 491 ], [ 405, 474, 454, 491 ], [ 458, 474, 490, 491 ], [ 494, 474, 560, 491 ], [ 564, 474, 590, 491 ], [ 594, 474, 623, 491 ], [ 627, 474, 677, 491 ], [ 682, 474, 702, 491 ], [ 706, 474, 776, 491 ], [ 780, 474, 799, 491 ], [ 804, 474, 811, 491 ], [ 815, 474, 869, 491 ], [ 298, 489, 331, 505 ], [ 335, 489, 348, 505 ], [ 352, 489, 412, 505 ], [ 416, 489, 440, 505 ], [ 444, 489, 506, 505 ], [ 510, 489, 569, 505 ], [ 298, 504, 370, 521 ], [ 374, 504, 427, 521 ], [ 431, 504, 514, 521 ], [ 518, 504, 561, 521 ], [ 565, 504, 611, 521 ], [ 615, 504, 629, 521 ], [ 633, 504, 664, 521 ], [ 669, 504, 690, 521 ], [ 695, 504, 735, 521 ], [ 739, 504, 779, 521 ], [ 783, 504, 819, 521 ], [ 824, 504, 866, 521 ], [ 138, 508, 164, 521 ], [ 167, 508, 199, 521 ], [ 202, 508, 280, 521 ], [ 298, 518, 339, 535 ], [ 343, 518, 350, 535 ], [ 354, 518, 392, 535 ], [ 396, 518, 456, 535 ], [ 459, 518, 473, 535 ], [ 477, 518, 512, 535 ], [ 516, 518, 562, 535 ], [ 566, 518, 600, 535 ], [ 605, 518, 659, 535 ], [ 663, 518, 701, 535 ], [ 705, 518, 729, 535 ], [ 733, 518, 790, 535 ], [ 795, 518, 818, 535 ], [ 822, 518, 863, 535 ], [ 298, 533, 366, 549 ], [ 371, 533, 442, 549 ], [ 446, 533, 470, 549 ], [ 474, 533, 548, 549 ], [ 553, 533, 604, 549 ], [ 608, 533, 658, 549 ], [ 663, 533, 682, 549 ], [ 686, 533, 731, 549 ], [ 735, 533, 789, 549 ], [ 793, 533, 838, 549 ], [ 298, 547, 369, 564 ], [ 373, 547, 452, 564 ], [ 456, 547, 479, 564 ], [ 484, 547, 571, 564 ], [ 575, 547, 648, 564 ], [ 652, 547, 758, 564 ], [ 763, 547, 802, 564 ], [ 806, 547, 819, 564 ], [ 298, 562, 373, 579 ], [ 377, 562, 429, 579 ], [ 433, 562, 457, 579 ], [ 461, 562, 563, 579 ], [ 567, 562, 655, 579 ], [ 660, 562, 685, 579 ], [ 689, 562, 793, 579 ], [ 797, 562, 820, 579 ], [ 824, 562, 872, 579 ], [ 298, 576, 345, 593 ], [ 229, 596, 280, 608 ], [ 354, 596, 476, 608 ], [ 494, 596, 537, 608 ], [ 217, 611, 280, 624 ], [ 424, 612, 476, 625 ], [ 494, 612, 537, 625 ], [ 396, 628, 476, 641 ], [ 494, 628, 533, 641 ], [ 414, 644, 476, 657 ], [ 494, 644, 553, 657 ], [ 557, 644, 608, 657 ], [ 611, 644, 663, 657 ], [ 667, 644, 730, 657 ], [ 733, 644, 746, 657 ], [ 750, 644, 801, 657 ], [ 805, 644, 848, 657 ], [ 494, 659, 560, 672 ], [ 563, 659, 615, 672 ], [ 532, 671, 575, 688 ], [ 579, 671, 591, 688 ], [ 596, 671, 667, 688 ], [ 671, 671, 695, 688 ], [ 699, 671, 728, 688 ], [ 733, 671, 757, 688 ], [ 761, 671, 804, 688 ], [ 808, 671, 878, 688 ], [ 494, 673, 527, 687 ], [ 224, 675, 245, 688 ], [ 248, 675, 280, 688 ], [ 394, 675, 426, 688 ], [ 430, 675, 476, 688 ], [ 494, 686, 547, 702 ], [ 551, 686, 616, 702 ], [ 620, 686, 646, 702 ], [ 650, 686, 748, 702 ], [ 181, 691, 280, 703 ], [ 309, 691, 476, 703 ], [ 384, 707, 437, 720 ], [ 440, 707, 476, 720 ], [ 421, 723, 476, 736 ], [ 376, 738, 406, 751 ], [ 410, 738, 436, 751 ], [ 439, 738, 476, 751 ], [ 427, 754, 476, 767 ], [ 494, 754, 518, 767 ], [ 522, 754, 546, 767 ], [ 550, 754, 580, 767 ], [ 584, 754, 594, 767 ], [ 597, 754, 659, 767 ], [ 662, 754, 720, 767 ], [ 723, 754, 785, 767 ], [ 789, 754, 811, 767 ], [ 349, 770, 411, 782 ], [ 414, 770, 476, 782 ], [ 494, 770, 561, 782 ], [ 565, 770, 647, 782 ], [ 651, 770, 676, 782 ], [ 680, 770, 716, 782 ], [ 720, 770, 775, 782 ], [ 779, 770, 809, 782 ], [ 813, 770, 863, 782 ], [ 867, 770, 881, 782 ], [ 417, 785, 476, 798 ], [ 494, 785, 544, 798 ], [ 548, 785, 573, 798 ], [ 577, 785, 591, 798 ], [ 595, 785, 654, 798 ], [ 658, 785, 680, 798 ], [ 684, 785, 713, 798 ], [ 717, 785, 727, 798 ], [ 731, 785, 794, 798 ], [ 798, 785, 823, 798 ], [ 827, 785, 866, 798 ], [ 494, 801, 541, 813 ], [ 545, 801, 600, 813 ], [ 604, 801, 628, 813 ], [ 632, 801, 661, 813 ], [ 665, 801, 695, 813 ], [ 699, 801, 721, 813 ], [ 725, 801, 749, 813 ], [ 753, 801, 782, 813 ], [ 786, 801, 796, 813 ], [ 800, 801, 875, 813 ], [ 494, 816, 506, 829 ], [ 510, 816, 558, 829 ], [ 562, 816, 619, 829 ], [ 352, 832, 422, 845 ], [ 425, 832, 458, 845 ], [ 462, 832, 476, 845 ], [ 422, 848, 476, 860 ] ]
[ [ 152, 138, 213, 151 ], [ 216, 138, 257, 151 ], [ 261, 138, 280, 151 ], [ 143, 153, 224, 166 ], [ 228, 153, 253, 166 ], [ 257, 153, 280, 166 ], [ 167, 169, 196, 181 ], [ 200, 169, 230, 181 ], [ 233, 169, 253, 181 ], [ 257, 169, 280, 181 ], [ 192, 184, 280, 197 ], [ 298, 138, 307, 151 ], [ 311, 138, 343, 151 ], [ 347, 138, 381, 151 ], [ 385, 138, 399, 151 ], [ 402, 138, 466, 151 ], [ 470, 138, 482, 151 ], [ 486, 138, 508, 151 ], [ 512, 138, 547, 151 ], [ 551, 138, 606, 151 ], [ 610, 138, 631, 151 ], [ 635, 138, 688, 151 ], [ 692, 138, 710, 151 ], [ 713, 138, 783, 151 ], [ 787, 138, 814, 151 ], [ 818, 138, 852, 151 ], [ 855, 138, 878, 151 ], [ 298, 153, 333, 166 ], [ 337, 153, 394, 166 ], [ 397, 153, 412, 166 ], [ 415, 153, 440, 166 ], [ 443, 153, 495, 166 ], [ 158, 200, 195, 213 ], [ 199, 200, 280, 213 ], [ 237, 216, 280, 228 ], [ 298, 200, 339, 213 ], [ 343, 200, 431, 213 ], [ 117, 292, 183, 311 ], [ 196, 292, 356, 311 ], [ 369, 292, 409, 311 ], [ 422, 292, 479, 311 ], [ 492, 292, 592, 311 ], [ 605, 292, 645, 311 ], [ 657, 292, 709, 311 ], [ 722, 292, 758, 311 ], [ 770, 292, 882, 311 ], [ 117, 311, 158, 329 ], [ 165, 311, 264, 329 ], [ 186, 340, 211, 352 ], [ 215, 340, 246, 352 ], [ 250, 340, 280, 352 ], [ 298, 340, 357, 352 ], [ 361, 340, 428, 352 ], [ 432, 340, 457, 352 ], [ 461, 340, 521, 352 ], [ 524, 340, 588, 352 ], [ 184, 356, 236, 368 ], [ 240, 356, 280, 368 ], [ 298, 356, 363, 368 ], [ 366, 356, 402, 368 ], [ 406, 356, 456, 368 ], [ 117, 372, 280, 385 ], [ 298, 372, 325, 385 ], [ 328, 372, 386, 385 ], [ 390, 372, 454, 385 ], [ 458, 372, 515, 385 ], [ 519, 372, 546, 385 ], [ 141, 388, 280, 401 ], [ 152, 403, 178, 416 ], [ 181, 403, 214, 416 ], [ 218, 403, 251, 416 ], [ 255, 403, 280, 416 ], [ 178, 419, 280, 431 ], [ 298, 388, 365, 401 ], [ 369, 388, 434, 401 ], [ 438, 388, 469, 401 ], [ 473, 388, 562, 401 ], [ 566, 388, 607, 401 ], [ 610, 388, 645, 401 ], [ 649, 388, 678, 401 ], [ 682, 388, 709, 401 ], [ 713, 388, 754, 401 ], [ 758, 388, 788, 401 ], [ 792, 388, 817, 401 ], [ 820, 388, 871, 401 ], [ 298, 403, 364, 416 ], [ 242, 435, 280, 447 ], [ 298, 430, 370, 447 ], [ 374, 430, 431, 447 ], [ 435, 430, 458, 447 ], [ 463, 430, 537, 447 ], [ 542, 430, 635, 447 ], [ 639, 430, 689, 447 ], [ 693, 430, 713, 447 ], [ 717, 430, 761, 447 ], [ 765, 430, 813, 447 ], [ 818, 430, 872, 447 ], [ 298, 445, 369, 462 ], [ 373, 445, 452, 462 ], [ 456, 445, 479, 462 ], [ 484, 445, 571, 462 ], [ 575, 445, 620, 462 ], [ 624, 445, 636, 462 ], [ 640, 445, 746, 462 ], [ 750, 445, 789, 462 ], [ 793, 445, 807, 462 ], [ 298, 460, 373, 476 ], [ 377, 460, 429, 476 ], [ 433, 460, 457, 476 ], [ 461, 460, 532, 476 ], [ 536, 460, 576, 476 ], [ 580, 460, 603, 476 ], [ 607, 460, 622, 476 ], [ 626, 460, 709, 476 ], [ 713, 460, 739, 476 ], [ 743, 460, 846, 476 ], [ 850, 460, 874, 476 ], [ 298, 474, 346, 491 ], [ 350, 474, 401, 491 ], [ 405, 474, 454, 491 ], [ 458, 474, 490, 491 ], [ 494, 474, 560, 491 ], [ 564, 474, 590, 491 ], [ 594, 474, 623, 491 ], [ 627, 474, 677, 491 ], [ 682, 474, 702, 491 ], [ 706, 474, 776, 491 ], [ 780, 474, 799, 491 ], [ 804, 474, 811, 491 ], [ 815, 474, 869, 491 ], [ 298, 489, 331, 505 ], [ 335, 489, 348, 505 ], [ 352, 489, 412, 505 ], [ 416, 489, 440, 505 ], [ 444, 489, 506, 505 ], [ 510, 489, 569, 505 ], [ 138, 508, 164, 521 ], [ 167, 508, 199, 521 ], [ 202, 508, 280, 521 ], [ 298, 504, 370, 521 ], [ 374, 504, 427, 521 ], [ 431, 504, 514, 521 ], [ 518, 504, 561, 521 ], [ 565, 504, 611, 521 ], [ 615, 504, 629, 521 ], [ 633, 504, 664, 521 ], [ 669, 504, 690, 521 ], [ 695, 504, 735, 521 ], [ 739, 504, 779, 521 ], [ 783, 504, 819, 521 ], [ 824, 504, 866, 521 ], [ 298, 518, 339, 535 ], [ 343, 518, 350, 535 ], [ 354, 518, 392, 535 ], [ 396, 518, 456, 535 ], [ 459, 518, 473, 535 ], [ 477, 518, 512, 535 ], [ 516, 518, 562, 535 ], [ 566, 518, 600, 535 ], [ 605, 518, 659, 535 ], [ 663, 518, 701, 535 ], [ 705, 518, 729, 535 ], [ 733, 518, 790, 535 ], [ 795, 518, 818, 535 ], [ 822, 518, 863, 535 ], [ 298, 533, 366, 549 ], [ 371, 533, 442, 549 ], [ 446, 533, 470, 549 ], [ 474, 533, 548, 549 ], [ 553, 533, 604, 549 ], [ 608, 533, 658, 549 ], [ 663, 533, 682, 549 ], [ 686, 533, 731, 549 ], [ 735, 533, 789, 549 ], [ 793, 533, 838, 549 ], [ 298, 547, 369, 564 ], [ 373, 547, 452, 564 ], [ 456, 547, 479, 564 ], [ 484, 547, 571, 564 ], [ 575, 547, 648, 564 ], [ 652, 547, 758, 564 ], [ 763, 547, 802, 564 ], [ 806, 547, 819, 564 ], [ 298, 562, 373, 579 ], [ 377, 562, 429, 579 ], [ 433, 562, 457, 579 ], [ 461, 562, 563, 579 ], [ 567, 562, 655, 579 ], [ 660, 562, 685, 579 ], [ 689, 562, 793, 579 ], [ 797, 562, 820, 579 ], [ 824, 562, 872, 579 ], [ 298, 576, 345, 593 ], [ 229, 596, 280, 608 ], [ 217, 611, 280, 624 ], [ 354, 596, 476, 608 ], [ 494, 596, 537, 608 ], [ 424, 612, 476, 625 ], [ 494, 612, 537, 625 ], [ 396, 628, 476, 641 ], [ 494, 628, 533, 641 ], [ 414, 644, 476, 657 ], [ 494, 644, 553, 657 ], [ 557, 644, 608, 657 ], [ 611, 644, 663, 657 ], [ 667, 644, 730, 657 ], [ 733, 644, 746, 657 ], [ 750, 644, 801, 657 ], [ 805, 644, 848, 657 ], [ 494, 659, 560, 672 ], [ 563, 659, 615, 672 ], [ 224, 675, 245, 688 ], [ 248, 675, 280, 688 ], [ 181, 691, 280, 703 ], [ 394, 675, 426, 688 ], [ 430, 675, 476, 688 ], [ 309, 691, 476, 703 ], [ 494, 673, 527, 687 ], [ 532, 671, 575, 688 ], [ 579, 671, 591, 688 ], [ 596, 671, 667, 688 ], [ 671, 671, 695, 688 ], [ 699, 671, 728, 688 ], [ 733, 671, 757, 688 ], [ 761, 671, 804, 688 ], [ 808, 671, 878, 688 ], [ 494, 686, 547, 702 ], [ 551, 686, 616, 702 ], [ 620, 686, 646, 702 ], [ 650, 686, 748, 702 ], [ 384, 707, 437, 720 ], [ 440, 707, 476, 720 ], [ 421, 723, 476, 736 ], [ 376, 738, 406, 751 ], [ 410, 738, 436, 751 ], [ 439, 738, 476, 751 ], [ 427, 754, 476, 767 ], [ 349, 770, 411, 782 ], [ 414, 770, 476, 782 ], [ 417, 785, 476, 798 ], [ 494, 754, 518, 767 ], [ 522, 754, 546, 767 ], [ 550, 754, 580, 767 ], [ 584, 754, 594, 767 ], [ 597, 754, 659, 767 ], [ 662, 754, 720, 767 ], [ 723, 754, 785, 767 ], [ 789, 754, 811, 767 ], [ 494, 770, 561, 782 ], [ 565, 770, 647, 782 ], [ 651, 770, 676, 782 ], [ 680, 770, 716, 782 ], [ 720, 770, 775, 782 ], [ 779, 770, 809, 782 ], [ 813, 770, 863, 782 ], [ 867, 770, 881, 782 ], [ 494, 785, 544, 798 ], [ 548, 785, 573, 798 ], [ 577, 785, 591, 798 ], [ 595, 785, 654, 798 ], [ 658, 785, 680, 798 ], [ 684, 785, 713, 798 ], [ 717, 785, 727, 798 ], [ 731, 785, 794, 798 ], [ 798, 785, 823, 798 ], [ 827, 785, 866, 798 ], [ 494, 801, 541, 813 ], [ 545, 801, 600, 813 ], [ 604, 801, 628, 813 ], [ 632, 801, 661, 813 ], [ 665, 801, 695, 813 ], [ 699, 801, 721, 813 ], [ 725, 801, 749, 813 ], [ 753, 801, 782, 813 ], [ 786, 801, 796, 813 ], [ 800, 801, 875, 813 ], [ 494, 816, 506, 829 ], [ 510, 816, 558, 829 ], [ 562, 816, 619, 829 ], [ 352, 832, 422, 845 ], [ 425, 832, 458, 845 ], [ 462, 832, 476, 845 ], [ 422, 848, 476, 860 ] ]
20 1. Multiple 2. Scalable RDBMS 1. Huge data 1. Real-time 1. Login 1. Methods to -- Comparative centralized data for heterogeneous storage interactive security: improve data quality Analysis for sources biological data parallel bulk username and 2. Data clustering, 2. Proteins and 2. Real-time rapid loading password classification, and their structural and parallel bulk capability 2. Creation of reduction Genomes features, core loading 2. Interactive user account to 3. Integration of genomic data, 3. Oracle RDBMS, Web UI, submit and new data/content new types of SQLite files, flat backend access dataset into the system’s omics data such text files, Lucy (a to system via data store and data as version of Lucene) batch job web interface annotation transcriptomics, for keyword computation 3. Single methylomics, and searches, BLAST submission capability proteomics databases, from the UI. (SSO) describing gene USEARCH 3. Download expression databases of assembled 3. Front real-time 4. Linux cluster, and annotated web UI Oracle RDBMS datasets for interactive; server, large offline analysis backend data memory machines, 4. Ability to loading standard Linux query and processing that interactive hosts browse data keeps up with 5. Sequencing and via interactive exponential comparative web UI growth of analysis techniques 5. Visualize sequence data for highly complex data structure due to the rapid data at different drop in cost of 6. Descriptive levels of sequencing statistics resolution; technology ability to view 4. abstract Heterogeneous, complex, of highly structural, and similar data hierarchical biological data
20 Comparative Analysis for and Genomes 1. Multiple centralized data sources 2. Proteins and their structural features, core genomic data, new types of omics data such as transcriptomics, methylomics, and proteomics describing gene expression 3. Front real-time web UI interactive; backend data loading processing that keeps up with exponential growth of sequence data due to the rapid drop in cost of sequencing technology 4. Heterogeneous, complex, structural, and hierarchical biological data 2. Scalable RDBMS for heterogeneous biological data 2. Real-time rapid and parallel bulk loading 3. Oracle RDBMS, SQLite files, flat text files, Lucy (a version of Lucene) for keyword searches, BLAST databases, USEARCH databases 4. Linux cluster, Oracle RDBMS server, large memory machines, standard Linux interactive hosts 5. Sequencing and comparative analysis techniques for highly complex data 6. Descriptive statistics 1. Huge data storage 1. Real-time interactive parallel bulk loading capability 2. Interactive Web UI, backend batch job computation submission from the UI. 3. Download of assembled and annotated datasets for offline analysis 4. Ability to query and browse data via interactive web UI 5. Visualize data structure at different levels of resolution; ability to view abstract of highly similar data 1. Login security: username and password 2. Creation of user account to submit and access dataset to system via web interface 3. Single capability (SSO) 1. Methods to improve data quality 2. Data clustering, classification, reduction 3. Integration of new data/content into the system’s data store and data annotation --
0.201833
[ 0, 17, 28, 29, 49, 60, 1, 2, 18, 19, 30, 40, 41, 42, 50, 51, 61, 62, 72, 73, 83, 84, 85, 95, 96, 97, 109, 118, 124, 125, 130, 136, 137, 141, 145, 146, 147, 153, 154, 159, 164, 165, 171, 176, 177, 182, 183, 184, 190, 194, 195, 200, 201, 207, 208, 209, 210, 214, 215, 216, 217, 222, 225, 229, 231, 232, 235, 236, 239, 240, 241, 3, 4, 5, 20, 21, 31, 32, 43, 44, 45, 52, 53, 54, 63, 74, 75, 76, 86, 87, 88, 98, 99, 100, 101, 110, 111, 112, 119, 120, 126, 127, 131, 138, 142, 148, 149, 150, 155, 156, 160, 161, 166, 167, 172, 173, 178, 179, 185, 186, 187, 191, 196, 197, 202, 203, 204, 211, 218, 219, 223, 6, 7, 8, 22, 9, 10, 23, 33, 34, 46, 55, 64, 65, 77, 78, 89, 113, 114, 121, 128, 132, 133, 134, 139, 140, 143, 144, 151, 152, 157, 158, 162, 163, 168, 169, 170, 174, 175, 180, 181, 188, 189, 192, 193, 198, 199, 205, 206, 212, 213, 220, 221, 224, 226, 227, 228, 230, 233, 234, 237, 238, 11, 12, 24, 35, 36, 47, 56, 57, 58, 66, 67, 68, 79, 80, 90, 91, 102, 103, 104, 115, 116, 122, 123, 129, 135, 13, 14, 15, 25, 26, 27, 37, 38, 39, 48, 59, 69, 70, 71, 81, 82, 92, 93, 94, 105, 106, 107, 108, 117, 16 ]
M0627_v1_8528813905.docx
task-1430-863
182
[ [ 90, 168, 103, 184 ], [ 200, 168, 209, 184 ], [ 212, 168, 255, 184 ], [ 307, 168, 317, 184 ], [ 320, 168, 362, 184 ], [ 365, 168, 403, 184 ], [ 421, 168, 431, 184 ], [ 434, 168, 460, 184 ], [ 463, 168, 486, 184 ], [ 529, 168, 539, 184 ], [ 542, 168, 591, 184 ], [ 620, 168, 630, 184 ], [ 632, 168, 660, 184 ], [ 717, 168, 726, 184 ], [ 729, 168, 775, 184 ], [ 778, 168, 789, 184 ], [ 838, 168, 845, 184 ], [ 120, 188, 186, 204 ], [ 200, 188, 256, 204 ], [ 259, 188, 282, 204 ], [ 307, 188, 322, 204 ], [ 325, 188, 403, 204 ], [ 421, 188, 459, 204 ], [ 529, 188, 584, 204 ], [ 620, 188, 664, 204 ], [ 717, 188, 759, 204 ], [ 762, 188, 785, 204 ], [ 788, 188, 823, 204 ], [ 120, 208, 161, 224 ], [ 164, 208, 179, 224 ], [ 200, 208, 239, 224 ], [ 307, 208, 356, 224 ], [ 359, 208, 382, 224 ], [ 529, 208, 567, 224 ], [ 570, 208, 592, 224 ], [ 620, 208, 671, 224 ], [ 674, 208, 693, 224 ], [ 717, 208, 726, 224 ], [ 729, 208, 753, 224 ], [ 756, 208, 809, 224 ], [ 200, 228, 209, 244 ], [ 212, 228, 254, 244 ], [ 257, 228, 277, 244 ], [ 307, 228, 317, 244 ], [ 320, 228, 369, 244 ], [ 372, 228, 399, 244 ], [ 529, 228, 567, 244 ], [ 620, 228, 669, 244 ], [ 717, 228, 785, 244 ], [ 134, 247, 153, 264 ], [ 200, 247, 224, 264 ], [ 227, 247, 276, 264 ], [ 307, 247, 327, 264 ], [ 330, 247, 368, 264 ], [ 371, 247, 393, 264 ], [ 529, 247, 578, 264 ], [ 620, 247, 630, 264 ], [ 632, 247, 676, 264 ], [ 679, 247, 690, 264 ], [ 717, 247, 766, 264 ], [ 120, 267, 169, 284 ], [ 200, 267, 245, 284 ], [ 248, 267, 271, 284 ], [ 307, 267, 345, 284 ], [ 529, 267, 539, 284 ], [ 542, 267, 597, 284 ], [ 620, 267, 642, 284 ], [ 645, 267, 686, 284 ], [ 689, 267, 700, 284 ], [ 717, 267, 726, 284 ], [ 729, 267, 786, 284 ], [ 789, 267, 800, 284 ], [ 200, 287, 243, 304 ], [ 246, 287, 272, 304 ], [ 307, 287, 317, 304 ], [ 320, 287, 353, 304 ], [ 356, 287, 397, 304 ], [ 529, 287, 553, 304 ], [ 556, 287, 570, 304 ], [ 620, 287, 655, 304 ], [ 658, 287, 678, 304 ], [ 717, 287, 738, 304 ], [ 741, 287, 809, 304 ], [ 200, 307, 221, 324 ], [ 224, 307, 252, 324 ], [ 255, 307, 265, 324 ], [ 307, 307, 340, 324 ], [ 343, 307, 367, 324 ], [ 370, 307, 387, 324 ], [ 529, 307, 572, 324 ], [ 620, 307, 653, 324 ], [ 656, 307, 694, 324 ], [ 717, 307, 737, 324 ], [ 740, 307, 757, 324 ], [ 760, 307, 804, 324 ], [ 200, 327, 229, 343 ], [ 232, 327, 255, 343 ], [ 258, 327, 281, 343 ], [ 307, 327, 328, 343 ], [ 330, 327, 354, 343 ], [ 357, 327, 380, 343 ], [ 383, 327, 393, 343 ], [ 620, 327, 631, 343 ], [ 634, 327, 670, 343 ], [ 673, 327, 687, 343 ], [ 717, 327, 740, 343 ], [ 743, 327, 769, 343 ], [ 772, 327, 791, 343 ], [ 794, 327, 817, 343 ], [ 200, 347, 211, 363 ], [ 307, 347, 345, 363 ], [ 348, 347, 358, 363 ], [ 361, 347, 401, 363 ], [ 529, 347, 558, 363 ], [ 561, 347, 577, 363 ], [ 620, 347, 642, 363 ], [ 645, 347, 691, 363 ], [ 717, 347, 773, 363 ], [ 200, 367, 282, 383 ], [ 307, 367, 322, 383 ], [ 325, 367, 369, 383 ], [ 529, 367, 595, 383 ], [ 620, 367, 630, 383 ], [ 632, 367, 663, 383 ], [ 200, 387, 268, 403 ], [ 271, 387, 291, 403 ], [ 307, 387, 355, 403 ], [ 358, 387, 390, 403 ], [ 529, 387, 586, 403 ], [ 636, 387, 686, 403 ], [ 200, 407, 258, 423 ], [ 307, 407, 362, 423 ], [ 529, 407, 554, 423 ], [ 557, 407, 574, 423 ], [ 577, 407, 591, 423 ], [ 620, 407, 647, 423 ], [ 200, 427, 252, 443 ], [ 255, 427, 280, 443 ], [ 307, 427, 356, 443 ], [ 529, 427, 539, 443 ], [ 542, 427, 594, 443 ], [ 200, 447, 254, 463 ], [ 307, 447, 359, 463 ], [ 529, 447, 540, 463 ], [ 542, 447, 597, 463 ], [ 200, 467, 209, 483 ], [ 212, 467, 240, 483 ], [ 243, 467, 289, 483 ], [ 307, 467, 317, 483 ], [ 320, 467, 347, 483 ], [ 350, 467, 387, 483 ], [ 529, 467, 548, 483 ], [ 551, 467, 605, 483 ], [ 200, 487, 221, 503 ], [ 224, 487, 235, 503 ], [ 307, 487, 341, 503 ], [ 344, 487, 382, 503 ], [ 529, 487, 572, 503 ], [ 575, 487, 590, 503 ], [ 200, 507, 258, 523 ], [ 307, 507, 342, 523 ], [ 345, 507, 371, 523 ], [ 529, 507, 562, 523 ], [ 565, 507, 605, 523 ], [ 200, 527, 243, 543 ], [ 246, 527, 269, 543 ], [ 307, 527, 350, 543 ], [ 354, 527, 405, 543 ], [ 529, 527, 539, 543 ], [ 542, 527, 574, 543 ], [ 577, 527, 588, 543 ], [ 200, 547, 237, 563 ], [ 307, 547, 353, 563 ], [ 356, 547, 383, 563 ], [ 529, 547, 559, 563 ], [ 562, 547, 581, 563 ], [ 200, 567, 254, 583 ], [ 257, 567, 278, 583 ], [ 307, 567, 362, 583 ], [ 365, 567, 392, 583 ], [ 529, 567, 567, 583 ], [ 570, 567, 593, 583 ], [ 200, 587, 229, 603 ], [ 232, 587, 245, 603 ], [ 248, 587, 271, 603 ], [ 307, 587, 317, 603 ], [ 320, 587, 379, 603 ], [ 382, 587, 401, 603 ], [ 529, 587, 544, 603 ], [ 547, 587, 601, 603 ], [ 200, 606, 260, 623 ], [ 307, 606, 372, 623 ], [ 529, 606, 551, 623 ], [ 554, 606, 565, 623 ], [ 200, 626, 236, 643 ], [ 239, 626, 250, 643 ], [ 307, 626, 347, 643 ], [ 350, 626, 407, 643 ], [ 529, 626, 539, 643 ], [ 542, 626, 586, 643 ], [ 200, 646, 248, 663 ], [ 251, 646, 274, 663 ], [ 307, 646, 322, 663 ], [ 325, 646, 356, 663 ], [ 359, 646, 402, 663 ], [ 529, 646, 552, 663 ], [ 555, 646, 602, 663 ], [ 200, 666, 219, 683 ], [ 222, 666, 233, 683 ], [ 236, 666, 253, 683 ], [ 256, 666, 282, 683 ], [ 307, 666, 330, 683 ], [ 529, 666, 539, 683 ], [ 542, 666, 587, 683 ], [ 200, 686, 224, 703 ], [ 227, 686, 236, 703 ], [ 239, 686, 260, 703 ], [ 263, 686, 274, 703 ], [ 307, 686, 317, 703 ], [ 320, 686, 377, 703 ], [ 529, 686, 558, 703 ], [ 561, 686, 571, 703 ], [ 200, 706, 257, 723 ], [ 307, 706, 352, 723 ], [ 529, 706, 585, 723 ], [ 200, 726, 256, 743 ], [ 529, 726, 560, 743 ], [ 563, 726, 574, 743 ], [ 577, 726, 601, 743 ], [ 200, 746, 209, 762 ], [ 529, 746, 571, 762 ], [ 200, 766, 282, 782 ], [ 200, 786, 246, 802 ], [ 537, 786, 547, 802 ], [ 550, 786, 581, 802 ], [ 200, 806, 252, 822 ], [ 255, 806, 275, 822 ], [ 529, 806, 563, 822 ], [ 566, 806, 589, 822 ], [ 200, 826, 259, 842 ], [ 200, 846, 248, 862 ], [ 251, 846, 274, 862 ] ]
[ [ 90, 168, 103, 184 ], [ 120, 188, 186, 204 ], [ 120, 208, 161, 224 ], [ 164, 208, 179, 224 ], [ 134, 247, 153, 264 ], [ 120, 267, 169, 284 ], [ 200, 168, 209, 184 ], [ 212, 168, 255, 184 ], [ 200, 188, 256, 204 ], [ 259, 188, 282, 204 ], [ 200, 208, 239, 224 ], [ 200, 228, 209, 244 ], [ 212, 228, 254, 244 ], [ 257, 228, 277, 244 ], [ 200, 247, 224, 264 ], [ 227, 247, 276, 264 ], [ 200, 267, 245, 284 ], [ 248, 267, 271, 284 ], [ 200, 287, 243, 304 ], [ 246, 287, 272, 304 ], [ 200, 307, 221, 324 ], [ 224, 307, 252, 324 ], [ 255, 307, 265, 324 ], [ 200, 327, 229, 343 ], [ 232, 327, 255, 343 ], [ 258, 327, 281, 343 ], [ 200, 347, 211, 363 ], [ 200, 367, 282, 383 ], [ 200, 387, 268, 403 ], [ 271, 387, 291, 403 ], [ 200, 407, 258, 423 ], [ 200, 427, 252, 443 ], [ 255, 427, 280, 443 ], [ 200, 447, 254, 463 ], [ 200, 467, 209, 483 ], [ 212, 467, 240, 483 ], [ 243, 467, 289, 483 ], [ 200, 487, 221, 503 ], [ 224, 487, 235, 503 ], [ 200, 507, 258, 523 ], [ 200, 527, 243, 543 ], [ 246, 527, 269, 543 ], [ 200, 547, 237, 563 ], [ 200, 567, 254, 583 ], [ 257, 567, 278, 583 ], [ 200, 587, 229, 603 ], [ 232, 587, 245, 603 ], [ 248, 587, 271, 603 ], [ 200, 606, 260, 623 ], [ 200, 626, 236, 643 ], [ 239, 626, 250, 643 ], [ 200, 646, 248, 663 ], [ 251, 646, 274, 663 ], [ 200, 666, 219, 683 ], [ 222, 666, 233, 683 ], [ 236, 666, 253, 683 ], [ 256, 666, 282, 683 ], [ 200, 686, 224, 703 ], [ 227, 686, 236, 703 ], [ 239, 686, 260, 703 ], [ 263, 686, 274, 703 ], [ 200, 706, 257, 723 ], [ 200, 726, 256, 743 ], [ 200, 746, 209, 762 ], [ 200, 766, 282, 782 ], [ 200, 786, 246, 802 ], [ 200, 806, 252, 822 ], [ 255, 806, 275, 822 ], [ 200, 826, 259, 842 ], [ 200, 846, 248, 862 ], [ 251, 846, 274, 862 ], [ 307, 168, 317, 184 ], [ 320, 168, 362, 184 ], [ 365, 168, 403, 184 ], [ 307, 188, 322, 204 ], [ 325, 188, 403, 204 ], [ 307, 208, 356, 224 ], [ 359, 208, 382, 224 ], [ 307, 228, 317, 244 ], [ 320, 228, 369, 244 ], [ 372, 228, 399, 244 ], [ 307, 247, 327, 264 ], [ 330, 247, 368, 264 ], [ 371, 247, 393, 264 ], [ 307, 267, 345, 284 ], [ 307, 287, 317, 304 ], [ 320, 287, 353, 304 ], [ 356, 287, 397, 304 ], [ 307, 307, 340, 324 ], [ 343, 307, 367, 324 ], [ 370, 307, 387, 324 ], [ 307, 327, 328, 343 ], [ 330, 327, 354, 343 ], [ 357, 327, 380, 343 ], [ 383, 327, 393, 343 ], [ 307, 347, 345, 363 ], [ 348, 347, 358, 363 ], [ 361, 347, 401, 363 ], [ 307, 367, 322, 383 ], [ 325, 367, 369, 383 ], [ 307, 387, 355, 403 ], [ 358, 387, 390, 403 ], [ 307, 407, 362, 423 ], [ 307, 427, 356, 443 ], [ 307, 447, 359, 463 ], [ 307, 467, 317, 483 ], [ 320, 467, 347, 483 ], [ 350, 467, 387, 483 ], [ 307, 487, 341, 503 ], [ 344, 487, 382, 503 ], [ 307, 507, 342, 523 ], [ 345, 507, 371, 523 ], [ 307, 527, 350, 543 ], [ 354, 527, 405, 543 ], [ 307, 547, 353, 563 ], [ 356, 547, 383, 563 ], [ 307, 567, 362, 583 ], [ 365, 567, 392, 583 ], [ 307, 587, 317, 603 ], [ 320, 587, 379, 603 ], [ 382, 587, 401, 603 ], [ 307, 606, 372, 623 ], [ 307, 626, 347, 643 ], [ 350, 626, 407, 643 ], [ 307, 646, 322, 663 ], [ 325, 646, 356, 663 ], [ 359, 646, 402, 663 ], [ 307, 666, 330, 683 ], [ 307, 686, 317, 703 ], [ 320, 686, 377, 703 ], [ 307, 706, 352, 723 ], [ 421, 168, 431, 184 ], [ 434, 168, 460, 184 ], [ 463, 168, 486, 184 ], [ 421, 188, 459, 204 ], [ 529, 168, 539, 184 ], [ 542, 168, 591, 184 ], [ 529, 188, 584, 204 ], [ 529, 208, 567, 224 ], [ 570, 208, 592, 224 ], [ 529, 228, 567, 244 ], [ 529, 247, 578, 264 ], [ 529, 267, 539, 284 ], [ 542, 267, 597, 284 ], [ 529, 287, 553, 304 ], [ 556, 287, 570, 304 ], [ 529, 307, 572, 324 ], [ 529, 347, 558, 363 ], [ 561, 347, 577, 363 ], [ 529, 367, 595, 383 ], [ 529, 387, 586, 403 ], [ 529, 407, 554, 423 ], [ 557, 407, 574, 423 ], [ 577, 407, 591, 423 ], [ 529, 427, 539, 443 ], [ 542, 427, 594, 443 ], [ 529, 447, 540, 463 ], [ 542, 447, 597, 463 ], [ 529, 467, 548, 483 ], [ 551, 467, 605, 483 ], [ 529, 487, 572, 503 ], [ 575, 487, 590, 503 ], [ 529, 507, 562, 523 ], [ 565, 507, 605, 523 ], [ 529, 527, 539, 543 ], [ 542, 527, 574, 543 ], [ 577, 527, 588, 543 ], [ 529, 547, 559, 563 ], [ 562, 547, 581, 563 ], [ 529, 567, 567, 583 ], [ 570, 567, 593, 583 ], [ 529, 587, 544, 603 ], [ 547, 587, 601, 603 ], [ 529, 606, 551, 623 ], [ 554, 606, 565, 623 ], [ 529, 626, 539, 643 ], [ 542, 626, 586, 643 ], [ 529, 646, 552, 663 ], [ 555, 646, 602, 663 ], [ 529, 666, 539, 683 ], [ 542, 666, 587, 683 ], [ 529, 686, 558, 703 ], [ 561, 686, 571, 703 ], [ 529, 706, 585, 723 ], [ 529, 726, 560, 743 ], [ 563, 726, 574, 743 ], [ 577, 726, 601, 743 ], [ 529, 746, 571, 762 ], [ 537, 786, 547, 802 ], [ 550, 786, 581, 802 ], [ 529, 806, 563, 822 ], [ 566, 806, 589, 822 ], [ 620, 168, 630, 184 ], [ 632, 168, 660, 184 ], [ 620, 188, 664, 204 ], [ 620, 208, 671, 224 ], [ 674, 208, 693, 224 ], [ 620, 228, 669, 244 ], [ 620, 247, 630, 264 ], [ 632, 247, 676, 264 ], [ 679, 247, 690, 264 ], [ 620, 267, 642, 284 ], [ 645, 267, 686, 284 ], [ 689, 267, 700, 284 ], [ 620, 287, 655, 304 ], [ 658, 287, 678, 304 ], [ 620, 307, 653, 324 ], [ 656, 307, 694, 324 ], [ 620, 327, 631, 343 ], [ 634, 327, 670, 343 ], [ 673, 327, 687, 343 ], [ 620, 347, 642, 363 ], [ 645, 347, 691, 363 ], [ 620, 367, 630, 383 ], [ 632, 367, 663, 383 ], [ 636, 387, 686, 403 ], [ 620, 407, 647, 423 ], [ 717, 168, 726, 184 ], [ 729, 168, 775, 184 ], [ 778, 168, 789, 184 ], [ 717, 188, 759, 204 ], [ 762, 188, 785, 204 ], [ 788, 188, 823, 204 ], [ 717, 208, 726, 224 ], [ 729, 208, 753, 224 ], [ 756, 208, 809, 224 ], [ 717, 228, 785, 244 ], [ 717, 247, 766, 264 ], [ 717, 267, 726, 284 ], [ 729, 267, 786, 284 ], [ 789, 267, 800, 284 ], [ 717, 287, 738, 304 ], [ 741, 287, 809, 304 ], [ 717, 307, 737, 324 ], [ 740, 307, 757, 324 ], [ 760, 307, 804, 324 ], [ 717, 327, 740, 343 ], [ 743, 327, 769, 343 ], [ 772, 327, 791, 343 ], [ 794, 327, 817, 343 ], [ 717, 347, 773, 363 ], [ 838, 168, 845, 184 ] ]
37 1. ≈1 PB/year 1. Advanced 1. MPI, OpenMP, 1. -- -- -- DOE becoming 7 analysis and C, C++, F90, Interpretation Extreme PB/year of visualization FFTW, viz of results Data from observational techniques and packages, Python, using data capabilities to FFTW, numpy, advanced Sky Survey support Boost, OpenMP, visualization interpretation of ScaLAPCK, PSQL techniques results from and MySQL and detailed databases, Eigen, capabilities simulations cfitsio, astrometry.net, and Minuit2 2. Methods/ tools to address supercomputer I/O subsystem limitations 38 1. 20 TB of 1. Analysis on both 1. Standard -- -- 1. Links between -- Large Survey data/day the simulation and astrophysics remote telescopes Data for observational data reduction and central analysis Cosmology simultaneously software as well sites 2. Techniques for as Perl/Python handling Cholesky wrapper scripts decomposition for 2. Oracle RDBMS, thousands of Postgres psql, simulations with GPFS and Lustre matrices of order 1 file systems and million on a side tape archives 3. Parallel image storage 39 1. Real-time data 1. Experimental 1. Legacy 1. Histograms 1. Data 1. Data quality on -- Particle from accelerator data from ALICE, computing and model fits protection complex apparatus Physics at and analysis ATLAS, CMS, LHB infrastructure (visual) LHC instruments 2. Histograms, (computing 2. scatter-plots with nodes)
37 DOE Extreme Data from Sky Survey 1. ≈1 PB/year becoming 7 PB/year of observational data 1. Advanced analysis and visualization techniques and capabilities to support interpretation of results from detailed simulations 1. MPI, OpenMP, C, C++, F90, FFTW, viz packages, Python, FFTW, numpy, Boost, OpenMP, ScaLAPCK, PSQL and MySQL databases, Eigen, cfitsio, astrometry.net, and Minuit2 2. Methods/ tools to address supercomputer I/O subsystem limitations 1. Interpretation of results using advanced visualization techniques and capabilities -- -- -- 38 Large Survey Data for Cosmology 1. 20 TB of data/day 1. Analysis on both the simulation and observational data simultaneously 2. Techniques for handling Cholesky decomposition for thousands of simulations with matrices of order 1 million on a side 1. Standard astrophysics reduction software as well as Perl/Python wrapper scripts 2. Oracle RDBMS, Postgres psql, GPFS and Lustre file systems and tape archives 3. Parallel image storage -- -- 1. Links between remote telescopes and central analysis sites -- 39 Particle Physics at LHC 1. Real-time data from accelerator and analysis instruments 2. 1. Experimental data from ALICE, ATLAS, CMS, LHB 2. Histograms, scatter-plots with 1. Legacy computing infrastructure (computing nodes) 1. Histograms and model fits (visual) 1. Data protection 1. Data quality on complex apparatus --
0.323415
[ 0, 13, 22, 30, 31, 44, 45, 1, 2, 3, 14, 15, 23, 24, 32, 38, 4, 5, 16, 17, 25, 33, 34, 39, 40, 46, 50, 51, 55, 56, 60, 64, 6, 7, 8, 18, 19, 20, 26, 27, 35, 36, 41, 42, 47, 48, 52, 53, 57, 58, 61, 62, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 9, 21, 28, 29, 37, 43, 49, 54, 59, 63, 10, 11, 12, 78, 95, 96, 104, 105, 112, 79, 80, 81, 82, 97, 83, 84, 85, 86, 98, 99, 100, 106, 107, 113, 118, 119, 120, 123, 124, 127, 128, 132, 133, 136, 137, 141, 142, 143, 144, 148, 149, 150, 151, 87, 88, 101, 108, 114, 115, 116, 121, 122, 125, 126, 129, 130, 131, 134, 135, 138, 139, 140, 145, 146, 147, 152, 153, 154, 155, 156, 157, 89, 90, 91, 92, 93, 102, 103, 109, 110, 111, 117, 94, 158, 175, 188, 189, 197, 159, 160, 161, 176, 177, 190, 191, 198, 202, 162, 163, 178, 179, 180, 192, 193, 194, 199, 200, 203, 204, 164, 165, 181, 195, 201, 205, 166, 167, 182, 183, 184, 196, 168, 169, 185, 170, 171, 172, 173, 186, 187, 174 ]
M0627_v1_8528813905.docx
task-1430-863
193
[ [ 90, 168, 103, 184 ], [ 200, 168, 209, 184 ], [ 212, 168, 225, 184 ], [ 227, 168, 268, 184 ], [ 307, 168, 317, 184 ], [ 320, 168, 370, 184 ], [ 421, 168, 431, 184 ], [ 434, 168, 457, 184 ], [ 460, 168, 508, 184 ], [ 529, 168, 539, 184 ], [ 620, 168, 628, 184 ], [ 717, 168, 724, 184 ], [ 838, 168, 845, 184 ], [ 120, 188, 142, 204 ], [ 200, 188, 250, 204 ], [ 253, 188, 259, 204 ], [ 307, 188, 347, 204 ], [ 350, 188, 370, 204 ], [ 421, 188, 431, 204 ], [ 434, 188, 456, 204 ], [ 459, 188, 481, 204 ], [ 529, 188, 602, 204 ], [ 120, 208, 163, 224 ], [ 200, 208, 240, 224 ], [ 243, 208, 254, 224 ], [ 307, 208, 371, 224 ], [ 421, 208, 453, 224 ], [ 456, 208, 470, 224 ], [ 529, 208, 540, 224 ], [ 542, 208, 577, 224 ], [ 120, 228, 144, 244 ], [ 147, 228, 172, 244 ], [ 200, 228, 269, 244 ], [ 307, 228, 364, 244 ], [ 367, 228, 386, 244 ], [ 421, 228, 471, 244 ], [ 474, 228, 514, 244 ], [ 529, 228, 556, 244 ], [ 200, 247, 222, 264 ], [ 307, 247, 365, 264 ], [ 368, 247, 379, 264 ], [ 421, 247, 453, 264 ], [ 456, 247, 495, 264 ], [ 529, 247, 578, 264 ], [ 126, 267, 143, 284 ], [ 146, 267, 180, 284 ], [ 307, 267, 347, 284 ], [ 421, 267, 453, 284 ], [ 456, 267, 505, 284 ], [ 529, 267, 592, 284 ], [ 307, 287, 380, 304 ], [ 383, 287, 393, 304 ], [ 421, 287, 474, 304 ], [ 477, 287, 503, 304 ], [ 529, 287, 586, 304 ], [ 307, 307, 342, 324 ], [ 345, 307, 369, 324 ], [ 421, 307, 440, 324 ], [ 443, 307, 479, 324 ], [ 529, 307, 548, 324 ], [ 307, 327, 349, 343 ], [ 421, 327, 476, 343 ], [ 479, 327, 510, 343 ], [ 529, 327, 587, 343 ], [ 307, 347, 366, 363 ], [ 421, 347, 455, 363 ], [ 421, 367, 501, 383 ], [ 421, 387, 440, 403 ], [ 443, 387, 484, 403 ], [ 421, 407, 431, 423 ], [ 434, 407, 484, 423 ], [ 487, 407, 513, 423 ], [ 421, 427, 432, 443 ], [ 435, 427, 475, 443 ], [ 421, 447, 500, 463 ], [ 421, 467, 437, 483 ], [ 440, 467, 495, 483 ], [ 421, 487, 475, 503 ], [ 90, 508, 103, 525 ], [ 200, 508, 209, 525 ], [ 212, 508, 225, 525 ], [ 228, 508, 240, 525 ], [ 243, 508, 254, 525 ], [ 307, 508, 317, 525 ], [ 320, 508, 361, 525 ], [ 364, 508, 377, 525 ], [ 380, 508, 404, 525 ], [ 421, 508, 431, 525 ], [ 434, 508, 480, 525 ], [ 529, 508, 537, 525 ], [ 620, 508, 628, 525 ], [ 717, 508, 726, 525 ], [ 729, 508, 754, 525 ], [ 757, 508, 803, 525 ], [ 838, 508, 845, 525 ], [ 120, 528, 148, 545 ], [ 151, 528, 185, 545 ], [ 200, 528, 246, 545 ], [ 307, 528, 325, 545 ], [ 327, 528, 381, 545 ], [ 384, 528, 403, 545 ], [ 421, 528, 484, 545 ], [ 717, 528, 754, 545 ], [ 757, 528, 812, 545 ], [ 120, 548, 144, 565 ], [ 147, 548, 162, 565 ], [ 307, 548, 377, 565 ], [ 380, 548, 403, 565 ], [ 421, 548, 471, 565 ], [ 717, 548, 736, 565 ], [ 739, 548, 775, 565 ], [ 778, 548, 818, 565 ], [ 120, 568, 176, 584 ], [ 307, 568, 385, 584 ], [ 421, 568, 466, 584 ], [ 469, 568, 480, 584 ], [ 483, 568, 504, 584 ], [ 717, 568, 740, 584 ], [ 307, 588, 317, 604 ], [ 320, 588, 378, 604 ], [ 381, 588, 396, 604 ], [ 421, 588, 432, 604 ], [ 435, 588, 496, 604 ], [ 307, 608, 352, 624 ], [ 355, 608, 400, 624 ], [ 421, 608, 464, 624 ], [ 467, 608, 501, 624 ], [ 307, 628, 384, 644 ], [ 387, 628, 402, 644 ], [ 421, 628, 431, 644 ], [ 434, 628, 467, 644 ], [ 470, 628, 511, 644 ], [ 307, 648, 361, 664 ], [ 364, 648, 374, 664 ], [ 421, 648, 465, 664 ], [ 468, 648, 492, 664 ], [ 307, 668, 366, 684 ], [ 369, 668, 392, 684 ], [ 421, 668, 447, 684 ], [ 450, 668, 469, 684 ], [ 472, 668, 504, 684 ], [ 307, 688, 352, 704 ], [ 354, 688, 365, 704 ], [ 368, 688, 396, 704 ], [ 399, 688, 405, 704 ], [ 421, 688, 437, 704 ], [ 440, 688, 481, 704 ], [ 484, 688, 503, 704 ], [ 307, 708, 342, 724 ], [ 345, 708, 358, 724 ], [ 361, 708, 367, 724 ], [ 370, 708, 391, 724 ], [ 421, 708, 444, 724 ], [ 447, 708, 489, 724 ], [ 421, 728, 431, 744 ], [ 434, 728, 471, 744 ], [ 474, 728, 506, 744 ], [ 421, 748, 459, 764 ], [ 90, 769, 103, 786 ], [ 200, 769, 209, 786 ], [ 212, 769, 261, 786 ], [ 264, 769, 287, 786 ], [ 307, 769, 317, 786 ], [ 320, 769, 388, 786 ], [ 421, 769, 431, 786 ], [ 434, 769, 468, 786 ], [ 529, 769, 539, 786 ], [ 542, 769, 599, 786 ], [ 620, 769, 630, 786 ], [ 632, 769, 657, 786 ], [ 717, 769, 726, 786 ], [ 729, 769, 753, 786 ], [ 756, 769, 791, 786 ], [ 794, 769, 807, 786 ], [ 838, 769, 845, 786 ], [ 120, 789, 159, 806 ], [ 200, 789, 224, 806 ], [ 227, 789, 285, 806 ], [ 307, 789, 330, 806 ], [ 333, 789, 358, 806 ], [ 361, 789, 393, 806 ], [ 421, 789, 476, 806 ], [ 529, 789, 548, 806 ], [ 551, 789, 584, 806 ], [ 587, 789, 603, 806 ], [ 620, 789, 674, 806 ], [ 717, 789, 760, 806 ], [ 763, 789, 814, 806 ], [ 120, 809, 157, 825 ], [ 160, 809, 170, 825 ], [ 200, 809, 219, 825 ], [ 222, 809, 262, 825 ], [ 307, 809, 342, 825 ], [ 345, 809, 372, 825 ], [ 375, 809, 395, 825 ], [ 421, 809, 492, 825 ], [ 529, 809, 566, 825 ], [ 120, 829, 140, 845 ], [ 200, 829, 261, 845 ], [ 307, 829, 317, 845 ], [ 320, 829, 381, 845 ], [ 421, 829, 480, 845 ], [ 200, 849, 209, 865 ], [ 307, 849, 372, 865 ], [ 375, 849, 398, 865 ], [ 421, 849, 456, 865 ] ]
[ [ 90, 168, 103, 184 ], [ 120, 188, 142, 204 ], [ 120, 208, 163, 224 ], [ 120, 228, 144, 244 ], [ 147, 228, 172, 244 ], [ 126, 267, 143, 284 ], [ 146, 267, 180, 284 ], [ 200, 168, 209, 184 ], [ 212, 168, 225, 184 ], [ 227, 168, 268, 184 ], [ 200, 188, 250, 204 ], [ 253, 188, 259, 204 ], [ 200, 208, 240, 224 ], [ 243, 208, 254, 224 ], [ 200, 228, 269, 244 ], [ 200, 247, 222, 264 ], [ 307, 168, 317, 184 ], [ 320, 168, 370, 184 ], [ 307, 188, 347, 204 ], [ 350, 188, 370, 204 ], [ 307, 208, 371, 224 ], [ 307, 228, 364, 244 ], [ 367, 228, 386, 244 ], [ 307, 247, 365, 264 ], [ 368, 247, 379, 264 ], [ 307, 267, 347, 284 ], [ 307, 287, 380, 304 ], [ 383, 287, 393, 304 ], [ 307, 307, 342, 324 ], [ 345, 307, 369, 324 ], [ 307, 327, 349, 343 ], [ 307, 347, 366, 363 ], [ 421, 168, 431, 184 ], [ 434, 168, 457, 184 ], [ 460, 168, 508, 184 ], [ 421, 188, 431, 204 ], [ 434, 188, 456, 204 ], [ 459, 188, 481, 204 ], [ 421, 208, 453, 224 ], [ 456, 208, 470, 224 ], [ 421, 228, 471, 244 ], [ 474, 228, 514, 244 ], [ 421, 247, 453, 264 ], [ 456, 247, 495, 264 ], [ 421, 267, 453, 284 ], [ 456, 267, 505, 284 ], [ 421, 287, 474, 304 ], [ 477, 287, 503, 304 ], [ 421, 307, 440, 324 ], [ 443, 307, 479, 324 ], [ 421, 327, 476, 343 ], [ 479, 327, 510, 343 ], [ 421, 347, 455, 363 ], [ 421, 367, 501, 383 ], [ 421, 387, 440, 403 ], [ 443, 387, 484, 403 ], [ 421, 407, 431, 423 ], [ 434, 407, 484, 423 ], [ 487, 407, 513, 423 ], [ 421, 427, 432, 443 ], [ 435, 427, 475, 443 ], [ 421, 447, 500, 463 ], [ 421, 467, 437, 483 ], [ 440, 467, 495, 483 ], [ 421, 487, 475, 503 ], [ 529, 168, 539, 184 ], [ 529, 188, 602, 204 ], [ 529, 208, 540, 224 ], [ 542, 208, 577, 224 ], [ 529, 228, 556, 244 ], [ 529, 247, 578, 264 ], [ 529, 267, 592, 284 ], [ 529, 287, 586, 304 ], [ 529, 307, 548, 324 ], [ 529, 327, 587, 343 ], [ 620, 168, 628, 184 ], [ 717, 168, 724, 184 ], [ 838, 168, 845, 184 ], [ 90, 508, 103, 525 ], [ 120, 528, 148, 545 ], [ 151, 528, 185, 545 ], [ 120, 548, 144, 565 ], [ 147, 548, 162, 565 ], [ 120, 568, 176, 584 ], [ 200, 508, 209, 525 ], [ 212, 508, 225, 525 ], [ 228, 508, 240, 525 ], [ 243, 508, 254, 525 ], [ 200, 528, 246, 545 ], [ 307, 508, 317, 525 ], [ 320, 508, 361, 525 ], [ 364, 508, 377, 525 ], [ 380, 508, 404, 525 ], [ 307, 528, 325, 545 ], [ 327, 528, 381, 545 ], [ 384, 528, 403, 545 ], [ 307, 548, 377, 565 ], [ 380, 548, 403, 565 ], [ 307, 568, 385, 584 ], [ 307, 588, 317, 604 ], [ 320, 588, 378, 604 ], [ 381, 588, 396, 604 ], [ 307, 608, 352, 624 ], [ 355, 608, 400, 624 ], [ 307, 628, 384, 644 ], [ 387, 628, 402, 644 ], [ 307, 648, 361, 664 ], [ 364, 648, 374, 664 ], [ 307, 668, 366, 684 ], [ 369, 668, 392, 684 ], [ 307, 688, 352, 704 ], [ 354, 688, 365, 704 ], [ 368, 688, 396, 704 ], [ 399, 688, 405, 704 ], [ 307, 708, 342, 724 ], [ 345, 708, 358, 724 ], [ 361, 708, 367, 724 ], [ 370, 708, 391, 724 ], [ 421, 508, 431, 525 ], [ 434, 508, 480, 525 ], [ 421, 528, 484, 545 ], [ 421, 548, 471, 565 ], [ 421, 568, 466, 584 ], [ 469, 568, 480, 584 ], [ 483, 568, 504, 584 ], [ 421, 588, 432, 604 ], [ 435, 588, 496, 604 ], [ 421, 608, 464, 624 ], [ 467, 608, 501, 624 ], [ 421, 628, 431, 644 ], [ 434, 628, 467, 644 ], [ 470, 628, 511, 644 ], [ 421, 648, 465, 664 ], [ 468, 648, 492, 664 ], [ 421, 668, 447, 684 ], [ 450, 668, 469, 684 ], [ 472, 668, 504, 684 ], [ 421, 688, 437, 704 ], [ 440, 688, 481, 704 ], [ 484, 688, 503, 704 ], [ 421, 708, 444, 724 ], [ 447, 708, 489, 724 ], [ 421, 728, 431, 744 ], [ 434, 728, 471, 744 ], [ 474, 728, 506, 744 ], [ 421, 748, 459, 764 ], [ 529, 508, 537, 525 ], [ 620, 508, 628, 525 ], [ 717, 508, 726, 525 ], [ 729, 508, 754, 525 ], [ 757, 508, 803, 525 ], [ 717, 528, 754, 545 ], [ 757, 528, 812, 545 ], [ 717, 548, 736, 565 ], [ 739, 548, 775, 565 ], [ 778, 548, 818, 565 ], [ 717, 568, 740, 584 ], [ 838, 508, 845, 525 ], [ 90, 769, 103, 786 ], [ 120, 789, 159, 806 ], [ 120, 809, 157, 825 ], [ 160, 809, 170, 825 ], [ 120, 829, 140, 845 ], [ 200, 769, 209, 786 ], [ 212, 769, 261, 786 ], [ 264, 769, 287, 786 ], [ 200, 789, 224, 806 ], [ 227, 789, 285, 806 ], [ 200, 809, 219, 825 ], [ 222, 809, 262, 825 ], [ 200, 829, 261, 845 ], [ 200, 849, 209, 865 ], [ 307, 769, 317, 786 ], [ 320, 769, 388, 786 ], [ 307, 789, 330, 806 ], [ 333, 789, 358, 806 ], [ 361, 789, 393, 806 ], [ 307, 809, 342, 825 ], [ 345, 809, 372, 825 ], [ 375, 809, 395, 825 ], [ 307, 829, 317, 845 ], [ 320, 829, 381, 845 ], [ 307, 849, 372, 865 ], [ 375, 849, 398, 865 ], [ 421, 769, 431, 786 ], [ 434, 769, 468, 786 ], [ 421, 789, 476, 806 ], [ 421, 809, 492, 825 ], [ 421, 829, 480, 845 ], [ 421, 849, 456, 865 ], [ 529, 769, 539, 786 ], [ 542, 769, 599, 786 ], [ 529, 789, 548, 806 ], [ 551, 789, 584, 806 ], [ 587, 789, 603, 806 ], [ 529, 809, 566, 825 ], [ 620, 769, 630, 786 ], [ 632, 769, 657, 786 ], [ 620, 789, 674, 806 ], [ 717, 769, 726, 786 ], [ 729, 769, 753, 786 ], [ 756, 769, 791, 786 ], [ 794, 769, 807, 786 ], [ 717, 789, 760, 806 ], [ 763, 789, 814, 806 ], [ 838, 769, 845, 786 ] ]
InCadence Strategic Services NASA AlloyCloud, Inc. Pw Carey Philippe Journeau William Miller Compliance Partners, LLC ResearXis MaCT USA Wo Chang Pavithra Kenjige Bob Natale NIST PK Technologies Mitre Corporation Yuri Demchenko Orit Levin Rod Peterson University of Amsterdam Microsoft U.S. Department of Veterans Affairs Frank Farance Eugene Luster Ann Racuya-Robbins Consultant U.S. Defense Information Systems World Knowledge Bank Agency/R2AD LLC Geoffrey Fox Russell Reinsch Ashok Malhotra Indiana University Center for Government Interoperability Oracle Ian Gorton John Rogers Bill Mandrick CMU HP L3 Data Tactics Nancy Grady Robert Marcus Arnab Roy SAIC ET-Strategies Fujitsu Karen Guertler Lisa Martinez Mark Underwood Consultant Consultant Krypton Brothers; Synchrony Financial William Vorhies Keith Hare JCC Consulting, Inc. Predictive Modeling LLC Alicia Zuniga-Alvarado Consultant
InCadence Strategic Services Pw Carey Compliance Partners, LLC Wo Chang NIST Yuri Demchenko University of Amsterdam Frank Farance Consultant Geoffrey Fox Indiana University Ian Gorton CMU Nancy Grady SAIC Karen Guertler Consultant Keith Hare JCC Consulting, Inc. NASA Philippe Journeau ResearXis Pavithra Kenjige PK Technologies Orit Levin Microsoft Eugene Luster U.S. Defense Information Systems Agency/R2AD LLC Ashok Malhotra Oracle Bill Mandrick L3 Data Tactics Robert Marcus ET-Strategies Lisa Martinez Consultant AlloyCloud, Inc. William Miller MaCT USA Bob Natale Mitre Corporation Rod Peterson U.S. Department of Veterans Affairs Ann Racuya-Robbins World Knowledge Bank Russell Reinsch Center for Government Interoperability John Rogers HP Arnab Roy Fujitsu Mark Underwood Krypton Brothers; Synchrony Financial William Vorhies Predictive Modeling LLC Alicia Zuniga-Alvarado Consultant
0.326165
[ 0, 1, 2, 6, 7, 12, 13, 14, 18, 19, 24, 29, 30, 35, 36, 37, 44, 45, 50, 60, 61, 66, 67, 73, 74, 79, 84, 85, 90, 93, 94, 99, 107, 108, 109, 110, 111, 3, 8, 9, 15, 20, 21, 25, 26, 31, 32, 38, 46, 47, 51, 52, 53, 54, 58, 59, 64, 65, 72, 77, 78, 81, 82, 83, 86, 87, 91, 95, 96, 100, 4, 5, 10, 11, 16, 17, 22, 23, 27, 28, 33, 34, 39, 40, 41, 42, 43, 48, 49, 55, 56, 57, 62, 63, 68, 69, 70, 71, 75, 76, 80, 88, 89, 92, 97, 98, 101, 102, 103, 104, 105, 106, 112, 113, 114, 115, 116, 117 ]
M0635_v1_5650594125.docx
task-1430-866
5
[ [ 88, 90, 159, 105 ], [ 163, 90, 222, 105 ], [ 226, 90, 280, 105 ], [ 368, 90, 407, 105 ], [ 649, 90, 727, 105 ], [ 731, 90, 756, 105 ], [ 88, 111, 109, 129 ], [ 114, 111, 156, 129 ], [ 368, 111, 426, 129 ], [ 430, 111, 496, 129 ], [ 649, 111, 705, 129 ], [ 709, 111, 752, 129 ], [ 88, 127, 167, 142 ], [ 171, 127, 232, 142 ], [ 236, 127, 265, 142 ], [ 368, 127, 434, 142 ], [ 649, 127, 690, 142 ], [ 694, 127, 724, 142 ], [ 88, 148, 112, 165 ], [ 116, 148, 163, 165 ], [ 368, 148, 429, 165 ], [ 433, 148, 488, 165 ], [ 649, 148, 677, 165 ], [ 681, 148, 726, 165 ], [ 88, 163, 121, 178 ], [ 368, 163, 389, 178 ], [ 393, 163, 480, 178 ], [ 649, 163, 685, 178 ], [ 689, 163, 771, 178 ], [ 88, 184, 120, 202 ], [ 124, 184, 207, 202 ], [ 368, 184, 398, 202 ], [ 402, 184, 442, 202 ], [ 649, 184, 678, 202 ], [ 682, 184, 743, 202 ], [ 88, 200, 156, 215 ], [ 160, 200, 172, 215 ], [ 177, 200, 251, 215 ], [ 368, 200, 432, 215 ], [ 649, 200, 677, 215 ], [ 681, 200, 759, 215 ], [ 763, 200, 776, 215 ], [ 780, 200, 838, 215 ], [ 842, 200, 886, 215 ], [ 88, 221, 131, 238 ], [ 135, 221, 192, 238 ], [ 368, 221, 420, 238 ], [ 424, 221, 470, 238 ], [ 649, 221, 678, 238 ], [ 683, 221, 799, 238 ], [ 88, 236, 159, 252 ], [ 368, 236, 396, 252 ], [ 401, 236, 453, 252 ], [ 457, 236, 535, 252 ], [ 539, 236, 591, 252 ], [ 649, 236, 689, 252 ], [ 693, 236, 767, 252 ], [ 771, 236, 805, 252 ], [ 368, 251, 461, 266 ], [ 465, 251, 494, 266 ], [ 88, 257, 149, 275 ], [ 154, 257, 180, 275 ], [ 649, 257, 698, 275 ], [ 703, 257, 758, 275 ], [ 368, 272, 413, 289 ], [ 417, 272, 483, 289 ], [ 88, 273, 139, 288 ], [ 143, 273, 211, 288 ], [ 649, 273, 693, 288 ], [ 697, 273, 716, 288 ], [ 720, 273, 801, 288 ], [ 805, 273, 909, 288 ], [ 368, 287, 413, 303 ], [ 88, 294, 111, 312 ], [ 115, 294, 166, 312 ], [ 649, 294, 683, 312 ], [ 687, 294, 736, 312 ], [ 368, 309, 393, 326 ], [ 397, 309, 467, 326 ], [ 88, 310, 124, 325 ], [ 649, 310, 670, 325 ], [ 368, 324, 385, 339 ], [ 390, 324, 422, 339 ], [ 426, 324, 474, 339 ], [ 88, 345, 132, 363 ], [ 136, 345, 182, 363 ], [ 368, 345, 417, 363 ], [ 421, 345, 475, 363 ], [ 649, 345, 694, 363 ], [ 698, 345, 726, 363 ], [ 88, 361, 122, 376 ], [ 368, 361, 458, 376 ], [ 649, 361, 695, 376 ], [ 88, 382, 132, 399 ], [ 136, 382, 197, 399 ], [ 368, 382, 398, 399 ], [ 402, 382, 467, 399 ], [ 649, 382, 689, 399 ], [ 693, 382, 774, 399 ], [ 88, 397, 159, 413 ], [ 368, 397, 440, 413 ], [ 649, 397, 702, 413 ], [ 706, 397, 769, 413 ], [ 773, 397, 842, 413 ], [ 846, 397, 910, 413 ], [ 649, 418, 711, 438 ], [ 715, 418, 775, 438 ], [ 88, 419, 127, 436 ], [ 131, 419, 166, 436 ], [ 88, 434, 117, 449 ], [ 121, 434, 197, 449 ], [ 201, 434, 226, 449 ], [ 649, 435, 723, 452 ], [ 727, 435, 796, 452 ], [ 801, 435, 833, 452 ], [ 649, 458, 694, 477 ], [ 698, 458, 831, 477 ], [ 649, 475, 728, 492 ] ]
[ [ 88, 90, 159, 105 ], [ 163, 90, 222, 105 ], [ 226, 90, 280, 105 ], [ 88, 111, 109, 129 ], [ 114, 111, 156, 129 ], [ 88, 127, 167, 142 ], [ 171, 127, 232, 142 ], [ 236, 127, 265, 142 ], [ 88, 148, 112, 165 ], [ 116, 148, 163, 165 ], [ 88, 163, 121, 178 ], [ 88, 184, 120, 202 ], [ 124, 184, 207, 202 ], [ 88, 200, 156, 215 ], [ 160, 200, 172, 215 ], [ 177, 200, 251, 215 ], [ 88, 221, 131, 238 ], [ 135, 221, 192, 238 ], [ 88, 236, 159, 252 ], [ 88, 257, 149, 275 ], [ 154, 257, 180, 275 ], [ 88, 273, 139, 288 ], [ 143, 273, 211, 288 ], [ 88, 294, 111, 312 ], [ 115, 294, 166, 312 ], [ 88, 310, 124, 325 ], [ 88, 345, 132, 363 ], [ 136, 345, 182, 363 ], [ 88, 361, 122, 376 ], [ 88, 382, 132, 399 ], [ 136, 382, 197, 399 ], [ 88, 397, 159, 413 ], [ 88, 419, 127, 436 ], [ 131, 419, 166, 436 ], [ 88, 434, 117, 449 ], [ 121, 434, 197, 449 ], [ 201, 434, 226, 449 ], [ 368, 90, 407, 105 ], [ 368, 111, 426, 129 ], [ 430, 111, 496, 129 ], [ 368, 127, 434, 142 ], [ 368, 148, 429, 165 ], [ 433, 148, 488, 165 ], [ 368, 163, 389, 178 ], [ 393, 163, 480, 178 ], [ 368, 184, 398, 202 ], [ 402, 184, 442, 202 ], [ 368, 200, 432, 215 ], [ 368, 221, 420, 238 ], [ 424, 221, 470, 238 ], [ 368, 236, 396, 252 ], [ 401, 236, 453, 252 ], [ 457, 236, 535, 252 ], [ 539, 236, 591, 252 ], [ 368, 251, 461, 266 ], [ 465, 251, 494, 266 ], [ 368, 272, 413, 289 ], [ 417, 272, 483, 289 ], [ 368, 287, 413, 303 ], [ 368, 309, 393, 326 ], [ 397, 309, 467, 326 ], [ 368, 324, 385, 339 ], [ 390, 324, 422, 339 ], [ 426, 324, 474, 339 ], [ 368, 345, 417, 363 ], [ 421, 345, 475, 363 ], [ 368, 361, 458, 376 ], [ 368, 382, 398, 399 ], [ 402, 382, 467, 399 ], [ 368, 397, 440, 413 ], [ 649, 90, 727, 105 ], [ 731, 90, 756, 105 ], [ 649, 111, 705, 129 ], [ 709, 111, 752, 129 ], [ 649, 127, 690, 142 ], [ 694, 127, 724, 142 ], [ 649, 148, 677, 165 ], [ 681, 148, 726, 165 ], [ 649, 163, 685, 178 ], [ 689, 163, 771, 178 ], [ 649, 184, 678, 202 ], [ 682, 184, 743, 202 ], [ 649, 200, 677, 215 ], [ 681, 200, 759, 215 ], [ 763, 200, 776, 215 ], [ 780, 200, 838, 215 ], [ 842, 200, 886, 215 ], [ 649, 221, 678, 238 ], [ 683, 221, 799, 238 ], [ 649, 236, 689, 252 ], [ 693, 236, 767, 252 ], [ 771, 236, 805, 252 ], [ 649, 257, 698, 275 ], [ 703, 257, 758, 275 ], [ 649, 273, 693, 288 ], [ 697, 273, 716, 288 ], [ 720, 273, 801, 288 ], [ 805, 273, 909, 288 ], [ 649, 294, 683, 312 ], [ 687, 294, 736, 312 ], [ 649, 310, 670, 325 ], [ 649, 345, 694, 363 ], [ 698, 345, 726, 363 ], [ 649, 361, 695, 376 ], [ 649, 382, 689, 399 ], [ 693, 382, 774, 399 ], [ 649, 397, 702, 413 ], [ 706, 397, 769, 413 ], [ 773, 397, 842, 413 ], [ 846, 397, 910, 413 ], [ 649, 418, 711, 438 ], [ 715, 418, 775, 438 ], [ 649, 435, 723, 452 ], [ 727, 435, 796, 452 ], [ 801, 435, 833, 452 ], [ 649, 458, 694, 477 ], [ 698, 458, 831, 477 ], [ 649, 475, 728, 492 ] ]
images, hundreds of real-time analytic recognition and tracking, translation; video thousands of partially challenges from document analysis, person/object detection ground-truthed video multiple data dialogue, and tracking; event clips, terabytes of streams multimedia search/extraction detection; smaller fully imagery/document test matching; novelty collections detection; structural semantic temporal analytics 32 Petabytes, hundreds Real time and batch Rich iRODS Supports general DataNet (iRODS) of millions of files analysis workflows 33 Small as metadata to Real time Can tackle arbitrary Big Data Symfony-PHP, Linux, -- The Discinnet Big Data MySQL Process 34 A few terabytes Evolving in time Rich Database Data graph processing Semantic 35 50 to 400 GB per day, Continuous stream Images Octopus for Volume reconstruction, Light Source total ≈400 TB of data, but analysis Tomographic feature identification, Beamlines need not be real Reconstruction, Avizo () etc. time and FIJI (a distribution of ImageJ) 36 ≈100 TB total Nightly update runs Images, spectra, time series, Custom data processing Detection of rare events Catalina increasing by 0.1 TB a processes in real catalogs pipeline and data and relation to existing Time Transient night accessing PBs of time analysis software diverse data Survey base astronomy data, 30 TB a night from successor LSST in 2020s 37 Several petabytes Analysis done in Image and simulation data MPI, FFTW, viz New analytics needed to DOE Extreme from Dark Energy batch mode with packages, numpy, analyze simulation Data from Survey and Zwicky data from Boost, OpenMP, results Cosmological Sky Transient Factory, observations and ScaLAPCK, PSQL and Survey simulations > 10 PB simulations MySQL databases, updated daily Eigen, cfitsio, astrometry.net, and
images, hundreds of thousands of partially ground-truthed video clips, terabytes of smaller fully test collections real-time analytic challenges from multiple data streams recognition and tracking, document analysis, dialogue, multimedia search/extraction translation; video person/object detection and tracking; event detection; imagery/document matching; novelty detection; structural semantic temporal analytics 32 DataNet (iRODS) Petabytes, hundreds of millions of files Real time and batch Rich iRODS Supports general analysis workflows 33 The Discinnet Process Small as metadata to Big Data Real time Can tackle arbitrary Big Data Symfony-PHP, Linux, MySQL -- 34 Semantic A few terabytes Evolving in time Rich Database Data graph processing 35 Light Source Beamlines 50 to 400 GB per day, total ≈400 TB Continuous stream of data, but analysis need not be real time Images Octopus for Tomographic Reconstruction, Avizo () and FIJI (a distribution of ImageJ) Volume reconstruction, feature identification, etc. 36 Catalina Transient Survey ≈100 TB total increasing by 0.1 TB a night accessing PBs of base astronomy data, 30 TB a night from successor LSST in 2020s Nightly update runs processes in real time Images, spectra, time series, catalogs Custom data processing pipeline and data analysis software Detection of rare events and relation to existing diverse data 37 DOE Extreme Data from Cosmological Sky Survey Several petabytes from Dark Energy Survey and Zwicky Transient Factory, simulations > 10 PB Analysis done in batch mode with data from observations and simulations updated daily Image and simulation data MPI, FFTW, viz packages, numpy, Boost, OpenMP, ScaLAPCK, PSQL and MySQL databases, Eigen, cfitsio, astrometry.net, and New analytics needed to analyze simulation results Time
0.465266
[ 0, 1, 2, 10, 11, 12, 19, 20, 27, 28, 29, 34, 35, 37, 40, 3, 4, 13, 14, 21, 22, 30, 5, 6, 7, 15, 16, 23, 31, 32, 8, 9, 17, 18, 24, 25, 26, 33, 36, 38, 39, 41, 42, 43, 44, 45, 46, 57, 58, 47, 48, 59, 60, 61, 62, 49, 50, 51, 52, 53, 54, 55, 56, 63, 64, 65, 80, 81, 85, 66, 67, 68, 69, 82, 83, 70, 71, 72, 73, 74, 75, 76, 77, 78, 84, 79, 86, 98, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 99, 113, 114, 125, 100, 101, 102, 103, 104, 105, 115, 116, 117, 106, 107, 118, 119, 120, 121, 126, 127, 128, 129, 134, 108, 109, 110, 122, 130, 131, 132, 135, 136, 137, 138, 139, 140, 111, 112, 123, 124, 133, 141, 159, 177, 187, 142, 143, 144, 160, 161, 162, 163, 164, 178, 179, 180, 181, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 145, 146, 147, 165, 166, 167, 182, 148, 149, 150, 151, 168, 152, 153, 154, 169, 170, 171, 183, 184, 155, 156, 157, 158, 172, 173, 174, 175, 185, 186, 200, 217, 218, 229, 230, 239, 240, 248, 201, 202, 219, 220, 221, 231, 232, 233, 241, 242, 249, 250, 251, 252, 203, 204, 205, 222, 223, 224, 234, 235, 243, 244, 253, 256, 257, 206, 207, 208, 209, 210, 211, 212, 225, 226, 236, 237, 245, 246, 247, 254, 255, 258, 259, 260, 261, 213, 214, 215, 216, 227, 228, 238, 176 ]
M0637_v1_6301062872.docx
task-1430-868
170
[ [ 224, 146, 263, 162 ], [ 266, 146, 315, 162 ], [ 318, 146, 328, 162 ], [ 353, 146, 400, 162 ], [ 403, 146, 443, 162 ], [ 471, 146, 529, 162 ], [ 532, 146, 551, 162 ], [ 554, 146, 599, 162 ], [ 780, 146, 839, 162 ], [ 842, 146, 870, 162 ], [ 224, 166, 277, 182 ], [ 280, 166, 291, 182 ], [ 293, 166, 335, 182 ], [ 353, 166, 407, 182 ], [ 410, 166, 435, 182 ], [ 471, 166, 523, 182 ], [ 526, 166, 569, 182 ], [ 780, 166, 852, 182 ], [ 855, 166, 904, 182 ], [ 224, 186, 304, 202 ], [ 307, 186, 335, 202 ], [ 353, 186, 396, 202 ], [ 399, 186, 421, 202 ], [ 524, 186, 571, 202 ], [ 780, 186, 799, 202 ], [ 802, 186, 847, 202 ], [ 849, 186, 878, 202 ], [ 224, 206, 250, 222 ], [ 253, 206, 301, 222 ], [ 304, 206, 315, 222 ], [ 353, 206, 394, 222 ], [ 471, 206, 529, 222 ], [ 532, 206, 623, 222 ], [ 780, 206, 832, 222 ], [ 224, 226, 261, 242 ], [ 264, 226, 286, 242 ], [ 780, 226, 878, 242 ], [ 266, 246, 285, 262 ], [ 780, 246, 831, 262 ], [ 834, 246, 872, 262 ], [ 224, 266, 279, 282 ], [ 780, 266, 832, 282 ], [ 835, 266, 885, 282 ], [ 780, 286, 826, 302 ], [ 829, 286, 876, 302 ], [ 780, 306, 825, 322 ], [ 90, 321, 103, 342 ], [ 224, 326, 278, 343 ], [ 281, 326, 330, 343 ], [ 353, 326, 375, 343 ], [ 378, 326, 402, 343 ], [ 404, 326, 424, 343 ], [ 427, 326, 456, 343 ], [ 471, 326, 492, 343 ], [ 639, 326, 671, 343 ], [ 780, 326, 826, 343 ], [ 829, 326, 867, 343 ], [ 117, 346, 160, 363 ], [ 163, 346, 204, 363 ], [ 224, 346, 234, 363 ], [ 237, 346, 277, 363 ], [ 280, 346, 290, 363 ], [ 293, 346, 314, 363 ], [ 780, 346, 820, 363 ], [ 823, 346, 876, 363 ], [ 90, 361, 103, 383 ], [ 224, 367, 251, 383 ], [ 254, 367, 265, 383 ], [ 268, 367, 318, 383 ], [ 321, 367, 332, 383 ], [ 353, 367, 375, 383 ], [ 378, 367, 402, 383 ], [ 471, 367, 490, 383 ], [ 493, 367, 524, 383 ], [ 526, 367, 571, 383 ], [ 574, 367, 590, 383 ], [ 593, 367, 617, 383 ], [ 639, 367, 711, 383 ], [ 714, 367, 745, 383 ], [ 780, 367, 787, 383 ], [ 117, 387, 136, 403 ], [ 139, 387, 188, 403 ], [ 224, 387, 240, 403 ], [ 242, 387, 266, 403 ], [ 639, 387, 675, 403 ], [ 117, 407, 156, 423 ], [ 90, 422, 103, 444 ], [ 224, 428, 231, 444 ], [ 234, 428, 253, 444 ], [ 256, 428, 305, 444 ], [ 353, 428, 396, 444 ], [ 399, 428, 408, 444 ], [ 411, 428, 434, 444 ], [ 471, 428, 492, 444 ], [ 639, 428, 687, 444 ], [ 780, 428, 804, 444 ], [ 807, 428, 836, 444 ], [ 839, 428, 894, 444 ], [ 117, 448, 165, 464 ], [ 90, 483, 103, 504 ], [ 224, 488, 237, 505 ], [ 240, 488, 250, 505 ], [ 253, 488, 272, 505 ], [ 275, 488, 290, 505 ], [ 293, 488, 310, 505 ], [ 313, 488, 335, 505 ], [ 353, 488, 412, 505 ], [ 415, 488, 451, 505 ], [ 471, 488, 507, 505 ], [ 639, 488, 682, 505 ], [ 685, 488, 700, 505 ], [ 780, 488, 819, 505 ], [ 822, 488, 901, 505 ], [ 117, 508, 142, 525 ], [ 145, 508, 181, 525 ], [ 224, 508, 248, 525 ], [ 251, 508, 276, 525 ], [ 279, 508, 292, 525 ], [ 353, 508, 364, 525 ], [ 367, 508, 393, 525 ], [ 396, 508, 413, 525 ], [ 416, 508, 456, 525 ], [ 639, 508, 707, 525 ], [ 780, 508, 817, 525 ], [ 820, 508, 891, 525 ], [ 117, 528, 171, 545 ], [ 353, 528, 379, 545 ], [ 382, 528, 399, 545 ], [ 402, 528, 415, 545 ], [ 418, 528, 438, 545 ], [ 639, 528, 720, 545 ], [ 723, 528, 750, 545 ], [ 753, 528, 761, 545 ], [ 780, 528, 799, 545 ], [ 353, 548, 377, 565 ], [ 639, 548, 659, 565 ], [ 662, 548, 678, 565 ], [ 680, 548, 690, 565 ], [ 693, 548, 753, 565 ], [ 639, 568, 650, 584 ], [ 653, 568, 692, 584 ], [ 90, 583, 103, 605 ], [ 224, 589, 249, 605 ], [ 252, 589, 265, 605 ], [ 268, 589, 292, 605 ], [ 353, 589, 390, 605 ], [ 393, 589, 429, 605 ], [ 432, 589, 455, 605 ], [ 471, 589, 510, 605 ], [ 513, 589, 554, 605 ], [ 557, 589, 581, 605 ], [ 584, 589, 616, 605 ], [ 639, 589, 678, 605 ], [ 681, 589, 704, 605 ], [ 707, 589, 762, 605 ], [ 780, 589, 830, 605 ], [ 833, 589, 843, 605 ], [ 846, 589, 867, 605 ], [ 870, 589, 904, 605 ], [ 117, 609, 159, 625 ], [ 224, 609, 276, 625 ], [ 279, 609, 291, 625 ], [ 294, 609, 310, 625 ], [ 313, 609, 326, 625 ], [ 329, 609, 335, 625 ], [ 353, 609, 404, 625 ], [ 406, 609, 416, 625 ], [ 419, 609, 438, 625 ], [ 471, 609, 513, 625 ], [ 639, 609, 680, 625 ], [ 683, 609, 703, 625 ], [ 705, 609, 728, 625 ], [ 780, 609, 799, 625 ], [ 802, 609, 842, 625 ], [ 845, 609, 856, 625 ], [ 859, 609, 898, 625 ], [ 117, 629, 143, 645 ], [ 145, 629, 195, 645 ], [ 224, 629, 250, 645 ], [ 253, 629, 301, 645 ], [ 304, 629, 323, 645 ], [ 325, 629, 336, 645 ], [ 353, 629, 377, 645 ], [ 639, 629, 679, 645 ], [ 682, 629, 728, 645 ], [ 780, 629, 817, 645 ], [ 820, 629, 843, 645 ], [ 117, 649, 152, 665 ], [ 224, 649, 248, 665 ], [ 251, 649, 306, 665 ], [ 309, 649, 335, 665 ], [ 224, 669, 237, 685 ], [ 240, 669, 252, 685 ], [ 255, 669, 261, 685 ], [ 264, 669, 291, 685 ], [ 293, 669, 319, 685 ], [ 224, 689, 273, 705 ], [ 276, 689, 299, 705 ], [ 302, 689, 312, 705 ], [ 224, 709, 254, 725 ], [ 90, 724, 103, 745 ], [ 224, 729, 261, 746 ], [ 264, 729, 315, 746 ], [ 353, 729, 394, 746 ], [ 397, 729, 424, 746 ], [ 426, 729, 436, 746 ], [ 471, 729, 502, 746 ], [ 505, 729, 524, 746 ], [ 527, 729, 581, 746 ], [ 584, 729, 607, 746 ], [ 639, 729, 663, 746 ], [ 666, 729, 698, 746 ], [ 701, 729, 714, 746 ], [ 780, 729, 803, 746 ], [ 806, 729, 851, 746 ], [ 854, 729, 892, 746 ], [ 895, 729, 906, 746 ], [ 117, 749, 139, 766 ], [ 142, 749, 186, 766 ], [ 224, 749, 249, 766 ], [ 252, 749, 276, 766 ], [ 278, 749, 314, 766 ], [ 353, 749, 382, 766 ], [ 385, 749, 415, 766 ], [ 417, 749, 440, 766 ], [ 639, 749, 689, 766 ], [ 692, 749, 731, 766 ], [ 780, 749, 818, 766 ], [ 821, 749, 875, 766 ], [ 117, 769, 141, 786 ], [ 144, 769, 170, 786 ], [ 224, 769, 258, 786 ], [ 261, 769, 281, 786 ], [ 283, 769, 318, 786 ], [ 353, 769, 376, 786 ], [ 379, 769, 404, 786 ], [ 639, 769, 672, 786 ], [ 675, 769, 723, 786 ], [ 780, 769, 814, 786 ], [ 117, 789, 186, 806 ], [ 189, 789, 207, 806 ], [ 224, 789, 272, 806 ], [ 275, 789, 316, 806 ], [ 353, 789, 419, 806 ], [ 422, 789, 441, 806 ], [ 639, 789, 692, 806 ], [ 695, 789, 721, 806 ], [ 724, 789, 743, 806 ], [ 117, 809, 152, 825 ], [ 224, 809, 283, 825 ], [ 286, 809, 292, 825 ], [ 295, 809, 307, 825 ], [ 310, 809, 324, 825 ], [ 353, 809, 412, 825 ], [ 639, 809, 675, 825 ], [ 678, 809, 733, 825 ], [ 353, 829, 396, 845 ], [ 399, 829, 423, 845 ], [ 639, 829, 670, 845 ], [ 673, 829, 707, 845 ], [ 639, 849, 719, 865 ], [ 722, 849, 742, 865 ] ]
[ [ 224, 146, 263, 162 ], [ 266, 146, 315, 162 ], [ 318, 146, 328, 162 ], [ 224, 166, 277, 182 ], [ 280, 166, 291, 182 ], [ 293, 166, 335, 182 ], [ 224, 186, 304, 202 ], [ 307, 186, 335, 202 ], [ 224, 206, 250, 222 ], [ 253, 206, 301, 222 ], [ 304, 206, 315, 222 ], [ 224, 226, 261, 242 ], [ 264, 226, 286, 242 ], [ 266, 246, 285, 262 ], [ 224, 266, 279, 282 ], [ 353, 146, 400, 162 ], [ 403, 146, 443, 162 ], [ 353, 166, 407, 182 ], [ 410, 166, 435, 182 ], [ 353, 186, 396, 202 ], [ 399, 186, 421, 202 ], [ 353, 206, 394, 222 ], [ 471, 146, 529, 162 ], [ 532, 146, 551, 162 ], [ 554, 146, 599, 162 ], [ 471, 166, 523, 182 ], [ 526, 166, 569, 182 ], [ 524, 186, 571, 202 ], [ 471, 206, 529, 222 ], [ 532, 206, 623, 222 ], [ 780, 146, 839, 162 ], [ 842, 146, 870, 162 ], [ 780, 166, 852, 182 ], [ 855, 166, 904, 182 ], [ 780, 186, 799, 202 ], [ 802, 186, 847, 202 ], [ 849, 186, 878, 202 ], [ 780, 206, 832, 222 ], [ 780, 226, 878, 242 ], [ 780, 246, 831, 262 ], [ 834, 246, 872, 262 ], [ 780, 266, 832, 282 ], [ 835, 266, 885, 282 ], [ 780, 286, 826, 302 ], [ 829, 286, 876, 302 ], [ 780, 306, 825, 322 ], [ 90, 321, 103, 342 ], [ 117, 346, 160, 363 ], [ 163, 346, 204, 363 ], [ 224, 326, 278, 343 ], [ 281, 326, 330, 343 ], [ 224, 346, 234, 363 ], [ 237, 346, 277, 363 ], [ 280, 346, 290, 363 ], [ 293, 346, 314, 363 ], [ 353, 326, 375, 343 ], [ 378, 326, 402, 343 ], [ 404, 326, 424, 343 ], [ 427, 326, 456, 343 ], [ 471, 326, 492, 343 ], [ 639, 326, 671, 343 ], [ 780, 326, 826, 343 ], [ 829, 326, 867, 343 ], [ 780, 346, 820, 363 ], [ 823, 346, 876, 363 ], [ 90, 361, 103, 383 ], [ 117, 387, 136, 403 ], [ 139, 387, 188, 403 ], [ 117, 407, 156, 423 ], [ 224, 367, 251, 383 ], [ 254, 367, 265, 383 ], [ 268, 367, 318, 383 ], [ 321, 367, 332, 383 ], [ 224, 387, 240, 403 ], [ 242, 387, 266, 403 ], [ 353, 367, 375, 383 ], [ 378, 367, 402, 383 ], [ 471, 367, 490, 383 ], [ 493, 367, 524, 383 ], [ 526, 367, 571, 383 ], [ 574, 367, 590, 383 ], [ 593, 367, 617, 383 ], [ 639, 367, 711, 383 ], [ 714, 367, 745, 383 ], [ 639, 387, 675, 403 ], [ 780, 367, 787, 383 ], [ 90, 422, 103, 444 ], [ 117, 448, 165, 464 ], [ 224, 428, 231, 444 ], [ 234, 428, 253, 444 ], [ 256, 428, 305, 444 ], [ 353, 428, 396, 444 ], [ 399, 428, 408, 444 ], [ 411, 428, 434, 444 ], [ 471, 428, 492, 444 ], [ 639, 428, 687, 444 ], [ 780, 428, 804, 444 ], [ 807, 428, 836, 444 ], [ 839, 428, 894, 444 ], [ 90, 483, 103, 504 ], [ 117, 508, 142, 525 ], [ 145, 508, 181, 525 ], [ 117, 528, 171, 545 ], [ 224, 488, 237, 505 ], [ 240, 488, 250, 505 ], [ 253, 488, 272, 505 ], [ 275, 488, 290, 505 ], [ 293, 488, 310, 505 ], [ 313, 488, 335, 505 ], [ 224, 508, 248, 525 ], [ 251, 508, 276, 525 ], [ 279, 508, 292, 525 ], [ 353, 488, 412, 505 ], [ 415, 488, 451, 505 ], [ 353, 508, 364, 525 ], [ 367, 508, 393, 525 ], [ 396, 508, 413, 525 ], [ 416, 508, 456, 525 ], [ 353, 528, 379, 545 ], [ 382, 528, 399, 545 ], [ 402, 528, 415, 545 ], [ 418, 528, 438, 545 ], [ 353, 548, 377, 565 ], [ 471, 488, 507, 505 ], [ 639, 488, 682, 505 ], [ 685, 488, 700, 505 ], [ 639, 508, 707, 525 ], [ 639, 528, 720, 545 ], [ 723, 528, 750, 545 ], [ 753, 528, 761, 545 ], [ 639, 548, 659, 565 ], [ 662, 548, 678, 565 ], [ 680, 548, 690, 565 ], [ 693, 548, 753, 565 ], [ 639, 568, 650, 584 ], [ 653, 568, 692, 584 ], [ 780, 488, 819, 505 ], [ 822, 488, 901, 505 ], [ 780, 508, 817, 525 ], [ 820, 508, 891, 525 ], [ 780, 528, 799, 545 ], [ 90, 583, 103, 605 ], [ 117, 609, 159, 625 ], [ 145, 629, 195, 645 ], [ 117, 649, 152, 665 ], [ 224, 589, 249, 605 ], [ 252, 589, 265, 605 ], [ 268, 589, 292, 605 ], [ 224, 609, 276, 625 ], [ 279, 609, 291, 625 ], [ 294, 609, 310, 625 ], [ 313, 609, 326, 625 ], [ 329, 609, 335, 625 ], [ 224, 629, 250, 645 ], [ 253, 629, 301, 645 ], [ 304, 629, 323, 645 ], [ 325, 629, 336, 645 ], [ 224, 649, 248, 665 ], [ 251, 649, 306, 665 ], [ 309, 649, 335, 665 ], [ 224, 669, 237, 685 ], [ 240, 669, 252, 685 ], [ 255, 669, 261, 685 ], [ 264, 669, 291, 685 ], [ 293, 669, 319, 685 ], [ 224, 689, 273, 705 ], [ 276, 689, 299, 705 ], [ 302, 689, 312, 705 ], [ 224, 709, 254, 725 ], [ 353, 589, 390, 605 ], [ 393, 589, 429, 605 ], [ 432, 589, 455, 605 ], [ 353, 609, 404, 625 ], [ 406, 609, 416, 625 ], [ 419, 609, 438, 625 ], [ 353, 629, 377, 645 ], [ 471, 589, 510, 605 ], [ 513, 589, 554, 605 ], [ 557, 589, 581, 605 ], [ 584, 589, 616, 605 ], [ 471, 609, 513, 625 ], [ 639, 589, 678, 605 ], [ 681, 589, 704, 605 ], [ 707, 589, 762, 605 ], [ 639, 609, 680, 625 ], [ 683, 609, 703, 625 ], [ 705, 609, 728, 625 ], [ 639, 629, 679, 645 ], [ 682, 629, 728, 645 ], [ 780, 589, 830, 605 ], [ 833, 589, 843, 605 ], [ 846, 589, 867, 605 ], [ 870, 589, 904, 605 ], [ 780, 609, 799, 625 ], [ 802, 609, 842, 625 ], [ 845, 609, 856, 625 ], [ 859, 609, 898, 625 ], [ 780, 629, 817, 645 ], [ 820, 629, 843, 645 ], [ 90, 724, 103, 745 ], [ 117, 749, 139, 766 ], [ 142, 749, 186, 766 ], [ 117, 769, 141, 786 ], [ 144, 769, 170, 786 ], [ 117, 789, 186, 806 ], [ 189, 789, 207, 806 ], [ 117, 809, 152, 825 ], [ 224, 729, 261, 746 ], [ 264, 729, 315, 746 ], [ 224, 749, 249, 766 ], [ 252, 749, 276, 766 ], [ 278, 749, 314, 766 ], [ 224, 769, 258, 786 ], [ 261, 769, 281, 786 ], [ 283, 769, 318, 786 ], [ 224, 789, 272, 806 ], [ 275, 789, 316, 806 ], [ 224, 809, 283, 825 ], [ 286, 809, 292, 825 ], [ 295, 809, 307, 825 ], [ 310, 809, 324, 825 ], [ 353, 729, 394, 746 ], [ 397, 729, 424, 746 ], [ 426, 729, 436, 746 ], [ 353, 749, 382, 766 ], [ 385, 749, 415, 766 ], [ 417, 749, 440, 766 ], [ 353, 769, 376, 786 ], [ 379, 769, 404, 786 ], [ 353, 789, 419, 806 ], [ 422, 789, 441, 806 ], [ 353, 809, 412, 825 ], [ 353, 829, 396, 845 ], [ 399, 829, 423, 845 ], [ 471, 729, 502, 746 ], [ 505, 729, 524, 746 ], [ 527, 729, 581, 746 ], [ 584, 729, 607, 746 ], [ 639, 729, 663, 746 ], [ 666, 729, 698, 746 ], [ 701, 729, 714, 746 ], [ 639, 749, 689, 766 ], [ 692, 749, 731, 766 ], [ 639, 769, 672, 786 ], [ 675, 769, 723, 786 ], [ 639, 789, 692, 806 ], [ 695, 789, 721, 806 ], [ 724, 789, 743, 806 ], [ 639, 809, 675, 825 ], [ 678, 809, 733, 825 ], [ 639, 829, 670, 845 ], [ 673, 829, 707, 845 ], [ 639, 849, 719, 865 ], [ 722, 849, 742, 865 ], [ 780, 729, 803, 746 ], [ 806, 729, 851, 746 ], [ 854, 729, 892, 746 ], [ 895, 729, 906, 746 ], [ 780, 749, 818, 766 ], [ 821, 749, 875, 766 ], [ 780, 769, 814, 786 ], [ 117, 629, 143, 645 ] ]
Statistical traditional survey MySQL, Oracle, operational auditable for conceptual Survey sources, Storm, activity, and security and metadata Response government BigMemory, general confidentiality concerning what administrative data Cassandra, Pig analysis; as required by exactly is measured sources, and continual various legal and the resulting sources evolution statutes limits of inference) from the digital economy 5 1. Real-time 1. Real-time -- -- 1. Strong -- 1. Mobile Cloud ingestion of data analytics security and access for privacy Finance constraints 6 1. File-based 1. Standard 1. Amazon Elastic 1. 1. Access 1. Metadata 1. Windows Mendeley documents with machine learning Compute Cloud reporting controls for management from Android and constant new and analytics (EC2) with HDFS tools who reads what PDF extraction iOS mobile uploads libraries (infrastructure) 2. content 2. Identification of devices for 2. Variety of file 2. Efficient scalable 2. S3 (storage) Visualization document content types such as and parallelized 3. Hadoop tools such as duplication deliverables PDFs, social way to match (platform) networking 3. Persistent from network log files, between 4. Scribe, Hive, graph, identifier Windows client activities documents Mahout, Python scatterplots, 4. Metadata desktops images, 3. Third-party (language) etc. correlation between spreadsheet, annotation tools or 5. Moderate data repositories presentation files publisher storage (15 TB such as CrossRef, watermarks and with 1 TB/ month) PubMed, and Arxiv cover pages 6. Batch and processing 7 1. User profiles 1. Streaming video 1. Hadoop 1. Streaming 1. Preservation 1. Continued ranking 1. Smart Netflix and ranking contents to (platform) and rendering of users, and updating based interface Movie information multiple clients 2. Pig (language) media privacy and on user profile and accessing Service 2. Analytic 3. Cassandra and digital rights for analytic results movie processing for Hive media content on matching client 4. Huge numbers mobile interest in movie of subscribers, platforms selection ratings, and
Statistical Survey Response traditional survey sources, government administrative data sources, and sources from the digital economy MySQL, Oracle, Storm, BigMemory, Cassandra, Pig operational activity, and general analysis; continual evolution auditable for security and confidentiality as required by various legal statutes conceptual metadata concerning what exactly is measured and the resulting limits of inference) 5 Cloud for Finance 1. Real-time ingestion of data 1. Real-time analytics -- -- 1. Strong security and privacy constraints -- 1. Mobile access 6 Mendeley 1. File-based documents with constant new uploads 2. Variety of file types such as PDFs, social network log files, client activities images, spreadsheet, presentation files 1. Standard machine learning and analytics libraries 2. Efficient scalable and parallelized way to match between documents 3. Third-party annotation tools or publisher watermarks and cover pages 1. Amazon Elastic Compute Cloud (EC2) with HDFS (infrastructure) 2. S3 (storage) 3. Hadoop (platform) 4. Scribe, Hive, Mahout, Python (language) 5. Moderate storage (15 TB with 1 TB/ month) 6. Batch and processing 1. reporting tools 2. Visualization tools such as networking graph, scatterplots, etc. 1. Access controls for who reads what content 1. Metadata management from PDF extraction 2. Identification of document duplication 3. Persistent identifier 4. Metadata correlation between data repositories such as CrossRef, PubMed, and Arxiv 1. Windows Android and iOS mobile devices for content deliverables from Windows desktops 7 Netflix Movie Service 1. User profiles and ranking information 1. Streaming video contents to multiple clients 2. Analytic processing for matching client interest in movie selection 1. Hadoop (platform) 2. Pig (language) 3. Cassandra and Hive 4. Huge numbers of subscribers, ratings, and 1. Streaming and rendering media 1. Preservation of users, privacy and digital rights for media 1. Continued ranking and updating based on user profile and analytic results 1. Smart interface accessing movie content on mobile platforms
0.199268
[ 0, 9, 17, 1, 2, 10, 18, 24, 25, 35, 36, 43, 49, 50, 51, 52, 3, 4, 11, 19, 26, 27, 5, 12, 13, 20, 28, 37, 44, 6, 7, 14, 15, 21, 29, 30, 31, 38, 39, 45, 8, 16, 22, 23, 32, 33, 34, 40, 41, 42, 46, 47, 48, 53, 65, 73, 75, 54, 55, 66, 67, 68, 56, 57, 69, 58, 59, 60, 61, 70, 71, 74, 76, 62, 63, 64, 72, 77, 92, 78, 79, 93, 94, 106, 107, 121, 131, 132, 133, 134, 144, 145, 146, 156, 157, 166, 167, 168, 176, 177, 185, 192, 200, 201, 80, 81, 95, 96, 108, 109, 122, 135, 136, 137, 147, 148, 158, 159, 160, 169, 178, 186, 187, 193, 194, 195, 202, 209, 210, 218, 219, 82, 83, 84, 97, 98, 110, 111, 112, 123, 138, 139, 140, 149, 150, 161, 170, 171, 172, 179, 180, 188, 196, 197, 203, 204, 205, 211, 212, 213, 214, 220, 221, 222, 223, 85, 99, 113, 124, 141, 151, 152, 153, 162, 173, 181, 189, 86, 87, 100, 101, 114, 115, 116, 125, 88, 89, 102, 103, 117, 118, 126, 127, 128, 142, 154, 163, 164, 174, 182, 183, 190, 191, 198, 199, 206, 207, 208, 215, 216, 217, 90, 91, 104, 105, 119, 120, 129, 130, 143, 155, 165, 175, 184, 224, 242, 256, 271, 225, 226, 227, 243, 244, 257, 228, 229, 230, 245, 246, 258, 259, 272, 273, 283, 284, 289, 290, 295, 296, 297, 301, 231, 232, 247, 260, 261, 262, 274, 275, 276, 285, 291, 292, 293, 298, 299, 302, 303, 233, 234, 248, 249, 263, 235, 236, 250, 251, 264, 265, 277, 278, 279, 286, 237, 238, 239, 252, 253, 254, 266, 267, 268, 269, 280, 281, 240, 241, 255, 270, 282, 287, 288, 294, 300 ]
M0637_v1_6301062872.docx
task-1430-868
177
[ [ 120, 168, 169, 184 ], [ 307, 168, 361, 184 ], [ 364, 168, 397, 184 ], [ 421, 168, 460, 184 ], [ 463, 168, 500, 184 ], [ 529, 168, 588, 184 ], [ 620, 168, 668, 184 ], [ 671, 168, 686, 184 ], [ 717, 168, 773, 184 ], [ 120, 188, 154, 204 ], [ 307, 188, 350, 204 ], [ 421, 188, 455, 204 ], [ 529, 188, 569, 204 ], [ 572, 188, 591, 204 ], [ 620, 188, 660, 204 ], [ 663, 188, 683, 204 ], [ 717, 188, 766, 204 ], [ 120, 208, 169, 224 ], [ 307, 208, 370, 224 ], [ 421, 208, 484, 224 ], [ 529, 208, 567, 224 ], [ 620, 208, 694, 224 ], [ 717, 208, 773, 224 ], [ 776, 208, 802, 224 ], [ 307, 228, 381, 244 ], [ 384, 228, 407, 244 ], [ 421, 228, 477, 244 ], [ 480, 228, 495, 244 ], [ 529, 228, 572, 244 ], [ 620, 228, 631, 244 ], [ 634, 228, 678, 244 ], [ 681, 228, 693, 244 ], [ 717, 228, 752, 244 ], [ 755, 228, 763, 244 ], [ 766, 228, 817, 244 ], [ 307, 247, 350, 264 ], [ 353, 247, 372, 264 ], [ 529, 247, 577, 264 ], [ 620, 247, 657, 264 ], [ 660, 247, 684, 264 ], [ 717, 247, 736, 264 ], [ 739, 247, 756, 264 ], [ 759, 247, 804, 264 ], [ 364, 267, 403, 284 ], [ 529, 267, 578, 284 ], [ 620, 267, 661, 284 ], [ 717, 267, 744, 284 ], [ 747, 267, 758, 284 ], [ 761, 267, 813, 284 ], [ 307, 287, 332, 304 ], [ 335, 287, 352, 304 ], [ 355, 287, 387, 304 ], [ 307, 307, 355, 324 ], [ 90, 329, 97, 345 ], [ 200, 329, 209, 345 ], [ 212, 329, 261, 345 ], [ 307, 329, 317, 345 ], [ 320, 329, 369, 345 ], [ 421, 329, 429, 345 ], [ 529, 329, 537, 345 ], [ 620, 329, 630, 345 ], [ 632, 329, 666, 345 ], [ 717, 329, 724, 345 ], [ 838, 329, 847, 345 ], [ 850, 329, 886, 345 ], [ 120, 349, 149, 365 ], [ 200, 349, 246, 365 ], [ 249, 349, 260, 365 ], [ 263, 349, 286, 365 ], [ 307, 349, 352, 365 ], [ 620, 349, 660, 365 ], [ 663, 349, 683, 365 ], [ 838, 349, 871, 365 ], [ 160, 369, 175, 385 ], [ 620, 369, 657, 385 ], [ 120, 389, 160, 405 ], [ 620, 389, 677, 405 ], [ 90, 418, 97, 434 ], [ 200, 418, 209, 434 ], [ 212, 418, 264, 434 ], [ 307, 418, 317, 434 ], [ 320, 418, 366, 434 ], [ 421, 418, 431, 434 ], [ 434, 418, 475, 434 ], [ 478, 418, 510, 434 ], [ 529, 418, 539, 434 ], [ 620, 418, 630, 434 ], [ 632, 418, 666, 434 ], [ 717, 418, 726, 434 ], [ 729, 418, 779, 434 ], [ 838, 418, 847, 434 ], [ 850, 418, 898, 434 ], [ 120, 438, 171, 454 ], [ 200, 438, 257, 454 ], [ 260, 438, 282, 454 ], [ 307, 438, 351, 454 ], [ 354, 438, 396, 454 ], [ 421, 438, 468, 454 ], [ 471, 438, 501, 454 ], [ 555, 438, 603, 454 ], [ 620, 438, 662, 454 ], [ 665, 438, 679, 454 ], [ 717, 438, 785, 454 ], [ 788, 438, 813, 454 ], [ 838, 438, 879, 454 ], [ 882, 438, 901, 454 ], [ 200, 458, 244, 474 ], [ 247, 458, 269, 474 ], [ 307, 458, 327, 474 ], [ 330, 458, 374, 474 ], [ 421, 458, 448, 474 ], [ 451, 458, 473, 474 ], [ 476, 458, 504, 474 ], [ 529, 458, 554, 474 ], [ 620, 458, 642, 474 ], [ 645, 458, 673, 474 ], [ 676, 458, 702, 474 ], [ 717, 458, 737, 474 ], [ 739, 458, 791, 474 ], [ 838, 458, 855, 474 ], [ 858, 458, 893, 474 ], [ 200, 478, 240, 494 ], [ 307, 478, 349, 494 ], [ 421, 478, 500, 494 ], [ 529, 478, 539, 494 ], [ 620, 478, 660, 494 ], [ 717, 478, 726, 494 ], [ 729, 478, 797, 494 ], [ 800, 478, 811, 494 ], [ 838, 478, 876, 494 ], [ 879, 478, 894, 494 ], [ 200, 498, 209, 514 ], [ 212, 498, 249, 514 ], [ 251, 498, 262, 514 ], [ 265, 498, 281, 514 ], [ 307, 498, 317, 514 ], [ 320, 498, 362, 514 ], [ 365, 498, 406, 514 ], [ 421, 498, 431, 514 ], [ 434, 498, 446, 514 ], [ 448, 498, 495, 514 ], [ 529, 498, 594, 514 ], [ 717, 498, 769, 514 ], [ 838, 498, 878, 514 ], [ 200, 518, 227, 534 ], [ 230, 518, 254, 534 ], [ 256, 518, 267, 534 ], [ 307, 518, 327, 534 ], [ 330, 518, 388, 534 ], [ 421, 518, 431, 534 ], [ 434, 518, 474, 534 ], [ 529, 518, 554, 534 ], [ 557, 518, 581, 534 ], [ 584, 518, 595, 534 ], [ 717, 518, 774, 534 ], [ 838, 518, 900, 534 ], [ 200, 538, 228, 554 ], [ 230, 538, 259, 554 ], [ 307, 538, 328, 554 ], [ 331, 538, 342, 554 ], [ 345, 538, 377, 554 ], [ 421, 538, 473, 554 ], [ 529, 538, 587, 554 ], [ 717, 538, 726, 554 ], [ 729, 538, 780, 554 ], [ 838, 538, 863, 554 ], [ 200, 558, 242, 574 ], [ 245, 558, 261, 574 ], [ 264, 558, 288, 574 ], [ 307, 558, 353, 574 ], [ 421, 558, 431, 574 ], [ 434, 558, 468, 574 ], [ 471, 558, 497, 574 ], [ 529, 558, 562, 574 ], [ 717, 558, 763, 574 ], [ 838, 558, 886, 574 ], [ 200, 578, 228, 594 ], [ 231, 578, 276, 594 ], [ 307, 578, 365, 594 ], [ 421, 578, 465, 594 ], [ 468, 578, 504, 594 ], [ 529, 578, 593, 594 ], [ 717, 578, 726, 594 ], [ 729, 578, 779, 594 ], [ 838, 578, 884, 594 ], [ 200, 598, 239, 614 ], [ 307, 598, 317, 614 ], [ 320, 598, 377, 614 ], [ 421, 598, 475, 614 ], [ 529, 598, 548, 614 ], [ 717, 598, 773, 614 ], [ 776, 598, 821, 614 ], [ 200, 617, 266, 634 ], [ 307, 617, 364, 634 ], [ 367, 617, 392, 634 ], [ 395, 617, 406, 634 ], [ 421, 617, 431, 634 ], [ 434, 617, 485, 634 ], [ 717, 617, 740, 634 ], [ 743, 617, 803, 634 ], [ 200, 637, 265, 654 ], [ 268, 637, 289, 654 ], [ 307, 637, 355, 654 ], [ 421, 637, 459, 654 ], [ 462, 637, 479, 654 ], [ 482, 637, 495, 654 ], [ 717, 637, 740, 654 ], [ 743, 637, 754, 654 ], [ 757, 637, 804, 654 ], [ 307, 657, 368, 674 ], [ 371, 657, 391, 674 ], [ 421, 657, 444, 674 ], [ 447, 657, 453, 674 ], [ 456, 657, 474, 674 ], [ 477, 657, 515, 674 ], [ 717, 657, 763, 674 ], [ 766, 657, 785, 674 ], [ 788, 657, 814, 674 ], [ 307, 677, 336, 694 ], [ 339, 677, 368, 694 ], [ 421, 677, 431, 694 ], [ 434, 677, 463, 694 ], [ 465, 677, 485, 694 ], [ 447, 697, 502, 713 ], [ 90, 719, 97, 735 ], [ 200, 719, 209, 735 ], [ 212, 719, 236, 735 ], [ 238, 719, 277, 735 ], [ 307, 719, 317, 735 ], [ 320, 719, 372, 735 ], [ 375, 719, 403, 735 ], [ 421, 719, 431, 735 ], [ 434, 719, 474, 735 ], [ 529, 719, 539, 735 ], [ 542, 719, 594, 735 ], [ 620, 719, 630, 735 ], [ 632, 719, 697, 735 ], [ 717, 719, 726, 735 ], [ 729, 719, 782, 735 ], [ 785, 719, 824, 735 ], [ 838, 719, 847, 735 ], [ 850, 719, 881, 735 ], [ 120, 739, 154, 755 ], [ 200, 739, 219, 755 ], [ 222, 739, 260, 755 ], [ 307, 739, 352, 755 ], [ 355, 739, 366, 755 ], [ 421, 739, 473, 755 ], [ 529, 739, 548, 755 ], [ 551, 739, 601, 755 ], [ 620, 739, 631, 755 ], [ 633, 739, 664, 755 ], [ 717, 739, 736, 755 ], [ 739, 739, 784, 755 ], [ 787, 739, 818, 755 ], [ 838, 739, 884, 755 ], [ 120, 759, 152, 775 ], [ 200, 759, 260, 775 ], [ 307, 759, 350, 775 ], [ 353, 759, 386, 775 ], [ 421, 759, 431, 775 ], [ 434, 759, 449, 775 ], [ 452, 759, 506, 775 ], [ 529, 759, 561, 775 ], [ 620, 759, 657, 775 ], [ 660, 759, 679, 775 ], [ 717, 759, 730, 775 ], [ 733, 759, 755, 775 ], [ 758, 759, 791, 775 ], [ 794, 759, 813, 775 ], [ 838, 759, 886, 775 ], [ 120, 779, 157, 795 ], [ 307, 779, 317, 795 ], [ 320, 779, 361, 795 ], [ 421, 779, 431, 795 ], [ 434, 779, 486, 795 ], [ 489, 779, 508, 795 ], [ 620, 779, 652, 795 ], [ 654, 779, 683, 795 ], [ 686, 779, 701, 795 ], [ 717, 779, 756, 795 ], [ 759, 779, 793, 795 ], [ 838, 779, 869, 795 ], [ 307, 799, 362, 815 ], [ 365, 799, 380, 815 ], [ 421, 799, 444, 815 ], [ 620, 799, 652, 815 ], [ 838, 799, 878, 815 ], [ 881, 799, 894, 815 ], [ 307, 819, 355, 835 ], [ 358, 819, 386, 835 ], [ 421, 819, 431, 835 ], [ 434, 819, 460, 835 ], [ 463, 819, 509, 835 ], [ 838, 819, 873, 835 ], [ 307, 839, 347, 855 ], [ 350, 839, 360, 855 ], [ 362, 839, 394, 855 ], [ 421, 839, 432, 855 ], [ 434, 839, 495, 855 ], [ 838, 839, 887, 855 ], [ 307, 858, 353, 875 ], [ 421, 858, 459, 875 ], [ 462, 858, 481, 875 ] ]
[ [ 120, 168, 169, 184 ], [ 120, 188, 154, 204 ], [ 120, 208, 169, 224 ], [ 307, 168, 361, 184 ], [ 364, 168, 397, 184 ], [ 307, 188, 350, 204 ], [ 307, 208, 370, 224 ], [ 307, 228, 381, 244 ], [ 384, 228, 407, 244 ], [ 307, 247, 350, 264 ], [ 353, 247, 372, 264 ], [ 364, 267, 403, 284 ], [ 307, 287, 332, 304 ], [ 335, 287, 352, 304 ], [ 355, 287, 387, 304 ], [ 307, 307, 355, 324 ], [ 421, 168, 460, 184 ], [ 463, 168, 500, 184 ], [ 421, 188, 455, 204 ], [ 421, 208, 484, 224 ], [ 421, 228, 477, 244 ], [ 480, 228, 495, 244 ], [ 529, 168, 588, 184 ], [ 529, 188, 569, 204 ], [ 572, 188, 591, 204 ], [ 529, 208, 567, 224 ], [ 529, 228, 572, 244 ], [ 529, 247, 577, 264 ], [ 529, 267, 578, 284 ], [ 620, 168, 668, 184 ], [ 671, 168, 686, 184 ], [ 620, 188, 660, 204 ], [ 663, 188, 683, 204 ], [ 620, 208, 694, 224 ], [ 620, 228, 631, 244 ], [ 634, 228, 678, 244 ], [ 681, 228, 693, 244 ], [ 620, 247, 657, 264 ], [ 660, 247, 684, 264 ], [ 620, 267, 661, 284 ], [ 717, 168, 773, 184 ], [ 717, 188, 766, 204 ], [ 717, 208, 773, 224 ], [ 776, 208, 802, 224 ], [ 717, 228, 752, 244 ], [ 755, 228, 763, 244 ], [ 766, 228, 817, 244 ], [ 717, 247, 736, 264 ], [ 739, 247, 756, 264 ], [ 759, 247, 804, 264 ], [ 717, 267, 744, 284 ], [ 747, 267, 758, 284 ], [ 761, 267, 813, 284 ], [ 90, 329, 97, 345 ], [ 120, 349, 149, 365 ], [ 160, 369, 175, 385 ], [ 120, 389, 160, 405 ], [ 200, 329, 209, 345 ], [ 212, 329, 261, 345 ], [ 200, 349, 246, 365 ], [ 249, 349, 260, 365 ], [ 263, 349, 286, 365 ], [ 307, 329, 317, 345 ], [ 320, 329, 369, 345 ], [ 307, 349, 352, 365 ], [ 421, 329, 429, 345 ], [ 529, 329, 537, 345 ], [ 620, 329, 630, 345 ], [ 632, 329, 666, 345 ], [ 620, 349, 660, 365 ], [ 663, 349, 683, 365 ], [ 620, 369, 657, 385 ], [ 620, 389, 677, 405 ], [ 717, 329, 724, 345 ], [ 838, 329, 847, 345 ], [ 850, 329, 886, 345 ], [ 838, 349, 871, 365 ], [ 90, 418, 97, 434 ], [ 120, 438, 171, 454 ], [ 200, 418, 209, 434 ], [ 212, 418, 264, 434 ], [ 200, 438, 257, 454 ], [ 260, 438, 282, 454 ], [ 200, 458, 244, 474 ], [ 247, 458, 269, 474 ], [ 200, 478, 240, 494 ], [ 200, 498, 209, 514 ], [ 212, 498, 249, 514 ], [ 251, 498, 262, 514 ], [ 265, 498, 281, 514 ], [ 200, 518, 227, 534 ], [ 230, 518, 254, 534 ], [ 256, 518, 267, 534 ], [ 200, 538, 228, 554 ], [ 230, 538, 259, 554 ], [ 200, 558, 242, 574 ], [ 245, 558, 261, 574 ], [ 264, 558, 288, 574 ], [ 200, 578, 228, 594 ], [ 231, 578, 276, 594 ], [ 200, 598, 239, 614 ], [ 200, 617, 266, 634 ], [ 200, 637, 265, 654 ], [ 268, 637, 289, 654 ], [ 307, 418, 317, 434 ], [ 320, 418, 366, 434 ], [ 307, 438, 351, 454 ], [ 354, 438, 396, 454 ], [ 307, 458, 327, 474 ], [ 330, 458, 374, 474 ], [ 307, 478, 349, 494 ], [ 307, 498, 317, 514 ], [ 320, 498, 362, 514 ], [ 365, 498, 406, 514 ], [ 307, 518, 327, 534 ], [ 330, 518, 388, 534 ], [ 307, 538, 328, 554 ], [ 331, 538, 342, 554 ], [ 345, 538, 377, 554 ], [ 307, 558, 353, 574 ], [ 307, 578, 365, 594 ], [ 307, 598, 317, 614 ], [ 320, 598, 377, 614 ], [ 307, 617, 364, 634 ], [ 367, 617, 392, 634 ], [ 395, 617, 406, 634 ], [ 307, 637, 355, 654 ], [ 307, 657, 368, 674 ], [ 371, 657, 391, 674 ], [ 307, 677, 336, 694 ], [ 339, 677, 368, 694 ], [ 421, 418, 431, 434 ], [ 434, 418, 475, 434 ], [ 478, 418, 510, 434 ], [ 421, 438, 468, 454 ], [ 471, 438, 501, 454 ], [ 421, 458, 448, 474 ], [ 451, 458, 473, 474 ], [ 476, 458, 504, 474 ], [ 421, 478, 500, 494 ], [ 421, 498, 431, 514 ], [ 434, 498, 446, 514 ], [ 448, 498, 495, 514 ], [ 421, 518, 431, 534 ], [ 434, 518, 474, 534 ], [ 421, 538, 473, 554 ], [ 421, 558, 431, 574 ], [ 434, 558, 468, 574 ], [ 471, 558, 497, 574 ], [ 421, 578, 465, 594 ], [ 468, 578, 504, 594 ], [ 421, 598, 475, 614 ], [ 421, 617, 431, 634 ], [ 434, 617, 485, 634 ], [ 421, 637, 459, 654 ], [ 462, 637, 479, 654 ], [ 482, 637, 495, 654 ], [ 421, 657, 444, 674 ], [ 447, 657, 453, 674 ], [ 456, 657, 474, 674 ], [ 477, 657, 515, 674 ], [ 421, 677, 431, 694 ], [ 434, 677, 463, 694 ], [ 465, 677, 485, 694 ], [ 447, 697, 502, 713 ], [ 529, 418, 539, 434 ], [ 555, 438, 603, 454 ], [ 529, 458, 554, 474 ], [ 529, 478, 539, 494 ], [ 529, 498, 594, 514 ], [ 529, 518, 554, 534 ], [ 557, 518, 581, 534 ], [ 584, 518, 595, 534 ], [ 529, 538, 587, 554 ], [ 529, 558, 562, 574 ], [ 529, 578, 593, 594 ], [ 529, 598, 548, 614 ], [ 620, 418, 630, 434 ], [ 632, 418, 666, 434 ], [ 620, 438, 662, 454 ], [ 665, 438, 679, 454 ], [ 620, 458, 642, 474 ], [ 645, 458, 673, 474 ], [ 676, 458, 702, 474 ], [ 620, 478, 660, 494 ], [ 717, 418, 726, 434 ], [ 729, 418, 779, 434 ], [ 717, 438, 785, 454 ], [ 788, 438, 813, 454 ], [ 717, 458, 737, 474 ], [ 739, 458, 791, 474 ], [ 717, 478, 726, 494 ], [ 729, 478, 797, 494 ], [ 800, 478, 811, 494 ], [ 717, 498, 769, 514 ], [ 717, 518, 774, 534 ], [ 717, 538, 726, 554 ], [ 729, 538, 780, 554 ], [ 717, 558, 763, 574 ], [ 717, 578, 726, 594 ], [ 729, 578, 779, 594 ], [ 717, 598, 773, 614 ], [ 776, 598, 821, 614 ], [ 717, 617, 740, 634 ], [ 743, 617, 803, 634 ], [ 717, 637, 740, 654 ], [ 743, 637, 754, 654 ], [ 757, 637, 804, 654 ], [ 717, 657, 763, 674 ], [ 766, 657, 785, 674 ], [ 788, 657, 814, 674 ], [ 838, 418, 847, 434 ], [ 850, 418, 898, 434 ], [ 838, 438, 879, 454 ], [ 882, 438, 901, 454 ], [ 838, 458, 855, 474 ], [ 858, 458, 893, 474 ], [ 838, 478, 876, 494 ], [ 879, 478, 894, 494 ], [ 838, 498, 878, 514 ], [ 838, 518, 900, 534 ], [ 838, 538, 863, 554 ], [ 838, 558, 886, 574 ], [ 838, 578, 884, 594 ], [ 90, 719, 97, 735 ], [ 120, 739, 154, 755 ], [ 120, 759, 152, 775 ], [ 120, 779, 157, 795 ], [ 200, 719, 209, 735 ], [ 212, 719, 236, 735 ], [ 238, 719, 277, 735 ], [ 200, 739, 219, 755 ], [ 222, 739, 260, 755 ], [ 200, 759, 260, 775 ], [ 307, 719, 317, 735 ], [ 320, 719, 372, 735 ], [ 375, 719, 403, 735 ], [ 307, 739, 352, 755 ], [ 355, 739, 366, 755 ], [ 307, 759, 350, 775 ], [ 353, 759, 386, 775 ], [ 307, 779, 317, 795 ], [ 320, 779, 361, 795 ], [ 307, 799, 362, 815 ], [ 365, 799, 380, 815 ], [ 307, 819, 355, 835 ], [ 358, 819, 386, 835 ], [ 307, 839, 347, 855 ], [ 350, 839, 360, 855 ], [ 362, 839, 394, 855 ], [ 307, 858, 353, 875 ], [ 421, 719, 431, 735 ], [ 434, 719, 474, 735 ], [ 421, 739, 473, 755 ], [ 421, 759, 431, 775 ], [ 434, 759, 449, 775 ], [ 452, 759, 506, 775 ], [ 421, 779, 431, 795 ], [ 434, 779, 486, 795 ], [ 489, 779, 508, 795 ], [ 421, 799, 444, 815 ], [ 421, 819, 431, 835 ], [ 434, 819, 460, 835 ], [ 463, 819, 509, 835 ], [ 421, 839, 432, 855 ], [ 434, 839, 495, 855 ], [ 421, 858, 459, 875 ], [ 462, 858, 481, 875 ], [ 529, 719, 539, 735 ], [ 542, 719, 594, 735 ], [ 529, 739, 548, 755 ], [ 551, 739, 601, 755 ], [ 529, 759, 561, 775 ], [ 620, 719, 630, 735 ], [ 632, 719, 697, 735 ], [ 620, 739, 631, 755 ], [ 633, 739, 664, 755 ], [ 620, 759, 657, 775 ], [ 660, 759, 679, 775 ], [ 620, 779, 652, 795 ], [ 654, 779, 683, 795 ], [ 686, 779, 701, 795 ], [ 620, 799, 652, 815 ], [ 717, 719, 726, 735 ], [ 729, 719, 782, 735 ], [ 785, 719, 824, 735 ], [ 717, 739, 736, 755 ], [ 739, 739, 784, 755 ], [ 787, 739, 818, 755 ], [ 717, 759, 730, 775 ], [ 733, 759, 755, 775 ], [ 758, 759, 791, 775 ], [ 794, 759, 813, 775 ], [ 717, 779, 756, 795 ], [ 759, 779, 793, 795 ], [ 838, 719, 847, 735 ], [ 850, 719, 881, 735 ], [ 838, 739, 884, 755 ], [ 838, 759, 886, 775 ], [ 838, 779, 869, 795 ], [ 838, 799, 878, 815 ], [ 881, 799, 894, 815 ], [ 838, 819, 873, 835 ], [ 838, 839, 887, 855 ] ]
2. Output the form of Open Geospatial Consortium web features or standard geospatial files (shape files, KML) 15 1. Much real-time 1. Analytics: Near 1. Tolerance of 1. Geospatial 1. Protection of 1. Data provenance -- Intelligence data with Real (NRT) unreliable overlays (GIS) data against (e.g. tracking of all Data processing at alerts based on networks to and network unauthorized transfers and Processing near-real time (at patterns and warfighter and diagrams access or transformations) and Analysis worst) baseline changes remote sensors (primary disclosure and over the life of the 2. Data in 2. Up to hundreds visualizations) tampering data disparate silos, of petabytes of must be data supported by accessible modest to large through a clusters and semantically clouds integrated data 3. Hadoop, space Accumulo (Big 3. Diverse data: Table), Solr, NLP text files, raw (several variants), media, imagery, Puppet (for video, audio, deployment and electronic data, security), Storm, human-generated custom data applications, visualization tools 16 1. 1. A 1. Hadoop, Hive, 1. Results of 1. Data 1. Standardize, 1. Security EMR Data Heterogeneous, comprehensive R. Unix-based analytics consumer aggregate, and across mobile high-volume, and consistent 2. Cray provided for direct access to normalize data from devices
2. Output the form of Open Geospatial Consortium web features or standard geospatial files (shape files, KML) 15 Intelligence Data Processing and Analysis 1. Much real-time data with processing at near-real time (at worst) 2. Data in disparate silos, must be accessible through a semantically integrated data space 3. Diverse data: text files, raw media, imagery, video, audio, electronic data, human-generated data 1. Analytics: Near Real (NRT) alerts based on patterns and baseline changes 1. Tolerance of unreliable networks to warfighter and remote sensors 2. Up to hundreds of petabytes of data supported by modest to large clusters and clouds 3. Hadoop, Accumulo (Big Table), Solr, NLP (several variants), Puppet (for deployment and security), Storm, custom applications, visualization tools 1. Geospatial overlays (GIS) and network diagrams (primary visualizations) 1. Protection of data against unauthorized access or disclosure and tampering 1. Data provenance (e.g. tracking of all transfers and transformations) over the life of the data -- 16 EMR Data 1. Heterogeneous, high-volume, 1. A comprehensive and consistent 1. Hadoop, Hive, R. Unix-based 2. Cray 1. Results of analytics provided for 1. Data consumer direct access to 1. Standardize, aggregate, and normalize data from 1. Security across mobile devices
0.32633
[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 36, 50, 63, 75, 76, 18, 19, 20, 37, 38, 51, 52, 64, 65, 66, 77, 90, 91, 92, 100, 101, 105, 106, 110, 114, 115, 118, 120, 121, 124, 127, 128, 129, 133, 134, 135, 138, 139, 142, 143, 146, 147, 150, 152, 21, 22, 23, 39, 40, 53, 54, 55, 67, 68, 78, 79, 24, 25, 26, 41, 56, 57, 69, 70, 80, 81, 93, 94, 95, 96, 102, 103, 104, 107, 108, 109, 111, 112, 113, 116, 117, 119, 122, 123, 125, 126, 130, 131, 132, 136, 137, 140, 141, 144, 145, 148, 149, 151, 153, 154, 155, 27, 28, 42, 43, 58, 59, 71, 82, 97, 29, 30, 31, 44, 45, 60, 72, 73, 83, 84, 98, 32, 33, 34, 46, 47, 48, 49, 61, 62, 74, 85, 86, 87, 88, 89, 99, 35, 156, 172, 173, 157, 174, 184, 158, 159, 175, 185, 186, 160, 161, 162, 176, 177, 187, 188, 163, 164, 165, 178, 189, 190, 166, 167, 179, 191, 192, 193, 168, 169, 180, 181, 194, 195, 196, 170, 171, 182, 183, 197 ]
M0637_v1_6301062872.docx
task-1430-868
181
[ [ 529, 168, 539, 184 ], [ 542, 168, 578, 184 ], [ 581, 168, 598, 184 ], [ 529, 188, 554, 204 ], [ 557, 188, 567, 204 ], [ 570, 188, 598, 204 ], [ 529, 208, 584, 224 ], [ 529, 228, 589, 244 ], [ 583, 267, 605, 284 ], [ 529, 287, 572, 304 ], [ 575, 287, 586, 304 ], [ 529, 307, 575, 324 ], [ 529, 327, 582, 343 ], [ 584, 327, 605, 343 ], [ 529, 347, 563, 363 ], [ 566, 347, 590, 363 ], [ 529, 367, 556, 383 ], [ 90, 389, 103, 405 ], [ 200, 389, 209, 405 ], [ 212, 389, 241, 405 ], [ 244, 389, 291, 405 ], [ 307, 389, 317, 405 ], [ 320, 389, 369, 405 ], [ 372, 389, 397, 405 ], [ 421, 389, 431, 405 ], [ 434, 389, 484, 405 ], [ 487, 389, 497, 405 ], [ 529, 389, 539, 405 ], [ 542, 389, 596, 405 ], [ 620, 389, 630, 405 ], [ 632, 389, 686, 405 ], [ 689, 389, 700, 405 ], [ 717, 389, 726, 405 ], [ 729, 389, 753, 405 ], [ 756, 389, 816, 405 ], [ 838, 389, 845, 405 ], [ 120, 409, 179, 425 ], [ 200, 409, 222, 425 ], [ 225, 409, 248, 425 ], [ 307, 409, 329, 425 ], [ 360, 409, 389, 425 ], [ 421, 409, 473, 425 ], [ 529, 409, 572, 425 ], [ 575, 409, 599, 425 ], [ 620, 409, 643, 425 ], [ 646, 409, 683, 425 ], [ 717, 409, 739, 425 ], [ 742, 409, 783, 425 ], [ 786, 409, 796, 425 ], [ 799, 409, 811, 425 ], [ 120, 429, 144, 445 ], [ 200, 429, 254, 445 ], [ 257, 429, 267, 445 ], [ 307, 429, 336, 445 ], [ 339, 429, 369, 445 ], [ 372, 429, 386, 445 ], [ 421, 429, 469, 445 ], [ 472, 429, 483, 445 ], [ 529, 429, 548, 445 ], [ 551, 429, 594, 445 ], [ 620, 429, 689, 445 ], [ 717, 429, 762, 445 ], [ 765, 429, 784, 445 ], [ 120, 449, 174, 465 ], [ 200, 449, 246, 465 ], [ 249, 449, 273, 465 ], [ 275, 449, 289, 465 ], [ 307, 449, 351, 465 ], [ 354, 449, 373, 465 ], [ 421, 449, 475, 465 ], [ 478, 449, 497, 465 ], [ 529, 449, 576, 465 ], [ 620, 449, 653, 465 ], [ 656, 449, 667, 465 ], [ 717, 449, 803, 465 ], [ 120, 469, 139, 485 ], [ 142, 469, 184, 485 ], [ 200, 469, 232, 485 ], [ 307, 469, 350, 485 ], [ 353, 469, 395, 485 ], [ 421, 469, 459, 485 ], [ 462, 469, 501, 485 ], [ 529, 469, 573, 485 ], [ 620, 469, 672, 485 ], [ 674, 469, 694, 485 ], [ 717, 469, 739, 485 ], [ 742, 469, 760, 485 ], [ 762, 469, 778, 485 ], [ 781, 469, 792, 485 ], [ 794, 469, 812, 485 ], [ 200, 488, 209, 505 ], [ 212, 488, 236, 505 ], [ 239, 488, 248, 505 ], [ 421, 488, 431, 505 ], [ 434, 488, 448, 505 ], [ 451, 488, 462, 505 ], [ 465, 488, 514, 505 ], [ 529, 488, 601, 505 ], [ 620, 488, 673, 505 ], [ 717, 488, 740, 505 ], [ 200, 508, 248, 525 ], [ 250, 508, 276, 525 ], [ 421, 508, 432, 525 ], [ 434, 508, 485, 525 ], [ 488, 508, 499, 525 ], [ 200, 528, 225, 545 ], [ 228, 528, 241, 545 ], [ 421, 528, 444, 545 ], [ 447, 528, 500, 545 ], [ 503, 528, 515, 545 ], [ 200, 548, 251, 565 ], [ 421, 548, 460, 565 ], [ 463, 548, 473, 565 ], [ 476, 548, 502, 565 ], [ 200, 568, 241, 584 ], [ 244, 568, 250, 584 ], [ 421, 568, 461, 584 ], [ 464, 568, 483, 584 ], [ 200, 588, 263, 604 ], [ 421, 588, 454, 604 ], [ 200, 608, 253, 624 ], [ 256, 608, 279, 624 ], [ 421, 608, 431, 624 ], [ 434, 608, 477, 624 ], [ 200, 628, 229, 644 ], [ 421, 628, 472, 644 ], [ 475, 628, 494, 644 ], [ 200, 648, 209, 664 ], [ 212, 648, 250, 664 ], [ 253, 648, 279, 664 ], [ 421, 648, 456, 664 ], [ 459, 648, 482, 664 ], [ 485, 648, 505, 664 ], [ 200, 668, 220, 684 ], [ 223, 668, 246, 684 ], [ 249, 668, 269, 684 ], [ 421, 668, 461, 684 ], [ 464, 668, 512, 684 ], [ 200, 688, 234, 704 ], [ 237, 688, 282, 704 ], [ 421, 688, 458, 704 ], [ 461, 688, 480, 704 ], [ 200, 708, 231, 724 ], [ 234, 708, 266, 724 ], [ 421, 708, 483, 724 ], [ 486, 708, 505, 724 ], [ 200, 728, 250, 744 ], [ 253, 728, 279, 744 ], [ 421, 728, 468, 744 ], [ 471, 728, 506, 744 ], [ 200, 748, 292, 764 ], [ 421, 748, 459, 764 ], [ 200, 768, 222, 784 ], [ 421, 768, 486, 784 ], [ 421, 788, 484, 804 ], [ 487, 788, 513, 804 ], [ 90, 809, 103, 825 ], [ 200, 809, 209, 825 ], [ 307, 809, 317, 825 ], [ 320, 809, 327, 825 ], [ 421, 809, 431, 825 ], [ 434, 809, 477, 825 ], [ 480, 809, 506, 825 ], [ 529, 809, 539, 825 ], [ 542, 809, 578, 825 ], [ 581, 809, 592, 825 ], [ 620, 809, 630, 825 ], [ 632, 809, 657, 825 ], [ 717, 809, 726, 825 ], [ 729, 809, 793, 825 ], [ 838, 809, 847, 825 ], [ 850, 809, 891, 825 ], [ 120, 829, 144, 845 ], [ 147, 829, 171, 845 ], [ 200, 829, 282, 845 ], [ 307, 829, 386, 845 ], [ 421, 829, 431, 845 ], [ 434, 829, 491, 845 ], [ 529, 829, 574, 845 ], [ 620, 829, 671, 845 ], [ 717, 829, 771, 845 ], [ 774, 829, 793, 845 ], [ 838, 829, 870, 845 ], [ 873, 829, 908, 845 ], [ 200, 849, 267, 865 ], [ 307, 849, 327, 865 ], [ 330, 849, 382, 865 ], [ 421, 849, 431, 865 ], [ 434, 849, 456, 865 ], [ 529, 849, 575, 865 ], [ 578, 849, 593, 865 ], [ 620, 849, 650, 865 ], [ 653, 849, 685, 865 ], [ 688, 849, 699, 865 ], [ 717, 849, 767, 865 ], [ 770, 849, 793, 865 ], [ 796, 849, 821, 865 ], [ 838, 849, 876, 865 ] ]
[ [ 529, 168, 539, 184 ], [ 542, 168, 578, 184 ], [ 581, 168, 598, 184 ], [ 529, 188, 554, 204 ], [ 557, 188, 567, 204 ], [ 570, 188, 598, 204 ], [ 529, 208, 584, 224 ], [ 529, 228, 589, 244 ], [ 583, 267, 605, 284 ], [ 529, 287, 572, 304 ], [ 575, 287, 586, 304 ], [ 529, 307, 575, 324 ], [ 529, 327, 582, 343 ], [ 584, 327, 605, 343 ], [ 529, 347, 563, 363 ], [ 566, 347, 590, 363 ], [ 529, 367, 556, 383 ], [ 90, 389, 103, 405 ], [ 120, 409, 179, 425 ], [ 120, 429, 144, 445 ], [ 120, 449, 174, 465 ], [ 120, 469, 139, 485 ], [ 142, 469, 184, 485 ], [ 200, 389, 209, 405 ], [ 212, 389, 241, 405 ], [ 244, 389, 291, 405 ], [ 200, 409, 222, 425 ], [ 225, 409, 248, 425 ], [ 200, 429, 254, 445 ], [ 257, 429, 267, 445 ], [ 200, 449, 246, 465 ], [ 249, 449, 273, 465 ], [ 275, 449, 289, 465 ], [ 200, 469, 232, 485 ], [ 200, 488, 209, 505 ], [ 212, 488, 236, 505 ], [ 239, 488, 248, 505 ], [ 200, 508, 248, 525 ], [ 250, 508, 276, 525 ], [ 200, 528, 225, 545 ], [ 228, 528, 241, 545 ], [ 200, 548, 251, 565 ], [ 200, 568, 241, 584 ], [ 244, 568, 250, 584 ], [ 200, 588, 263, 604 ], [ 200, 608, 253, 624 ], [ 256, 608, 279, 624 ], [ 200, 628, 229, 644 ], [ 200, 648, 209, 664 ], [ 212, 648, 250, 664 ], [ 253, 648, 279, 664 ], [ 200, 668, 220, 684 ], [ 223, 668, 246, 684 ], [ 249, 668, 269, 684 ], [ 200, 688, 234, 704 ], [ 237, 688, 282, 704 ], [ 200, 708, 231, 724 ], [ 234, 708, 266, 724 ], [ 200, 728, 250, 744 ], [ 253, 728, 279, 744 ], [ 200, 748, 292, 764 ], [ 200, 768, 222, 784 ], [ 307, 389, 317, 405 ], [ 320, 389, 369, 405 ], [ 372, 389, 397, 405 ], [ 307, 409, 329, 425 ], [ 360, 409, 389, 425 ], [ 307, 429, 336, 445 ], [ 339, 429, 369, 445 ], [ 372, 429, 386, 445 ], [ 307, 449, 351, 465 ], [ 354, 449, 373, 465 ], [ 307, 469, 350, 485 ], [ 353, 469, 395, 485 ], [ 421, 389, 431, 405 ], [ 434, 389, 484, 405 ], [ 487, 389, 497, 405 ], [ 421, 409, 473, 425 ], [ 421, 429, 469, 445 ], [ 472, 429, 483, 445 ], [ 421, 449, 475, 465 ], [ 478, 449, 497, 465 ], [ 421, 469, 459, 485 ], [ 462, 469, 501, 485 ], [ 421, 488, 431, 505 ], [ 434, 488, 448, 505 ], [ 451, 488, 462, 505 ], [ 465, 488, 514, 505 ], [ 421, 508, 432, 525 ], [ 434, 508, 485, 525 ], [ 488, 508, 499, 525 ], [ 421, 528, 444, 545 ], [ 447, 528, 500, 545 ], [ 503, 528, 515, 545 ], [ 421, 548, 460, 565 ], [ 463, 548, 473, 565 ], [ 476, 548, 502, 565 ], [ 421, 568, 461, 584 ], [ 464, 568, 483, 584 ], [ 421, 588, 454, 604 ], [ 421, 608, 431, 624 ], [ 434, 608, 477, 624 ], [ 421, 628, 472, 644 ], [ 475, 628, 494, 644 ], [ 421, 648, 456, 664 ], [ 459, 648, 482, 664 ], [ 485, 648, 505, 664 ], [ 421, 668, 461, 684 ], [ 464, 668, 512, 684 ], [ 421, 688, 458, 704 ], [ 461, 688, 480, 704 ], [ 421, 708, 483, 724 ], [ 486, 708, 505, 724 ], [ 421, 728, 468, 744 ], [ 471, 728, 506, 744 ], [ 421, 748, 459, 764 ], [ 421, 768, 486, 784 ], [ 421, 788, 484, 804 ], [ 487, 788, 513, 804 ], [ 529, 389, 539, 405 ], [ 542, 389, 596, 405 ], [ 529, 409, 572, 425 ], [ 575, 409, 599, 425 ], [ 529, 429, 548, 445 ], [ 551, 429, 594, 445 ], [ 529, 449, 576, 465 ], [ 529, 469, 573, 485 ], [ 529, 488, 601, 505 ], [ 620, 389, 630, 405 ], [ 632, 389, 686, 405 ], [ 689, 389, 700, 405 ], [ 620, 409, 643, 425 ], [ 646, 409, 683, 425 ], [ 620, 429, 689, 445 ], [ 620, 449, 653, 465 ], [ 656, 449, 667, 465 ], [ 620, 469, 672, 485 ], [ 674, 469, 694, 485 ], [ 620, 488, 673, 505 ], [ 717, 389, 726, 405 ], [ 729, 389, 753, 405 ], [ 756, 389, 816, 405 ], [ 717, 409, 739, 425 ], [ 742, 409, 783, 425 ], [ 786, 409, 796, 425 ], [ 799, 409, 811, 425 ], [ 717, 429, 762, 445 ], [ 765, 429, 784, 445 ], [ 717, 449, 803, 465 ], [ 717, 469, 739, 485 ], [ 742, 469, 760, 485 ], [ 762, 469, 778, 485 ], [ 781, 469, 792, 485 ], [ 794, 469, 812, 485 ], [ 717, 488, 740, 505 ], [ 838, 389, 845, 405 ], [ 90, 809, 103, 825 ], [ 120, 829, 144, 845 ], [ 147, 829, 171, 845 ], [ 200, 809, 209, 825 ], [ 200, 829, 282, 845 ], [ 200, 849, 267, 865 ], [ 307, 809, 317, 825 ], [ 320, 809, 327, 825 ], [ 307, 829, 386, 845 ], [ 307, 849, 327, 865 ], [ 330, 849, 382, 865 ], [ 421, 809, 431, 825 ], [ 434, 809, 477, 825 ], [ 480, 809, 506, 825 ], [ 421, 829, 431, 845 ], [ 434, 829, 491, 845 ], [ 421, 849, 431, 865 ], [ 434, 849, 456, 865 ], [ 529, 809, 539, 825 ], [ 542, 809, 578, 825 ], [ 581, 809, 592, 825 ], [ 529, 829, 574, 845 ], [ 529, 849, 575, 865 ], [ 578, 849, 593, 865 ], [ 620, 809, 630, 825 ], [ 632, 809, 657, 825 ], [ 620, 829, 671, 845 ], [ 620, 849, 650, 865 ], [ 653, 849, 685, 865 ], [ 688, 849, 699, 865 ], [ 717, 809, 726, 825 ], [ 729, 809, 793, 825 ], [ 717, 829, 771, 845 ], [ 774, 829, 793, 845 ], [ 717, 849, 767, 865 ], [ 770, 849, 793, 865 ], [ 796, 849, 821, 865 ], [ 838, 809, 847, 825 ], [ 850, 809, 891, 825 ], [ 838, 829, 870, 845 ], [ 873, 829, 908, 845 ], [ 838, 849, 876, 865 ] ]
diverse data view of data across supercomputer use by data data as well as disparate sources sources sources and over 3. Teradata, consumers/ to the results of 2. Reduce errors and 2. Volume: > 12 time PostgreSQL, stakeholders, analytics bias million entities 2. Analytic MongoDB i.e., those who performed by 3. Common (patients), > 4 techniques: 4. Various, with did not informatics nomenclature and billion records or information significant I/O actually research classification of data points retrieval, NLP, intensive perform the scientists and content across (discrete clinical machine learning processing analysis; health service disparate observations), decision models, specific researchers aggregate of > 20 maximum visualization 2. Protection of challenging in the TB raw data likelihood techniques all health data health IT space, as 3. Velocity: estimators, in compliance the taxonomies 500,000 to 1.5 Bayesian networks with continue to evolve— million new governmental SNOMED, transactions per regulations International day 3. Protection of Classification of 4. Variety: data in Diseases (ICD) 9 and formats include accordance future ICD 10, etc. numeric, with data structured providers, numeric, policies. structured 4. Security and text, discrete privacy policies nominal, discrete unique to a ordinal, discrete data subset structured, binary 5. Robust large blobs security to (images and prevent data video) breaches 5. Data evolve over time in a highly variable fashion 17 1. High-resolution 1. 1. Legacy system 1. 1. Security and 1. Human 1. 3D Pathology spatial digitized and cloud Visualization privacy annotations for visualization
diverse data sources 2. Volume: > 12 million entities (patients), > 4 billion records or data points (discrete clinical observations), aggregate of > 20 TB raw data 3. Velocity: 500,000 to 1.5 million new transactions per day 4. Variety: formats include numeric, structured numeric, structured text, discrete nominal, discrete ordinal, discrete structured, binary large blobs (images and video) 5. Data evolve over time in a highly variable fashion view of data across sources and over time 2. Analytic techniques: information retrieval, NLP, machine learning decision models, maximum likelihood estimators, Bayesian networks supercomputer 3. Teradata, PostgreSQL, MongoDB 4. Various, with significant I/O intensive processing use by data consumers/ stakeholders, i.e., those who did not actually perform the analysis; specific visualization techniques data as well as to the results of analytics performed by informatics research scientists and health service researchers 2. Protection of all health data in compliance with governmental regulations 3. Protection of data in accordance with data providers, policies. 4. Security and privacy policies unique to a data subset 5. Robust security to prevent data breaches disparate sources 2. Reduce errors and bias 3. Common nomenclature and classification of content across disparate challenging in the health IT space, as the taxonomies continue to evolve— SNOMED, International Classification of Diseases (ICD) 9 and future ICD 10, etc. 17 Pathology 1. High-resolution spatial digitized 1. 1. Legacy system and cloud 1. Visualization 1. Security and privacy 1. Human annotations for 1. 3D visualization
0.284757
[ 0, 1, 16, 31, 32, 33, 34, 40, 41, 52, 53, 54, 64, 65, 66, 74, 75, 85, 86, 94, 99, 100, 101, 102, 111, 112, 113, 123, 124, 130, 131, 132, 139, 140, 143, 144, 147, 153, 154, 161, 162, 168, 171, 173, 175, 179, 180, 183, 184, 188, 189, 192, 193, 196, 197, 200, 201, 204, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 2, 3, 4, 5, 17, 18, 19, 35, 42, 43, 55, 67, 76, 77, 87, 88, 95, 96, 103, 114, 125, 133, 134, 6, 20, 21, 36, 44, 56, 57, 58, 68, 69, 78, 89, 7, 8, 9, 22, 37, 45, 46, 47, 59, 60, 70, 79, 80, 90, 97, 104, 115, 10, 11, 12, 13, 23, 24, 25, 26, 38, 48, 49, 61, 71, 81, 82, 91, 92, 98, 105, 106, 107, 116, 117, 118, 126, 127, 135, 141, 145, 148, 149, 150, 155, 156, 163, 169, 170, 172, 174, 176, 177, 178, 181, 182, 185, 186, 187, 190, 191, 194, 195, 198, 199, 202, 203, 205, 14, 15, 27, 28, 29, 30, 39, 50, 51, 62, 63, 72, 73, 83, 84, 93, 108, 109, 110, 119, 120, 121, 122, 128, 129, 136, 137, 138, 142, 146, 151, 152, 157, 158, 159, 160, 164, 165, 166, 167, 216, 231, 217, 218, 232, 233, 219, 220, 221, 222, 234, 235, 223, 236, 224, 225, 226, 237, 227, 228, 238, 239, 229, 230, 240 ]
M0637_v1_6301062872.docx
task-1430-868
182
[ [ 200, 168, 237, 184 ], [ 239, 168, 262, 184 ], [ 307, 168, 331, 184 ], [ 334, 168, 345, 184 ], [ 347, 168, 370, 184 ], [ 373, 168, 406, 184 ], [ 421, 168, 500, 184 ], [ 529, 168, 547, 184 ], [ 550, 168, 562, 184 ], [ 565, 168, 588, 184 ], [ 620, 168, 643, 184 ], [ 646, 168, 657, 184 ], [ 660, 168, 681, 184 ], [ 684, 168, 695, 184 ], [ 717, 168, 765, 184 ], [ 768, 168, 807, 184 ], [ 200, 188, 239, 204 ], [ 307, 188, 347, 204 ], [ 349, 188, 369, 204 ], [ 372, 188, 395, 204 ], [ 421, 188, 431, 204 ], [ 434, 188, 482, 204 ], [ 529, 188, 590, 204 ], [ 620, 188, 631, 204 ], [ 634, 188, 651, 204 ], [ 654, 188, 688, 204 ], [ 691, 188, 701, 204 ], [ 717, 188, 726, 204 ], [ 729, 188, 767, 204 ], [ 770, 188, 801, 204 ], [ 804, 188, 823, 204 ], [ 200, 208, 209, 224 ], [ 212, 208, 255, 224 ], [ 258, 208, 264, 224 ], [ 267, 208, 280, 224 ], [ 307, 208, 331, 224 ], [ 421, 208, 483, 224 ], [ 529, 208, 598, 224 ], [ 620, 208, 665, 224 ], [ 717, 208, 737, 224 ], [ 200, 228, 234, 244 ], [ 237, 228, 276, 244 ], [ 307, 228, 317, 244 ], [ 320, 228, 361, 244 ], [ 421, 228, 472, 244 ], [ 529, 228, 548, 244 ], [ 551, 228, 579, 244 ], [ 582, 228, 604, 244 ], [ 620, 228, 675, 244 ], [ 678, 228, 690, 244 ], [ 717, 228, 726, 244 ], [ 729, 228, 776, 244 ], [ 200, 247, 252, 264 ], [ 255, 247, 261, 264 ], [ 264, 247, 270, 264 ], [ 307, 247, 367, 264 ], [ 421, 247, 431, 264 ], [ 434, 247, 475, 264 ], [ 478, 247, 501, 264 ], [ 529, 247, 545, 264 ], [ 548, 247, 566, 264 ], [ 620, 247, 678, 264 ], [ 717, 247, 789, 264 ], [ 791, 247, 811, 264 ], [ 200, 267, 231, 284 ], [ 234, 267, 272, 284 ], [ 275, 267, 286, 284 ], [ 307, 267, 368, 284 ], [ 421, 267, 473, 284 ], [ 476, 267, 493, 284 ], [ 529, 267, 569, 284 ], [ 620, 267, 664, 284 ], [ 717, 267, 782, 284 ], [ 785, 267, 795, 284 ], [ 200, 287, 222, 304 ], [ 225, 287, 257, 304 ], [ 307, 287, 354, 304 ], [ 357, 287, 380, 304 ], [ 421, 287, 467, 304 ], [ 529, 287, 571, 304 ], [ 574, 287, 591, 304 ], [ 620, 287, 667, 304 ], [ 670, 287, 689, 304 ], [ 717, 287, 756, 304 ], [ 759, 287, 792, 304 ], [ 200, 307, 244, 324 ], [ 247, 307, 282, 324 ], [ 307, 307, 351, 324 ], [ 354, 307, 396, 324 ], [ 421, 307, 476, 324 ], [ 529, 307, 572, 324 ], [ 620, 307, 653, 324 ], [ 656, 307, 691, 324 ], [ 717, 307, 765, 324 ], [ 200, 327, 272, 343 ], [ 307, 327, 349, 343 ], [ 352, 327, 393, 343 ], [ 529, 327, 567, 343 ], [ 620, 327, 680, 343 ], [ 200, 347, 250, 363 ], [ 253, 347, 264, 363 ], [ 267, 347, 273, 363 ], [ 276, 347, 289, 363 ], [ 307, 347, 359, 363 ], [ 529, 347, 592, 363 ], [ 620, 347, 630, 363 ], [ 632, 347, 686, 363 ], [ 689, 347, 700, 363 ], [ 717, 347, 775, 363 ], [ 778, 347, 787, 363 ], [ 790, 347, 807, 363 ], [ 200, 367, 212, 383 ], [ 215, 367, 235, 383 ], [ 238, 367, 261, 383 ], [ 307, 367, 357, 383 ], [ 529, 367, 586, 383 ], [ 620, 367, 632, 383 ], [ 635, 367, 667, 383 ], [ 670, 367, 693, 383 ], [ 717, 367, 749, 383 ], [ 752, 367, 762, 383 ], [ 764, 367, 797, 383 ], [ 799, 367, 810, 383 ], [ 200, 387, 209, 403 ], [ 212, 387, 256, 403 ], [ 307, 387, 365, 403 ], [ 620, 387, 630, 403 ], [ 632, 387, 691, 403 ], [ 717, 387, 734, 403 ], [ 737, 387, 796, 403 ], [ 200, 407, 241, 423 ], [ 244, 407, 255, 423 ], [ 258, 407, 273, 423 ], [ 307, 407, 353, 423 ], [ 356, 407, 404, 423 ], [ 620, 407, 643, 423 ], [ 717, 407, 762, 423 ], [ 765, 407, 776, 423 ], [ 779, 407, 823, 423 ], [ 200, 427, 234, 443 ], [ 237, 427, 259, 443 ], [ 620, 427, 692, 443 ], [ 717, 427, 767, 443 ], [ 200, 447, 262, 463 ], [ 265, 447, 283, 463 ], [ 620, 447, 677, 463 ], [ 717, 447, 783, 463 ], [ 200, 467, 218, 483 ], [ 620, 467, 630, 483 ], [ 632, 467, 686, 483 ], [ 689, 467, 700, 483 ], [ 717, 467, 783, 483 ], [ 786, 467, 797, 483 ], [ 200, 487, 209, 503 ], [ 212, 487, 252, 503 ], [ 620, 487, 643, 503 ], [ 646, 487, 655, 503 ], [ 717, 487, 761, 503 ], [ 763, 487, 789, 503 ], [ 792, 487, 798, 503 ], [ 801, 487, 820, 503 ], [ 200, 507, 240, 523 ], [ 242, 507, 280, 523 ], [ 620, 507, 679, 523 ], [ 717, 507, 749, 523 ], [ 751, 507, 769, 523 ], [ 772, 507, 788, 523 ], [ 791, 507, 810, 523 ], [ 200, 527, 245, 543 ], [ 620, 527, 643, 543 ], [ 646, 527, 669, 543 ], [ 200, 547, 253, 563 ], [ 620, 547, 671, 563 ], [ 200, 567, 245, 583 ], [ 620, 567, 662, 583 ], [ 226, 587, 279, 603 ], [ 620, 587, 630, 603 ], [ 632, 587, 674, 603 ], [ 677, 587, 696, 603 ], [ 200, 606, 223, 623 ], [ 226, 606, 267, 623 ], [ 620, 606, 657, 623 ], [ 660, 606, 698, 623 ], [ 200, 626, 244, 643 ], [ 247, 626, 288, 643 ], [ 620, 626, 656, 643 ], [ 659, 626, 670, 643 ], [ 672, 626, 678, 643 ], [ 200, 646, 239, 663 ], [ 242, 646, 283, 663 ], [ 620, 646, 643, 663 ], [ 646, 646, 679, 663 ], [ 200, 666, 256, 683 ], [ 259, 666, 292, 683 ], [ 620, 666, 630, 683 ], [ 632, 666, 668, 683 ], [ 200, 686, 225, 703 ], [ 228, 686, 256, 703 ], [ 620, 686, 660, 703 ], [ 663, 686, 674, 703 ], [ 200, 706, 239, 723 ], [ 242, 706, 262, 723 ], [ 620, 706, 660, 723 ], [ 663, 706, 686, 723 ], [ 200, 726, 231, 743 ], [ 620, 726, 666, 743 ], [ 200, 746, 209, 762 ], [ 212, 746, 236, 762 ], [ 239, 746, 272, 762 ], [ 200, 766, 222, 782 ], [ 225, 766, 249, 782 ], [ 252, 766, 261, 782 ], [ 264, 766, 270, 782 ], [ 200, 786, 230, 802 ], [ 233, 786, 274, 802 ], [ 200, 806, 237, 822 ], [ 90, 828, 103, 844 ], [ 200, 828, 209, 844 ], [ 212, 828, 291, 844 ], [ 307, 828, 317, 844 ], [ 421, 828, 431, 844 ], [ 434, 828, 468, 844 ], [ 471, 828, 507, 844 ], [ 529, 828, 539, 844 ], [ 620, 828, 630, 844 ], [ 632, 828, 674, 844 ], [ 677, 828, 696, 844 ], [ 717, 828, 726, 844 ], [ 729, 828, 766, 844 ], [ 838, 828, 847, 844 ], [ 850, 828, 864, 844 ], [ 120, 847, 171, 864 ], [ 200, 847, 233, 864 ], [ 236, 847, 279, 864 ], [ 421, 847, 440, 864 ], [ 443, 847, 471, 864 ], [ 529, 847, 594, 864 ], [ 620, 847, 657, 864 ], [ 717, 847, 778, 864 ], [ 781, 847, 796, 864 ], [ 838, 847, 901, 864 ] ]
[ [ 200, 168, 237, 184 ], [ 239, 168, 262, 184 ], [ 200, 188, 239, 204 ], [ 200, 208, 209, 224 ], [ 212, 208, 255, 224 ], [ 258, 208, 264, 224 ], [ 267, 208, 280, 224 ], [ 200, 228, 234, 244 ], [ 237, 228, 276, 244 ], [ 200, 247, 252, 264 ], [ 255, 247, 261, 264 ], [ 264, 247, 270, 264 ], [ 200, 267, 231, 284 ], [ 234, 267, 272, 284 ], [ 275, 267, 286, 284 ], [ 200, 287, 222, 304 ], [ 225, 287, 257, 304 ], [ 200, 307, 244, 324 ], [ 247, 307, 282, 324 ], [ 200, 327, 272, 343 ], [ 200, 347, 250, 363 ], [ 253, 347, 264, 363 ], [ 267, 347, 273, 363 ], [ 276, 347, 289, 363 ], [ 200, 367, 212, 383 ], [ 215, 367, 235, 383 ], [ 238, 367, 261, 383 ], [ 200, 387, 209, 403 ], [ 212, 387, 256, 403 ], [ 200, 407, 241, 423 ], [ 244, 407, 255, 423 ], [ 258, 407, 273, 423 ], [ 200, 427, 234, 443 ], [ 237, 427, 259, 443 ], [ 200, 447, 262, 463 ], [ 265, 447, 283, 463 ], [ 200, 467, 218, 483 ], [ 200, 487, 209, 503 ], [ 212, 487, 252, 503 ], [ 200, 507, 240, 523 ], [ 242, 507, 280, 523 ], [ 200, 527, 245, 543 ], [ 200, 547, 253, 563 ], [ 200, 567, 245, 583 ], [ 226, 587, 279, 603 ], [ 200, 606, 223, 623 ], [ 226, 606, 267, 623 ], [ 200, 626, 244, 643 ], [ 247, 626, 288, 643 ], [ 200, 646, 239, 663 ], [ 242, 646, 283, 663 ], [ 200, 666, 256, 683 ], [ 259, 666, 292, 683 ], [ 200, 686, 225, 703 ], [ 228, 686, 256, 703 ], [ 200, 706, 239, 723 ], [ 242, 706, 262, 723 ], [ 200, 726, 231, 743 ], [ 200, 746, 209, 762 ], [ 212, 746, 236, 762 ], [ 239, 746, 272, 762 ], [ 200, 766, 222, 782 ], [ 225, 766, 249, 782 ], [ 252, 766, 261, 782 ], [ 264, 766, 270, 782 ], [ 200, 786, 230, 802 ], [ 233, 786, 274, 802 ], [ 200, 806, 237, 822 ], [ 307, 168, 331, 184 ], [ 334, 168, 345, 184 ], [ 347, 168, 370, 184 ], [ 373, 168, 406, 184 ], [ 307, 188, 347, 204 ], [ 349, 188, 369, 204 ], [ 372, 188, 395, 204 ], [ 307, 208, 331, 224 ], [ 307, 228, 317, 244 ], [ 320, 228, 361, 244 ], [ 307, 247, 367, 264 ], [ 307, 267, 368, 284 ], [ 307, 287, 354, 304 ], [ 357, 287, 380, 304 ], [ 307, 307, 351, 324 ], [ 354, 307, 396, 324 ], [ 307, 327, 349, 343 ], [ 352, 327, 393, 343 ], [ 307, 347, 359, 363 ], [ 307, 367, 357, 383 ], [ 307, 387, 365, 403 ], [ 307, 407, 353, 423 ], [ 356, 407, 404, 423 ], [ 421, 168, 500, 184 ], [ 421, 188, 431, 204 ], [ 434, 188, 482, 204 ], [ 421, 208, 483, 224 ], [ 421, 228, 472, 244 ], [ 421, 247, 431, 264 ], [ 434, 247, 475, 264 ], [ 478, 247, 501, 264 ], [ 421, 267, 473, 284 ], [ 476, 267, 493, 284 ], [ 421, 287, 467, 304 ], [ 421, 307, 476, 324 ], [ 529, 168, 547, 184 ], [ 550, 168, 562, 184 ], [ 565, 168, 588, 184 ], [ 529, 188, 590, 204 ], [ 529, 208, 598, 224 ], [ 529, 228, 548, 244 ], [ 551, 228, 579, 244 ], [ 582, 228, 604, 244 ], [ 529, 247, 545, 264 ], [ 548, 247, 566, 264 ], [ 529, 267, 569, 284 ], [ 529, 287, 571, 304 ], [ 574, 287, 591, 304 ], [ 529, 307, 572, 324 ], [ 529, 327, 567, 343 ], [ 529, 347, 592, 363 ], [ 529, 367, 586, 383 ], [ 620, 168, 643, 184 ], [ 646, 168, 657, 184 ], [ 660, 168, 681, 184 ], [ 684, 168, 695, 184 ], [ 620, 188, 631, 204 ], [ 634, 188, 651, 204 ], [ 654, 188, 688, 204 ], [ 691, 188, 701, 204 ], [ 620, 208, 665, 224 ], [ 620, 228, 675, 244 ], [ 678, 228, 690, 244 ], [ 620, 247, 678, 264 ], [ 620, 267, 664, 284 ], [ 620, 287, 667, 304 ], [ 670, 287, 689, 304 ], [ 620, 307, 653, 324 ], [ 656, 307, 691, 324 ], [ 620, 327, 680, 343 ], [ 620, 347, 630, 363 ], [ 632, 347, 686, 363 ], [ 689, 347, 700, 363 ], [ 620, 367, 632, 383 ], [ 635, 367, 667, 383 ], [ 670, 367, 693, 383 ], [ 620, 387, 630, 403 ], [ 632, 387, 691, 403 ], [ 620, 407, 643, 423 ], [ 620, 427, 692, 443 ], [ 620, 447, 677, 463 ], [ 620, 467, 630, 483 ], [ 632, 467, 686, 483 ], [ 689, 467, 700, 483 ], [ 620, 487, 643, 503 ], [ 646, 487, 655, 503 ], [ 620, 507, 679, 523 ], [ 620, 527, 643, 543 ], [ 646, 527, 669, 543 ], [ 620, 547, 671, 563 ], [ 620, 567, 662, 583 ], [ 620, 587, 630, 603 ], [ 632, 587, 674, 603 ], [ 677, 587, 696, 603 ], [ 620, 606, 657, 623 ], [ 660, 606, 698, 623 ], [ 620, 626, 656, 643 ], [ 659, 626, 670, 643 ], [ 672, 626, 678, 643 ], [ 620, 646, 643, 663 ], [ 646, 646, 679, 663 ], [ 620, 666, 630, 683 ], [ 632, 666, 668, 683 ], [ 620, 686, 660, 703 ], [ 663, 686, 674, 703 ], [ 620, 706, 660, 723 ], [ 663, 706, 686, 723 ], [ 620, 726, 666, 743 ], [ 717, 168, 765, 184 ], [ 768, 168, 807, 184 ], [ 717, 188, 726, 204 ], [ 729, 188, 767, 204 ], [ 770, 188, 801, 204 ], [ 804, 188, 823, 204 ], [ 717, 208, 737, 224 ], [ 717, 228, 726, 244 ], [ 729, 228, 776, 244 ], [ 717, 247, 789, 264 ], [ 791, 247, 811, 264 ], [ 717, 267, 782, 284 ], [ 785, 267, 795, 284 ], [ 717, 287, 756, 304 ], [ 759, 287, 792, 304 ], [ 717, 307, 765, 324 ], [ 717, 347, 775, 363 ], [ 778, 347, 787, 363 ], [ 790, 347, 807, 363 ], [ 717, 367, 749, 383 ], [ 752, 367, 762, 383 ], [ 764, 367, 797, 383 ], [ 799, 367, 810, 383 ], [ 717, 387, 734, 403 ], [ 737, 387, 796, 403 ], [ 717, 407, 762, 423 ], [ 765, 407, 776, 423 ], [ 779, 407, 823, 423 ], [ 717, 427, 767, 443 ], [ 717, 447, 783, 463 ], [ 717, 467, 783, 483 ], [ 786, 467, 797, 483 ], [ 717, 487, 761, 503 ], [ 763, 487, 789, 503 ], [ 792, 487, 798, 503 ], [ 801, 487, 820, 503 ], [ 717, 507, 749, 523 ], [ 751, 507, 769, 523 ], [ 772, 507, 788, 523 ], [ 791, 507, 810, 523 ], [ 90, 828, 103, 844 ], [ 120, 847, 171, 864 ], [ 200, 828, 209, 844 ], [ 212, 828, 291, 844 ], [ 200, 847, 233, 864 ], [ 236, 847, 279, 864 ], [ 307, 828, 317, 844 ], [ 421, 828, 431, 844 ], [ 434, 828, 468, 844 ], [ 471, 828, 507, 844 ], [ 421, 847, 440, 864 ], [ 443, 847, 471, 864 ], [ 529, 828, 539, 844 ], [ 529, 847, 594, 864 ], [ 620, 828, 630, 844 ], [ 632, 828, 674, 844 ], [ 677, 828, 696, 844 ], [ 620, 847, 657, 864 ], [ 717, 828, 726, 844 ], [ 729, 828, 766, 844 ], [ 717, 847, 778, 864 ], [ 781, 847, 796, 864 ], [ 838, 828, 847, 844 ], [ 850, 828, 864, 844 ], [ 838, 847, 901, 864 ] ]
SAR Synthetic Aperture Radar SDLC/HDLC Software Development Life Cycle/Hardware Development Life Cycle SDN software-defined networking SEC U.S. Securities and Exchange Commission SFA 2.0 Scientific Focus Area 2.0 Science Plan SIEM Security Incident/Event Management SIOS Svalbard Integrated Arctic Earth Observing System SOAP Simple Object Access Protocol SOX Sarbanes–Oxley Act of 2002 SPADE Support for Provenance Auditing in Distributed Environments SPR Security and Privacy Requirements SSH Secure Shell SSO Single sign-on capability tf-idf term frequency–inverse document frequency TPR Transformation Provider Requirements UA University of Arizona UAVSAR Unmanned Air Vehicle Synthetic Aperture Radar UI user interface UPS United Parcel Service UQ uncertainty quantification vCDS virtual Climate Data Server VO Virtual Observatory VOIP Voice over IP WALF Wide Area Large Format Imagery WLCG Worldwide LHC Computing Grid XBRL extensible Business Related Markup Language XML Extensible Markup Language ZTF Zwicky Transient Factory
SAR Synthetic Aperture Radar SDLC/HDLC Software Development Life Cycle/Hardware Development Life Cycle SDN software-defined networking SEC U.S. Securities and Exchange Commission SFA 2.0 Scientific Focus Area 2.0 Science Plan SIEM Security Incident/Event Management SIOS Svalbard Integrated Arctic Earth Observing System SOAP Simple Object Access Protocol SOX Sarbanes–Oxley Act of 2002 SPADE Support for Provenance Auditing in Distributed Environments SPR Security and Privacy Requirements SSH Secure Shell SSO Single sign-on capability tf-idf term frequency–inverse document frequency TPR Transformation Provider Requirements UA University of Arizona UAVSAR Unmanned Air Vehicle Synthetic Aperture Radar UI user interface UPS United Parcel Service UQ uncertainty quantification vCDS virtual Climate Data Server VO Virtual Observatory VOIP Voice over IP WALF Wide Area Large Format Imagery WLCG Worldwide LHC Computing Grid XBRL extensible Business Related Markup Language XML Extensible Markup Language ZTF Zwicky Transient Factory
1
[ 0, 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 ]
M0637_v1_6301062872.docx
task-1430-868
289
[ [ 117, 88, 152, 107 ], [ 227, 88, 295, 107 ], [ 299, 88, 363, 107 ], [ 368, 88, 411, 107 ], [ 117, 104, 217, 123 ], [ 227, 104, 292, 123 ], [ 296, 104, 393, 123 ], [ 398, 104, 428, 123 ], [ 432, 104, 550, 123 ], [ 555, 104, 651, 123 ], [ 655, 104, 686, 123 ], [ 690, 104, 732, 123 ], [ 117, 120, 153, 139 ], [ 227, 120, 349, 139 ], [ 353, 120, 435, 139 ], [ 117, 136, 150, 155 ], [ 227, 136, 259, 155 ], [ 263, 136, 334, 155 ], [ 339, 136, 365, 155 ], [ 369, 136, 440, 155 ], [ 444, 136, 536, 155 ], [ 117, 152, 150, 171 ], [ 155, 152, 177, 171 ], [ 227, 152, 296, 171 ], [ 300, 152, 343, 171 ], [ 348, 152, 383, 171 ], [ 387, 152, 410, 171 ], [ 414, 152, 470, 171 ], [ 475, 152, 507, 171 ], [ 117, 168, 160, 187 ], [ 227, 168, 287, 187 ], [ 291, 168, 397, 187 ], [ 402, 168, 495, 187 ], [ 117, 184, 156, 203 ], [ 227, 184, 291, 203 ], [ 295, 184, 368, 203 ], [ 373, 184, 418, 203 ], [ 422, 184, 461, 203 ], [ 465, 184, 540, 203 ], [ 545, 184, 598, 203 ], [ 117, 200, 163, 219 ], [ 227, 200, 278, 219 ], [ 282, 200, 330, 219 ], [ 335, 200, 386, 219 ], [ 390, 200, 451, 219 ], [ 117, 216, 153, 235 ], [ 227, 216, 345, 235 ], [ 349, 216, 375, 235 ], [ 380, 216, 395, 235 ], [ 399, 216, 435, 235 ], [ 117, 232, 174, 251 ], [ 227, 232, 284, 251 ], [ 288, 232, 309, 251 ], [ 314, 232, 398, 251 ], [ 402, 232, 466, 251 ], [ 471, 232, 485, 251 ], [ 489, 232, 570, 251 ], [ 575, 232, 675, 251 ], [ 117, 248, 149, 267 ], [ 227, 248, 287, 267 ], [ 291, 248, 317, 267 ], [ 322, 248, 377, 267 ], [ 381, 248, 481, 267 ], [ 117, 264, 150, 283 ], [ 227, 264, 276, 283 ], [ 280, 264, 317, 283 ], [ 117, 280, 150, 299 ], [ 227, 280, 273, 299 ], [ 277, 280, 331, 299 ], [ 336, 280, 407, 299 ], [ 117, 296, 154, 315 ], [ 227, 296, 260, 315 ], [ 264, 296, 397, 315 ], [ 402, 296, 472, 315 ], [ 477, 296, 549, 315 ], [ 117, 312, 150, 331 ], [ 227, 312, 339, 331 ], [ 343, 312, 405, 331 ], [ 410, 312, 509, 331 ], [ 117, 328, 143, 347 ], [ 227, 328, 303, 347 ], [ 307, 328, 322, 347 ], [ 327, 328, 385, 347 ], [ 117, 344, 191, 363 ], [ 227, 344, 306, 363 ], [ 310, 344, 334, 363 ], [ 339, 344, 395, 363 ], [ 399, 344, 467, 363 ], [ 472, 344, 535, 363 ], [ 540, 344, 583, 363 ], [ 117, 360, 136, 378 ], [ 227, 360, 257, 378 ], [ 261, 360, 324, 378 ], [ 117, 376, 150, 394 ], [ 227, 376, 276, 394 ], [ 280, 376, 325, 394 ], [ 330, 376, 384, 394 ], [ 117, 392, 143, 410 ], [ 227, 392, 308, 410 ], [ 312, 392, 412, 410 ], [ 117, 408, 161, 426 ], [ 227, 408, 274, 426 ], [ 278, 408, 335, 426 ], [ 340, 408, 374, 426 ], [ 378, 408, 425, 426 ], [ 117, 424, 143, 442 ], [ 227, 424, 278, 442 ], [ 282, 424, 371, 442 ], [ 117, 440, 159, 458 ], [ 227, 440, 270, 458 ], [ 274, 440, 306, 458 ], [ 311, 440, 327, 458 ], [ 117, 456, 168, 474 ], [ 227, 456, 266, 474 ], [ 270, 456, 305, 474 ], [ 310, 456, 352, 474 ], [ 356, 456, 408, 474 ], [ 413, 456, 472, 474 ], [ 117, 472, 170, 490 ], [ 227, 472, 308, 490 ], [ 312, 472, 348, 490 ], [ 353, 472, 433, 490 ], [ 438, 472, 471, 490 ], [ 117, 488, 165, 506 ], [ 227, 488, 300, 506 ], [ 304, 488, 368, 506 ], [ 373, 488, 428, 506 ], [ 432, 488, 489, 506 ], [ 494, 488, 564, 506 ], [ 117, 504, 157, 522 ], [ 227, 504, 303, 522 ], [ 307, 504, 364, 522 ], [ 369, 504, 439, 522 ], [ 117, 520, 149, 538 ], [ 227, 520, 282, 538 ], [ 286, 520, 354, 538 ], [ 359, 520, 414, 538 ] ]
[ [ 117, 88, 152, 107 ], [ 227, 88, 295, 107 ], [ 299, 88, 363, 107 ], [ 368, 88, 411, 107 ], [ 117, 104, 217, 123 ], [ 227, 104, 292, 123 ], [ 296, 104, 393, 123 ], [ 398, 104, 428, 123 ], [ 432, 104, 550, 123 ], [ 555, 104, 651, 123 ], [ 655, 104, 686, 123 ], [ 690, 104, 732, 123 ], [ 117, 120, 153, 139 ], [ 227, 120, 349, 139 ], [ 353, 120, 435, 139 ], [ 117, 136, 150, 155 ], [ 227, 136, 259, 155 ], [ 263, 136, 334, 155 ], [ 339, 136, 365, 155 ], [ 369, 136, 440, 155 ], [ 444, 136, 536, 155 ], [ 117, 152, 150, 171 ], [ 155, 152, 177, 171 ], [ 227, 152, 296, 171 ], [ 300, 152, 343, 171 ], [ 348, 152, 383, 171 ], [ 387, 152, 410, 171 ], [ 414, 152, 470, 171 ], [ 475, 152, 507, 171 ], [ 117, 168, 160, 187 ], [ 227, 168, 287, 187 ], [ 291, 168, 397, 187 ], [ 402, 168, 495, 187 ], [ 117, 184, 156, 203 ], [ 227, 184, 291, 203 ], [ 295, 184, 368, 203 ], [ 373, 184, 418, 203 ], [ 422, 184, 461, 203 ], [ 465, 184, 540, 203 ], [ 545, 184, 598, 203 ], [ 117, 200, 163, 219 ], [ 227, 200, 278, 219 ], [ 282, 200, 330, 219 ], [ 335, 200, 386, 219 ], [ 390, 200, 451, 219 ], [ 117, 216, 153, 235 ], [ 227, 216, 345, 235 ], [ 349, 216, 375, 235 ], [ 380, 216, 395, 235 ], [ 399, 216, 435, 235 ], [ 117, 232, 174, 251 ], [ 227, 232, 284, 251 ], [ 288, 232, 309, 251 ], [ 314, 232, 398, 251 ], [ 402, 232, 466, 251 ], [ 471, 232, 485, 251 ], [ 489, 232, 570, 251 ], [ 575, 232, 675, 251 ], [ 117, 248, 149, 267 ], [ 227, 248, 287, 267 ], [ 291, 248, 317, 267 ], [ 322, 248, 377, 267 ], [ 381, 248, 481, 267 ], [ 117, 264, 150, 283 ], [ 227, 264, 276, 283 ], [ 280, 264, 317, 283 ], [ 117, 280, 150, 299 ], [ 227, 280, 273, 299 ], [ 277, 280, 331, 299 ], [ 336, 280, 407, 299 ], [ 117, 296, 154, 315 ], [ 227, 296, 260, 315 ], [ 264, 296, 397, 315 ], [ 402, 296, 472, 315 ], [ 477, 296, 549, 315 ], [ 117, 312, 150, 331 ], [ 227, 312, 339, 331 ], [ 343, 312, 405, 331 ], [ 410, 312, 509, 331 ], [ 117, 328, 143, 347 ], [ 227, 328, 303, 347 ], [ 307, 328, 322, 347 ], [ 327, 328, 385, 347 ], [ 117, 344, 191, 363 ], [ 227, 344, 306, 363 ], [ 310, 344, 334, 363 ], [ 339, 344, 395, 363 ], [ 399, 344, 467, 363 ], [ 472, 344, 535, 363 ], [ 540, 344, 583, 363 ], [ 117, 360, 136, 378 ], [ 227, 360, 257, 378 ], [ 261, 360, 324, 378 ], [ 117, 376, 150, 394 ], [ 227, 376, 276, 394 ], [ 280, 376, 325, 394 ], [ 330, 376, 384, 394 ], [ 117, 392, 143, 410 ], [ 227, 392, 308, 410 ], [ 312, 392, 412, 410 ], [ 117, 408, 161, 426 ], [ 227, 408, 274, 426 ], [ 278, 408, 335, 426 ], [ 340, 408, 374, 426 ], [ 378, 408, 425, 426 ], [ 117, 424, 143, 442 ], [ 227, 424, 278, 442 ], [ 282, 424, 371, 442 ], [ 117, 440, 159, 458 ], [ 227, 440, 270, 458 ], [ 274, 440, 306, 458 ], [ 311, 440, 327, 458 ], [ 117, 456, 168, 474 ], [ 227, 456, 266, 474 ], [ 270, 456, 305, 474 ], [ 310, 456, 352, 474 ], [ 356, 456, 408, 474 ], [ 413, 456, 472, 474 ], [ 117, 472, 170, 490 ], [ 227, 472, 308, 490 ], [ 312, 472, 348, 490 ], [ 353, 472, 433, 490 ], [ 438, 472, 471, 490 ], [ 117, 488, 165, 506 ], [ 227, 488, 300, 506 ], [ 304, 488, 368, 506 ], [ 373, 488, 428, 506 ], [ 432, 488, 489, 506 ], [ 494, 488, 564, 506 ], [ 117, 504, 157, 522 ], [ 227, 504, 303, 522 ], [ 307, 504, 364, 522 ], [ 369, 504, 439, 522 ], [ 117, 520, 149, 538 ], [ 227, 520, 282, 538 ], [ 286, 520, 354, 538 ], [ 359, 520, 414, 538 ] ]
"parameters": { "hadoop": { "zookeeper.quorum": [ "IP", "IP", "IP"] } } } } } The deployment has as inputs parameters defining the applied function and the input data. Both Map/Reduce function and data objects define a parameter, which specifies the location it is retrieved from. For instance, source the ``file://'' Uniform Resource Identifier (URI) indicates sending a directory structure from the local file system and the ``ftp://'' indicates that the data should be fetched from a File Transfer Protocol (FTP) resource. It is the framework's responsibility to materialize an instantiation of the desired environment along with the function and data. Object 4.37: Map/Reduce { "mapreduce": { "function": { "source": "file://.", "args": {} }, "data": { "source": "ftp:///...", "dest": "/data" }, "fault_tolerant": true, "backend": {"type": "hadoop"} } } Additional parameters include the and parameters. The former flag indicates if the fault\_tolerant backend deployment should operate in a fault tolerant mode. For instance, in the case of Hadoop, this may Map/Reduce mean configuring automatic failover of name nodes using Zookeeper. The parameter accepts an object backend describing the system providing the workflow. This may be a native deployment of Hadoop, or a Map/Reduce special instantiation using other frameworks such as Mesos. A function prototype is defined earlier. Key properties are that functions describe their input parameters and generated results. For input parameters, the and respectively describe the objects buildInputs systemBuildInputs that should be evaluated and system packages that should be present before this function can be installed. The attribute describes how to apply this function to its input data. Parameters affecting the evaluation of the eval function may be passed in as the attribute. The results of the function application can be accessed via the args object, which is a mapping from arbitrary keys (e.g., data, processed, model) to an object representing the outputs result.
"parameters": { "hadoop": { "zookeeper.quorum": [ "IP", "IP", "IP"] } } } } } The Map/Reduce deployment has as inputs parameters defining the applied function and the input data. Both function and data objects define a source parameter, which specifies the location it is retrieved from. For instance, the ``file://'' Uniform Resource Identifier (URI) indicates sending a directory structure from the local file system and the ``ftp://'' indicates that the data should be fetched from a File Transfer Protocol (FTP) resource. It is the framework's responsibility to materialize an instantiation of the desired environment along with the function and data. Object 4.37: Map/Reduce { "mapreduce": { "function": { "source": "file://.", "args": {} }, "data": { "source": "ftp:///...", "dest": "/data" }, "fault_tolerant": true, "backend": {"type": "hadoop"} } } Additional parameters include the fault\_tolerant and backend parameters. The former flag indicates if the Map/Reduce deployment should operate in a fault tolerant mode. For instance, in the case of Hadoop, this may mean configuring automatic failover of name nodes using Zookeeper. The backend parameter accepts an object describing the system providing the Map/Reduce workflow. This may be a native deployment of Hadoop, or a special instantiation using other frameworks such as Mesos. A function prototype is defined earlier. Key properties are that functions describe their input parameters and generated results. For input parameters, the buildInputs and systemBuildInputs respectively describe the objects that should be evaluated and system packages that should be present before this function can be installed. The eval attribute describes how to apply this function to its input data. Parameters affecting the evaluation of the function may be passed in as the args attribute. The results of the function application can be accessed via the outputs object, which is a mapping from arbitrary keys (e.g., data, processed, model) to an object representing the result.
0.876539
[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 29, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 47, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 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, 139, 131, 140, 132, 133, 134, 135, 136, 137, 138, 158, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 173, 169, 170, 171, 172, 174, 175, 176, 177, 178, 190, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 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, 226, 221, 227, 222, 223, 224, 225, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 263, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 283, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 301, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 302 ]
M0641_v1_7213461555.docx
task-1430-872
43
[ [ 251, 117, 367, 129 ], [ 376, 117, 385, 129 ], [ 286, 132, 367, 144 ], [ 376, 132, 385, 144 ], [ 394, 132, 565, 144 ], [ 574, 132, 583, 144 ], [ 592, 132, 637, 144 ], [ 646, 132, 691, 144 ], [ 700, 132, 744, 144 ], [ 376, 146, 385, 159 ], [ 251, 161, 259, 174 ], [ 214, 176, 223, 189 ], [ 179, 191, 188, 203 ], [ 142, 205, 151, 218 ], [ 88, 268, 116, 286 ], [ 216, 268, 300, 286 ], [ 305, 268, 329, 286 ], [ 334, 268, 349, 286 ], [ 353, 268, 397, 286 ], [ 402, 268, 480, 286 ], [ 485, 268, 545, 286 ], [ 549, 268, 571, 286 ], [ 576, 268, 629, 286 ], [ 633, 268, 693, 286 ], [ 697, 268, 724, 286 ], [ 728, 268, 750, 286 ], [ 754, 268, 791, 286 ], [ 796, 268, 830, 286 ], [ 835, 268, 870, 286 ], [ 120, 269, 211, 286 ], [ 88, 284, 148, 302 ], [ 152, 284, 178, 302 ], [ 183, 284, 213, 302 ], [ 217, 284, 268, 302 ], [ 273, 284, 318, 302 ], [ 322, 284, 330, 302 ], [ 387, 284, 463, 302 ], [ 468, 284, 512, 302 ], [ 516, 284, 579, 302 ], [ 584, 284, 606, 302 ], [ 610, 284, 668, 302 ], [ 673, 284, 682, 302 ], [ 687, 284, 699, 302 ], [ 704, 284, 767, 302 ], [ 772, 284, 811, 302 ], [ 816, 284, 841, 302 ], [ 845, 284, 909, 302 ], [ 334, 285, 382, 302 ], [ 88, 300, 110, 318 ], [ 114, 300, 172, 318 ], [ 176, 300, 238, 318 ], [ 242, 300, 309, 318 ], [ 314, 300, 381, 318 ], [ 385, 300, 428, 318 ], [ 432, 300, 496, 318 ], [ 501, 300, 557, 318 ], [ 562, 300, 570, 318 ], [ 574, 300, 639, 318 ], [ 643, 300, 706, 318 ], [ 711, 300, 746, 318 ], [ 750, 300, 772, 318 ], [ 777, 300, 812, 318 ], [ 816, 300, 840, 318 ], [ 845, 300, 894, 318 ], [ 88, 316, 114, 334 ], [ 118, 316, 140, 334 ], [ 145, 316, 198, 334 ], [ 202, 316, 266, 334 ], [ 271, 316, 298, 334 ], [ 303, 316, 325, 334 ], [ 329, 316, 359, 334 ], [ 364, 316, 412, 334 ], [ 416, 316, 433, 334 ], [ 437, 316, 490, 334 ], [ 495, 316, 530, 334 ], [ 534, 316, 542, 334 ], [ 547, 316, 575, 334 ], [ 579, 316, 640, 334 ], [ 645, 316, 705, 334 ], [ 710, 316, 753, 334 ], [ 757, 316, 823, 334 ], [ 827, 316, 838, 334 ], [ 843, 316, 855, 334 ], [ 859, 316, 881, 334 ], [ 88, 332, 177, 350 ], [ 181, 332, 279, 350 ], [ 284, 332, 298, 350 ], [ 302, 332, 382, 350 ], [ 387, 332, 404, 350 ], [ 408, 332, 497, 350 ], [ 501, 332, 516, 350 ], [ 521, 332, 543, 350 ], [ 547, 332, 599, 350 ], [ 604, 332, 695, 350 ], [ 699, 332, 739, 350 ], [ 744, 332, 776, 350 ], [ 780, 332, 802, 350 ], [ 807, 332, 866, 350 ], [ 871, 332, 897, 350 ], [ 88, 347, 122, 366 ], [ 98, 372, 150, 391 ], [ 154, 372, 192, 391 ], [ 196, 372, 294, 391 ], [ 142, 400, 151, 413 ], [ 161, 415, 268, 427 ], [ 277, 415, 286, 427 ], [ 197, 430, 295, 442 ], [ 304, 430, 313, 442 ], [ 232, 444, 313, 457 ], [ 322, 444, 421, 457 ], [ 232, 459, 295, 472 ], [ 304, 459, 322, 472 ], [ 197, 474, 215, 487 ], [ 197, 489, 259, 501 ], [ 268, 489, 277, 501 ], [ 232, 504, 313, 516 ], [ 322, 504, 439, 516 ], [ 232, 518, 295, 531 ], [ 304, 518, 367, 531 ], [ 197, 533, 215, 546 ], [ 197, 548, 349, 561 ], [ 358, 548, 403, 561 ], [ 197, 563, 286, 575 ], [ 295, 563, 367, 575 ], [ 376, 563, 457, 575 ], [ 161, 578, 169, 590 ], [ 142, 592, 151, 605 ], [ 88, 627, 165, 646 ], [ 169, 627, 248, 646 ], [ 253, 627, 305, 646 ], [ 310, 627, 332, 646 ], [ 445, 627, 471, 646 ], [ 540, 627, 623, 646 ], [ 627, 627, 655, 646 ], [ 660, 627, 709, 646 ], [ 713, 627, 741, 646 ], [ 746, 627, 810, 646 ], [ 814, 627, 825, 646 ], [ 830, 627, 852, 646 ], [ 336, 628, 440, 645 ], [ 475, 628, 535, 645 ], [ 183, 643, 268, 662 ], [ 272, 643, 320, 662 ], [ 325, 643, 378, 662 ], [ 382, 643, 396, 662 ], [ 401, 643, 409, 662 ], [ 413, 643, 446, 662 ], [ 451, 643, 506, 662 ], [ 510, 643, 554, 662 ], [ 559, 643, 584, 662 ], [ 588, 643, 652, 662 ], [ 656, 643, 670, 662 ], [ 675, 643, 697, 662 ], [ 701, 643, 732, 662 ], [ 737, 643, 752, 662 ], [ 756, 643, 818, 662 ], [ 822, 643, 848, 662 ], [ 853, 643, 884, 662 ], [ 88, 645, 179, 662 ], [ 88, 659, 127, 678 ], [ 131, 659, 215, 678 ], [ 220, 659, 290, 678 ], [ 295, 659, 351, 678 ], [ 355, 659, 370, 678 ], [ 375, 659, 414, 678 ], [ 418, 659, 460, 678 ], [ 465, 659, 504, 678 ], [ 508, 659, 590, 678 ], [ 594, 659, 622, 678 ], [ 691, 659, 763, 678 ], [ 767, 659, 820, 678 ], [ 825, 659, 842, 678 ], [ 846, 659, 890, 678 ], [ 627, 660, 686, 677 ], [ 88, 675, 163, 694 ], [ 167, 675, 189, 694 ], [ 194, 675, 244, 694 ], [ 248, 675, 318, 694 ], [ 323, 675, 345, 694 ], [ 444, 675, 519, 694 ], [ 523, 675, 555, 694 ], [ 560, 675, 591, 694 ], [ 595, 675, 612, 694 ], [ 616, 675, 624, 694 ], [ 629, 675, 673, 694 ], [ 677, 675, 762, 694 ], [ 767, 675, 782, 694 ], [ 786, 675, 848, 694 ], [ 852, 675, 867, 694 ], [ 871, 675, 879, 694 ], [ 349, 676, 440, 693 ], [ 88, 691, 138, 710 ], [ 142, 691, 231, 710 ], [ 236, 691, 275, 710 ], [ 279, 691, 316, 710 ], [ 321, 691, 406, 710 ], [ 411, 691, 444, 710 ], [ 448, 691, 463, 710 ], [ 468, 691, 519, 710 ], [ 88, 714, 101, 733 ], [ 105, 714, 165, 733 ], [ 170, 714, 239, 733 ], [ 243, 714, 255, 733 ], [ 260, 714, 313, 733 ], [ 318, 714, 368, 733 ], [ 373, 714, 403, 733 ], [ 407, 714, 479, 733 ], [ 484, 714, 506, 733 ], [ 510, 714, 537, 733 ], [ 542, 714, 608, 733 ], [ 613, 714, 673, 733 ], [ 677, 714, 710, 733 ], [ 715, 714, 752, 733 ], [ 756, 714, 835, 733 ], [ 840, 714, 866, 733 ], [ 88, 731, 158, 749 ], [ 162, 731, 214, 749 ], [ 218, 731, 243, 749 ], [ 248, 731, 285, 749 ], [ 289, 731, 372, 749 ], [ 377, 731, 399, 749 ], [ 490, 731, 516, 749 ], [ 656, 731, 743, 749 ], [ 748, 731, 808, 749 ], [ 812, 731, 834, 749 ], [ 839, 731, 890, 749 ], [ 404, 732, 485, 749 ], [ 520, 732, 652, 749 ], [ 88, 746, 115, 765 ], [ 119, 746, 167, 765 ], [ 172, 746, 189, 765 ], [ 193, 746, 262, 765 ], [ 267, 746, 292, 765 ], [ 297, 746, 347, 765 ], [ 351, 746, 417, 765 ], [ 422, 746, 449, 765 ], [ 453, 746, 501, 765 ], [ 506, 746, 523, 765 ], [ 527, 746, 579, 765 ], [ 584, 746, 630, 765 ], [ 634, 746, 660, 765 ], [ 665, 746, 724, 765 ], [ 729, 746, 754, 765 ], [ 758, 746, 776, 765 ], [ 780, 746, 845, 765 ], [ 850, 746, 878, 765 ], [ 122, 762, 182, 781 ], [ 187, 762, 254, 781 ], [ 258, 762, 289, 781 ], [ 293, 762, 308, 781 ], [ 312, 762, 352, 781 ], [ 356, 762, 382, 781 ], [ 387, 762, 447, 781 ], [ 451, 762, 465, 781 ], [ 470, 762, 487, 781 ], [ 491, 762, 528, 781 ], [ 533, 762, 567, 781 ], [ 572, 762, 652, 781 ], [ 656, 762, 720, 781 ], [ 724, 762, 746, 781 ], [ 751, 762, 826, 781 ], [ 830, 762, 845, 781 ], [ 850, 762, 872, 781 ], [ 88, 764, 118, 781 ], [ 88, 778, 148, 797 ], [ 152, 778, 183, 797 ], [ 187, 778, 204, 797 ], [ 209, 778, 257, 797 ], [ 261, 778, 276, 797 ], [ 280, 778, 295, 797 ], [ 300, 778, 322, 797 ], [ 363, 778, 427, 797 ], [ 431, 778, 459, 797 ], [ 464, 778, 511, 797 ], [ 515, 778, 530, 797 ], [ 535, 778, 557, 797 ], [ 561, 778, 621, 797 ], [ 626, 778, 705, 797 ], [ 710, 778, 735, 797 ], [ 739, 778, 756, 797 ], [ 761, 778, 824, 797 ], [ 828, 778, 850, 797 ], [ 855, 778, 877, 797 ], [ 326, 780, 358, 797 ], [ 145, 794, 194, 813 ], [ 198, 794, 242, 813 ], [ 247, 794, 259, 813 ], [ 263, 794, 271, 813 ], [ 275, 794, 338, 813 ], [ 343, 794, 378, 813 ], [ 382, 794, 444, 813 ], [ 449, 794, 482, 813 ], [ 486, 794, 523, 813 ], [ 527, 794, 562, 813 ], [ 566, 794, 642, 813 ], [ 646, 794, 697, 813 ], [ 701, 794, 715, 813 ], [ 720, 794, 737, 813 ], [ 741, 794, 785, 813 ], [ 790, 794, 878, 813 ], [ 883, 794, 905, 813 ], [ 88, 796, 141, 813 ], [ 88, 810, 132, 829 ] ]
[ [ 251, 117, 367, 129 ], [ 376, 117, 385, 129 ], [ 286, 132, 367, 144 ], [ 376, 132, 385, 144 ], [ 394, 132, 565, 144 ], [ 574, 132, 583, 144 ], [ 592, 132, 637, 144 ], [ 646, 132, 691, 144 ], [ 700, 132, 744, 144 ], [ 376, 146, 385, 159 ], [ 251, 161, 259, 174 ], [ 214, 176, 223, 189 ], [ 179, 191, 188, 203 ], [ 142, 205, 151, 218 ], [ 88, 268, 116, 286 ], [ 120, 269, 211, 286 ], [ 216, 268, 300, 286 ], [ 305, 268, 329, 286 ], [ 334, 268, 349, 286 ], [ 353, 268, 397, 286 ], [ 402, 268, 480, 286 ], [ 485, 268, 545, 286 ], [ 549, 268, 571, 286 ], [ 576, 268, 629, 286 ], [ 633, 268, 693, 286 ], [ 697, 268, 724, 286 ], [ 728, 268, 750, 286 ], [ 754, 268, 791, 286 ], [ 796, 268, 830, 286 ], [ 835, 268, 870, 286 ], [ 88, 284, 148, 302 ], [ 152, 284, 178, 302 ], [ 183, 284, 213, 302 ], [ 217, 284, 268, 302 ], [ 273, 284, 318, 302 ], [ 322, 284, 330, 302 ], [ 334, 285, 382, 302 ], [ 387, 284, 463, 302 ], [ 468, 284, 512, 302 ], [ 516, 284, 579, 302 ], [ 584, 284, 606, 302 ], [ 610, 284, 668, 302 ], [ 673, 284, 682, 302 ], [ 687, 284, 699, 302 ], [ 704, 284, 767, 302 ], [ 772, 284, 811, 302 ], [ 816, 284, 841, 302 ], [ 845, 284, 909, 302 ], [ 88, 300, 110, 318 ], [ 114, 300, 172, 318 ], [ 176, 300, 238, 318 ], [ 242, 300, 309, 318 ], [ 314, 300, 381, 318 ], [ 385, 300, 428, 318 ], [ 432, 300, 496, 318 ], [ 501, 300, 557, 318 ], [ 562, 300, 570, 318 ], [ 574, 300, 639, 318 ], [ 643, 300, 706, 318 ], [ 711, 300, 746, 318 ], [ 750, 300, 772, 318 ], [ 777, 300, 812, 318 ], [ 816, 300, 840, 318 ], [ 845, 300, 894, 318 ], [ 88, 316, 114, 334 ], [ 118, 316, 140, 334 ], [ 145, 316, 198, 334 ], [ 202, 316, 266, 334 ], [ 271, 316, 298, 334 ], [ 303, 316, 325, 334 ], [ 329, 316, 359, 334 ], [ 364, 316, 412, 334 ], [ 416, 316, 433, 334 ], [ 437, 316, 490, 334 ], [ 495, 316, 530, 334 ], [ 534, 316, 542, 334 ], [ 547, 316, 575, 334 ], [ 579, 316, 640, 334 ], [ 645, 316, 705, 334 ], [ 710, 316, 753, 334 ], [ 757, 316, 823, 334 ], [ 827, 316, 838, 334 ], [ 843, 316, 855, 334 ], [ 859, 316, 881, 334 ], [ 88, 332, 177, 350 ], [ 181, 332, 279, 350 ], [ 284, 332, 298, 350 ], [ 302, 332, 382, 350 ], [ 387, 332, 404, 350 ], [ 408, 332, 497, 350 ], [ 501, 332, 516, 350 ], [ 521, 332, 543, 350 ], [ 547, 332, 599, 350 ], [ 604, 332, 695, 350 ], [ 699, 332, 739, 350 ], [ 744, 332, 776, 350 ], [ 780, 332, 802, 350 ], [ 807, 332, 866, 350 ], [ 871, 332, 897, 350 ], [ 88, 347, 122, 366 ], [ 98, 372, 150, 391 ], [ 154, 372, 192, 391 ], [ 196, 372, 294, 391 ], [ 142, 400, 151, 413 ], [ 161, 415, 268, 427 ], [ 277, 415, 286, 427 ], [ 197, 430, 295, 442 ], [ 304, 430, 313, 442 ], [ 232, 444, 313, 457 ], [ 322, 444, 421, 457 ], [ 232, 459, 295, 472 ], [ 304, 459, 322, 472 ], [ 197, 474, 215, 487 ], [ 197, 489, 259, 501 ], [ 268, 489, 277, 501 ], [ 232, 504, 313, 516 ], [ 322, 504, 439, 516 ], [ 232, 518, 295, 531 ], [ 304, 518, 367, 531 ], [ 197, 533, 215, 546 ], [ 197, 548, 349, 561 ], [ 358, 548, 403, 561 ], [ 197, 563, 286, 575 ], [ 295, 563, 367, 575 ], [ 376, 563, 457, 575 ], [ 161, 578, 169, 590 ], [ 142, 592, 151, 605 ], [ 88, 627, 165, 646 ], [ 169, 627, 248, 646 ], [ 253, 627, 305, 646 ], [ 310, 627, 332, 646 ], [ 336, 628, 440, 645 ], [ 445, 627, 471, 646 ], [ 475, 628, 535, 645 ], [ 540, 627, 623, 646 ], [ 627, 627, 655, 646 ], [ 660, 627, 709, 646 ], [ 713, 627, 741, 646 ], [ 746, 627, 810, 646 ], [ 814, 627, 825, 646 ], [ 830, 627, 852, 646 ], [ 88, 645, 179, 662 ], [ 183, 643, 268, 662 ], [ 272, 643, 320, 662 ], [ 325, 643, 378, 662 ], [ 382, 643, 396, 662 ], [ 401, 643, 409, 662 ], [ 413, 643, 446, 662 ], [ 451, 643, 506, 662 ], [ 510, 643, 554, 662 ], [ 559, 643, 584, 662 ], [ 588, 643, 652, 662 ], [ 656, 643, 670, 662 ], [ 675, 643, 697, 662 ], [ 701, 643, 732, 662 ], [ 737, 643, 752, 662 ], [ 756, 643, 818, 662 ], [ 822, 643, 848, 662 ], [ 853, 643, 884, 662 ], [ 88, 659, 127, 678 ], [ 131, 659, 215, 678 ], [ 220, 659, 290, 678 ], [ 295, 659, 351, 678 ], [ 355, 659, 370, 678 ], [ 375, 659, 414, 678 ], [ 418, 659, 460, 678 ], [ 465, 659, 504, 678 ], [ 508, 659, 590, 678 ], [ 594, 659, 622, 678 ], [ 627, 660, 686, 677 ], [ 691, 659, 763, 678 ], [ 767, 659, 820, 678 ], [ 825, 659, 842, 678 ], [ 846, 659, 890, 678 ], [ 88, 675, 163, 694 ], [ 167, 675, 189, 694 ], [ 194, 675, 244, 694 ], [ 248, 675, 318, 694 ], [ 323, 675, 345, 694 ], [ 349, 676, 440, 693 ], [ 444, 675, 519, 694 ], [ 523, 675, 555, 694 ], [ 560, 675, 591, 694 ], [ 595, 675, 612, 694 ], [ 616, 675, 624, 694 ], [ 629, 675, 673, 694 ], [ 677, 675, 762, 694 ], [ 767, 675, 782, 694 ], [ 786, 675, 848, 694 ], [ 852, 675, 867, 694 ], [ 871, 675, 879, 694 ], [ 88, 691, 138, 710 ], [ 142, 691, 231, 710 ], [ 236, 691, 275, 710 ], [ 279, 691, 316, 710 ], [ 321, 691, 406, 710 ], [ 411, 691, 444, 710 ], [ 448, 691, 463, 710 ], [ 468, 691, 519, 710 ], [ 88, 714, 101, 733 ], [ 105, 714, 165, 733 ], [ 170, 714, 239, 733 ], [ 243, 714, 255, 733 ], [ 260, 714, 313, 733 ], [ 318, 714, 368, 733 ], [ 373, 714, 403, 733 ], [ 407, 714, 479, 733 ], [ 484, 714, 506, 733 ], [ 510, 714, 537, 733 ], [ 542, 714, 608, 733 ], [ 613, 714, 673, 733 ], [ 677, 714, 710, 733 ], [ 715, 714, 752, 733 ], [ 756, 714, 835, 733 ], [ 840, 714, 866, 733 ], [ 88, 731, 158, 749 ], [ 162, 731, 214, 749 ], [ 218, 731, 243, 749 ], [ 248, 731, 285, 749 ], [ 289, 731, 372, 749 ], [ 377, 731, 399, 749 ], [ 404, 732, 485, 749 ], [ 490, 731, 516, 749 ], [ 520, 732, 652, 749 ], [ 656, 731, 743, 749 ], [ 748, 731, 808, 749 ], [ 812, 731, 834, 749 ], [ 839, 731, 890, 749 ], [ 88, 746, 115, 765 ], [ 119, 746, 167, 765 ], [ 172, 746, 189, 765 ], [ 193, 746, 262, 765 ], [ 267, 746, 292, 765 ], [ 297, 746, 347, 765 ], [ 351, 746, 417, 765 ], [ 422, 746, 449, 765 ], [ 453, 746, 501, 765 ], [ 506, 746, 523, 765 ], [ 527, 746, 579, 765 ], [ 584, 746, 630, 765 ], [ 634, 746, 660, 765 ], [ 665, 746, 724, 765 ], [ 729, 746, 754, 765 ], [ 758, 746, 776, 765 ], [ 780, 746, 845, 765 ], [ 850, 746, 878, 765 ], [ 88, 764, 118, 781 ], [ 122, 762, 182, 781 ], [ 187, 762, 254, 781 ], [ 258, 762, 289, 781 ], [ 293, 762, 308, 781 ], [ 312, 762, 352, 781 ], [ 356, 762, 382, 781 ], [ 387, 762, 447, 781 ], [ 451, 762, 465, 781 ], [ 470, 762, 487, 781 ], [ 491, 762, 528, 781 ], [ 533, 762, 567, 781 ], [ 572, 762, 652, 781 ], [ 656, 762, 720, 781 ], [ 724, 762, 746, 781 ], [ 751, 762, 826, 781 ], [ 830, 762, 845, 781 ], [ 850, 762, 872, 781 ], [ 88, 778, 148, 797 ], [ 152, 778, 183, 797 ], [ 187, 778, 204, 797 ], [ 209, 778, 257, 797 ], [ 261, 778, 276, 797 ], [ 280, 778, 295, 797 ], [ 300, 778, 322, 797 ], [ 326, 780, 358, 797 ], [ 363, 778, 427, 797 ], [ 431, 778, 459, 797 ], [ 464, 778, 511, 797 ], [ 515, 778, 530, 797 ], [ 535, 778, 557, 797 ], [ 561, 778, 621, 797 ], [ 626, 778, 705, 797 ], [ 710, 778, 735, 797 ], [ 739, 778, 756, 797 ], [ 761, 778, 824, 797 ], [ 828, 778, 850, 797 ], [ 855, 778, 877, 797 ], [ 88, 796, 141, 813 ], [ 145, 794, 194, 813 ], [ 198, 794, 242, 813 ], [ 247, 794, 259, 813 ], [ 263, 794, 271, 813 ], [ 275, 794, 338, 813 ], [ 343, 794, 378, 813 ], [ 382, 794, 444, 813 ], [ 449, 794, 482, 813 ], [ 486, 794, 523, 813 ], [ 527, 794, 562, 813 ], [ 566, 794, 642, 813 ], [ 646, 794, 697, 813 ], [ 701, 794, 715, 813 ], [ 720, 794, 737, 813 ], [ 741, 794, 785, 813 ], [ 790, 794, 878, 813 ], [ 883, 794, 905, 813 ], [ 88, 810, 132, 829 ] ]
Agriculture, Commerce, Defense, Energy, Health and Human Services, Homeland Security, Transportation, Treasury, and Veterans Affairs. NIST would like to acknowledge the specific contributions to this volume, during Version 1, and/or Version 2 activities, by the following NBD-PWG members: Zane Harvey Mark Underwood David Boyd QuantumS3 Krypton Brothers InCadence Strategic Solutions Synchrony Financial Haiping Luo Frank Farance Gregor von Lasewski Department of the Treasury Consultant Indiana University Gary Mazzaferro Geoffrey Fox Timothy Zimmerlin Russell Reinsch Indiana University Consultant Center for Government Nancy Grady Interoperability SAIC Arnab Roy Fujitsu
Agriculture, Commerce, Defense, Energy, Health and Human Services, Homeland Security, Transportation, Treasury, and Veterans Affairs. NIST would like to acknowledge the specific contributions to this volume, during Version 1, and/or Version 2 activities, by the following NBD-PWG members: David Boyd InCadence Strategic Solutions Frank Farance Consultant Geoffrey Fox Indiana University Nancy Grady SAIC Zane Harvey QuantumS3 Haiping Luo Department of the Treasury Gary Mazzaferro Russell Reinsch Center for Government Interoperability Arnab Roy Fujitsu Mark Underwood Krypton Brothers Synchrony Financial Gregor von Lasewski Indiana University Timothy Zimmerlin Consultant
0.625082
[ 0, 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, 42, 43, 47, 48, 49, 54, 55, 63, 68, 69, 74, 75, 80, 81, 83, 38, 39, 44, 52, 53, 59, 60, 61, 62, 66, 67, 72, 73, 77, 78, 79, 82, 84, 85, 86, 40, 41, 45, 46, 50, 51, 56, 57, 58, 64, 65, 70, 71, 76 ]
M0671_v1_0731201855.docx
task-1430-880
4
[ [ 88, 88, 175, 107 ], [ 180, 88, 263, 107 ], [ 267, 88, 331, 107 ], [ 335, 88, 391, 107 ], [ 396, 88, 444, 107 ], [ 449, 88, 475, 107 ], [ 479, 88, 532, 107 ], [ 536, 88, 602, 107 ], [ 606, 88, 681, 107 ], [ 686, 88, 750, 107 ], [ 754, 88, 865, 107 ], [ 88, 104, 156, 123 ], [ 161, 104, 187, 123 ], [ 191, 104, 255, 123 ], [ 260, 104, 315, 123 ], [ 88, 128, 128, 146 ], [ 132, 128, 177, 146 ], [ 182, 128, 209, 146 ], [ 213, 128, 227, 146 ], [ 232, 128, 326, 146 ], [ 331, 128, 353, 146 ], [ 357, 128, 413, 146 ], [ 418, 128, 513, 146 ], [ 517, 128, 531, 146 ], [ 536, 128, 562, 146 ], [ 566, 128, 624, 146 ], [ 629, 128, 676, 146 ], [ 680, 128, 737, 146 ], [ 742, 128, 756, 146 ], [ 760, 128, 806, 146 ], [ 810, 128, 867, 146 ], [ 872, 128, 881, 146 ], [ 88, 144, 157, 162 ], [ 162, 144, 180, 162 ], [ 184, 144, 206, 162 ], [ 211, 144, 281, 162 ], [ 285, 144, 369, 162 ], [ 374, 144, 444, 162 ], [ 371, 168, 406, 185 ], [ 410, 168, 462, 185 ], [ 646, 168, 686, 185 ], [ 690, 168, 772, 185 ], [ 97, 182, 138, 200 ], [ 142, 182, 179, 200 ], [ 371, 183, 448, 199 ], [ 646, 183, 699, 199 ], [ 703, 183, 761, 199 ], [ 97, 198, 167, 213 ], [ 171, 198, 230, 213 ], [ 235, 198, 295, 213 ], [ 646, 198, 715, 213 ], [ 719, 198, 782, 213 ], [ 371, 203, 427, 221 ], [ 431, 203, 459, 221 ], [ 97, 218, 140, 235 ], [ 144, 218, 201, 235 ], [ 646, 218, 697, 235 ], [ 701, 218, 726, 235 ], [ 730, 218, 794, 235 ], [ 371, 219, 449, 234 ], [ 453, 219, 466, 234 ], [ 470, 219, 490, 234 ], [ 494, 219, 553, 234 ], [ 97, 233, 168, 249 ], [ 646, 233, 697, 249 ], [ 701, 233, 769, 249 ], [ 371, 239, 407, 256 ], [ 411, 239, 493, 256 ], [ 97, 253, 158, 271 ], [ 162, 253, 189, 271 ], [ 646, 253, 706, 271 ], [ 710, 253, 785, 271 ], [ 371, 268, 421, 285 ], [ 425, 268, 480, 285 ], [ 97, 269, 147, 284 ], [ 152, 269, 219, 284 ], [ 646, 269, 718, 284 ], [ 371, 283, 415, 299 ], [ 419, 283, 438, 299 ], [ 442, 283, 523, 299 ], [ 97, 289, 141, 306 ], [ 145, 289, 190, 306 ], [ 371, 298, 474, 313 ], [ 97, 304, 131, 319 ], [ 371, 318, 416, 335 ], [ 420, 318, 448, 335 ], [ 371, 333, 417, 348 ] ]
[ [ 88, 88, 175, 107 ], [ 180, 88, 263, 107 ], [ 267, 88, 331, 107 ], [ 335, 88, 391, 107 ], [ 396, 88, 444, 107 ], [ 449, 88, 475, 107 ], [ 479, 88, 532, 107 ], [ 536, 88, 602, 107 ], [ 606, 88, 681, 107 ], [ 686, 88, 750, 107 ], [ 754, 88, 865, 107 ], [ 88, 104, 156, 123 ], [ 161, 104, 187, 123 ], [ 191, 104, 255, 123 ], [ 260, 104, 315, 123 ], [ 88, 128, 128, 146 ], [ 132, 128, 177, 146 ], [ 182, 128, 209, 146 ], [ 213, 128, 227, 146 ], [ 232, 128, 326, 146 ], [ 331, 128, 353, 146 ], [ 357, 128, 413, 146 ], [ 418, 128, 513, 146 ], [ 517, 128, 531, 146 ], [ 536, 128, 562, 146 ], [ 566, 128, 624, 146 ], [ 629, 128, 676, 146 ], [ 680, 128, 737, 146 ], [ 742, 128, 756, 146 ], [ 760, 128, 806, 146 ], [ 810, 128, 867, 146 ], [ 872, 128, 881, 146 ], [ 88, 144, 157, 162 ], [ 162, 144, 180, 162 ], [ 184, 144, 206, 162 ], [ 211, 144, 281, 162 ], [ 285, 144, 369, 162 ], [ 374, 144, 444, 162 ], [ 97, 182, 138, 200 ], [ 142, 182, 179, 200 ], [ 97, 198, 167, 213 ], [ 171, 198, 230, 213 ], [ 235, 198, 295, 213 ], [ 97, 218, 140, 235 ], [ 144, 218, 201, 235 ], [ 97, 233, 168, 249 ], [ 97, 253, 158, 271 ], [ 162, 253, 189, 271 ], [ 97, 269, 147, 284 ], [ 152, 269, 219, 284 ], [ 97, 289, 141, 306 ], [ 145, 289, 190, 306 ], [ 97, 304, 131, 319 ], [ 371, 168, 406, 185 ], [ 410, 168, 462, 185 ], [ 371, 183, 448, 199 ], [ 371, 203, 427, 221 ], [ 431, 203, 459, 221 ], [ 371, 219, 449, 234 ], [ 453, 219, 466, 234 ], [ 470, 219, 490, 234 ], [ 494, 219, 553, 234 ], [ 371, 239, 407, 256 ], [ 411, 239, 493, 256 ], [ 371, 268, 421, 285 ], [ 425, 268, 480, 285 ], [ 371, 283, 415, 299 ], [ 419, 283, 438, 299 ], [ 442, 283, 523, 299 ], [ 371, 298, 474, 313 ], [ 371, 318, 416, 335 ], [ 420, 318, 448, 335 ], [ 371, 333, 417, 348 ], [ 646, 168, 686, 185 ], [ 690, 168, 772, 185 ], [ 646, 183, 699, 199 ], [ 703, 183, 761, 199 ], [ 646, 198, 715, 213 ], [ 719, 198, 782, 213 ], [ 646, 218, 697, 235 ], [ 701, 218, 726, 235 ], [ 730, 218, 794, 235 ], [ 646, 233, 697, 249 ], [ 701, 233, 769, 249 ], [ 646, 253, 706, 271 ], [ 710, 253, 785, 271 ], [ 646, 269, 718, 284 ] ]
Naïve Bayes Fast Low Scales over vary large datasets. Speed at the expense of accuracy Neural Network Slow Low Centering and Scaling, Remove Highly Correlated Predictors Fast Low Scales over medium size K Nearest Neighbors datasets Ridge Fast High Centering and Scaling Regression Nearest Fast Medium Shrunken Centroids MARS Fast High Slow Low Accurate Bagged / Boosted Trees Unsupervised learning problems do not have labeled data and can be classified into two subgroups: clustering algorithms and dimensionality reduction techniques. Clustering algorithms attempt to find underlying structure in the data by determining groups of similar data. Dimensionality reduction algorithms are typically used for preprocessing of datasets prior to the application of other algorithms. lists common clustering Table 10 algorithms, and lists common dimensionality reduction techniques. Table 11 Table 10. Unsupervised Clustering Algorithms Name Pre-Processing Interpretability Notes Missing value sensitivity, Medium Scales over large datasets for K -means Centering and Scaling clustering tasks, must specify number of clusters (k) Must specify number of Fuzzy c-means clusters (k) Specify k for probability tasks Must specify number of Gaussian clusters (k) Must specify number of Hierarchical clusters (k) DBSCAN Do not have to specify number of clusters (k) While technically dimension reduction may be a preprocessing technique, which transforms predictors, usually driven for computational reasons, some consider dimensionality reduction (or data reduction) techniques a class of unsupervised algorithms because they are also a solution for unlabeled data.
Naïve Bayes Fast Low Scales over vary large datasets. Speed at the expense of accuracy Neural Network Slow Low Centering and Scaling, Remove Highly Correlated Predictors K Nearest Neighbors Fast Low Scales over medium size datasets Ridge Regression Fast High Centering and Scaling Nearest Shrunken Centroids Fast Medium MARS Fast High Bagged / Boosted Trees Slow Low Accurate Unsupervised learning problems do not have labeled data and can be classified into two subgroups: clustering algorithms and dimensionality reduction techniques. Clustering algorithms attempt to find underlying structure in the data by determining groups of similar data. Dimensionality reduction algorithms are typically used for preprocessing of datasets prior to the application of other algorithms. Table 10 lists common clustering algorithms, and Table 11 lists common dimensionality reduction techniques. Table 10. Unsupervised Clustering Algorithms Name Pre-Processing Interpretability Notes K -means Missing value sensitivity, Centering and Scaling Medium Scales over large datasets for clustering tasks, must specify number of clusters (k) Fuzzy c-means Must specify number of clusters (k) Gaussian Specify k for probability tasks Must specify number of clusters (k) Hierarchical Must specify number of clusters (k) DBSCAN Do not have to specify number of clusters (k) While technically dimension reduction may be a preprocessing technique, which transforms predictors, usually driven for computational reasons, some consider dimensionality reduction (or data reduction) techniques a class of unsupervised algorithms because they are also a solution for unlabeled data.
0.80937
[ 0, 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, 32, 33, 34, 26, 27, 28, 29, 30, 31, 35, 36, 42, 37, 38, 39, 40, 41, 43, 46, 47, 44, 45, 48, 49, 50, 54, 55, 56, 57, 51, 52, 53, 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, 115, 116, 112, 113, 114, 117, 118, 124, 125, 119, 120, 121, 122, 123, 126, 127, 128, 129, 130, 131, 132, 133, 134, 144, 145, 135, 136, 137, 146, 147, 148, 138, 139, 140, 141, 142, 143, 149, 150, 151, 152, 153, 154, 155, 156, 161, 162, 157, 158, 159, 160, 163, 164, 174, 165, 166, 167, 168, 169, 170, 171, 172, 173, 175, 176, 181, 177, 178, 179, 180, 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 ]
M0671_v1_0731201855.docx
task-1430-880
32
[ [ 97, 90, 137, 108 ], [ 141, 90, 182, 108 ], [ 230, 90, 257, 107 ], [ 347, 90, 377, 107 ], [ 719, 90, 761, 107 ], [ 765, 90, 794, 107 ], [ 798, 90, 827, 107 ], [ 831, 90, 864, 107 ], [ 719, 104, 775, 121 ], [ 779, 104, 819, 121 ], [ 823, 104, 835, 121 ], [ 839, 104, 859, 121 ], [ 719, 119, 771, 136 ], [ 776, 119, 789, 136 ], [ 793, 119, 851, 136 ], [ 97, 135, 145, 152 ], [ 149, 135, 210, 152 ], [ 230, 135, 264, 151 ], [ 347, 135, 377, 151 ], [ 503, 135, 567, 151 ], [ 571, 135, 594, 151 ], [ 599, 135, 652, 151 ], [ 503, 149, 557, 166 ], [ 561, 149, 606, 166 ], [ 610, 149, 679, 166 ], [ 503, 164, 569, 180 ], [ 230, 179, 257, 196 ], [ 347, 179, 377, 196 ], [ 719, 179, 761, 196 ], [ 765, 179, 794, 196 ], [ 798, 179, 851, 196 ], [ 855, 179, 881, 196 ], [ 97, 180, 110, 197 ], [ 114, 180, 168, 197 ], [ 97, 194, 169, 212 ], [ 719, 194, 771, 211 ], [ 97, 210, 138, 228 ], [ 230, 210, 257, 227 ], [ 347, 210, 379, 227 ], [ 503, 210, 567, 227 ], [ 571, 210, 594, 227 ], [ 599, 210, 648, 227 ], [ 97, 225, 173, 242 ], [ 97, 240, 151, 258 ], [ 230, 240, 257, 257 ], [ 347, 240, 402, 257 ], [ 97, 255, 166, 272 ], [ 97, 270, 166, 287 ], [ 97, 285, 146, 303 ], [ 230, 285, 257, 302 ], [ 347, 285, 379, 302 ], [ 230, 324, 264, 341 ], [ 347, 324, 377, 341 ], [ 719, 324, 778, 341 ], [ 97, 325, 149, 342 ], [ 153, 325, 158, 342 ], [ 97, 339, 153, 357 ], [ 157, 339, 196, 357 ], [ 88, 393, 187, 411 ], [ 191, 393, 250, 411 ], [ 255, 393, 321, 411 ], [ 326, 393, 344, 411 ], [ 348, 393, 371, 411 ], [ 376, 393, 410, 411 ], [ 414, 393, 466, 411 ], [ 471, 393, 501, 411 ], [ 505, 393, 531, 411 ], [ 536, 393, 561, 411 ], [ 565, 393, 582, 411 ], [ 587, 393, 654, 411 ], [ 659, 393, 687, 411 ], [ 691, 393, 718, 411 ], [ 723, 393, 802, 411 ], [ 806, 393, 877, 411 ], [ 88, 409, 165, 427 ], [ 169, 409, 195, 427 ], [ 200, 409, 307, 427 ], [ 311, 409, 379, 427 ], [ 383, 409, 465, 427 ], [ 469, 409, 544, 427 ], [ 549, 409, 625, 427 ], [ 630, 409, 684, 427 ], [ 688, 409, 702, 427 ], [ 707, 409, 736, 427 ], [ 740, 409, 818, 427 ], [ 823, 409, 885, 427 ], [ 890, 409, 904, 427 ], [ 88, 425, 110, 443 ], [ 114, 425, 144, 443 ], [ 149, 425, 167, 443 ], [ 171, 425, 258, 443 ], [ 262, 425, 311, 443 ], [ 316, 425, 331, 443 ], [ 335, 425, 385, 443 ], [ 390, 425, 424, 443 ], [ 429, 425, 540, 443 ], [ 544, 425, 612, 443 ], [ 617, 425, 693, 443 ], [ 698, 425, 720, 443 ], [ 724, 425, 787, 443 ], [ 792, 425, 825, 443 ], [ 829, 425, 850, 443 ], [ 88, 441, 188, 459 ], [ 192, 441, 207, 459 ], [ 212, 441, 269, 459 ], [ 273, 441, 308, 459 ], [ 312, 441, 327, 459 ], [ 331, 441, 353, 459 ], [ 358, 441, 437, 459 ], [ 442, 441, 457, 459 ], [ 461, 441, 498, 459 ], [ 503, 441, 584, 459 ], [ 658, 441, 687, 459 ], [ 691, 441, 754, 459 ], [ 758, 441, 830, 459 ], [ 589, 442, 631, 460 ], [ 635, 442, 653, 460 ], [ 88, 457, 169, 475 ], [ 174, 457, 200, 475 ], [ 273, 457, 302, 475 ], [ 307, 457, 369, 475 ], [ 374, 457, 481, 475 ], [ 485, 457, 553, 475 ], [ 558, 457, 639, 475 ], [ 204, 458, 246, 476 ], [ 251, 458, 269, 476 ], [ 88, 504, 132, 524 ], [ 136, 504, 159, 524 ], [ 163, 504, 268, 524 ], [ 273, 504, 354, 524 ], [ 358, 504, 445, 524 ], [ 134, 534, 179, 553 ], [ 284, 534, 399, 553 ], [ 512, 534, 632, 553 ], [ 776, 534, 819, 553 ], [ 232, 560, 285, 577 ], [ 289, 560, 324, 577 ], [ 329, 560, 400, 577 ], [ 468, 560, 523, 577 ], [ 694, 560, 735, 577 ], [ 739, 560, 768, 577 ], [ 772, 560, 805, 577 ], [ 809, 560, 861, 577 ], [ 865, 560, 884, 577 ], [ 97, 561, 110, 578 ], [ 114, 561, 164, 578 ], [ 232, 575, 297, 592 ], [ 301, 575, 324, 592 ], [ 329, 575, 378, 592 ], [ 694, 575, 758, 592 ], [ 762, 575, 799, 592 ], [ 803, 575, 835, 592 ], [ 839, 575, 886, 592 ], [ 694, 589, 743, 606 ], [ 748, 589, 761, 606 ], [ 765, 589, 815, 606 ], [ 819, 589, 838, 606 ], [ 694, 605, 727, 622 ], [ 731, 605, 778, 622 ], [ 782, 605, 832, 622 ], [ 837, 605, 850, 622 ], [ 97, 606, 139, 623 ], [ 143, 606, 200, 623 ], [ 694, 620, 743, 636 ], [ 747, 620, 766, 636 ], [ 232, 635, 282, 652 ], [ 286, 635, 294, 652 ], [ 299, 635, 318, 652 ], [ 322, 635, 394, 652 ], [ 397, 635, 430, 652 ], [ 694, 635, 727, 652 ], [ 731, 635, 778, 652 ], [ 782, 635, 832, 652 ], [ 837, 635, 850, 652 ], [ 97, 636, 162, 653 ], [ 694, 650, 743, 667 ], [ 747, 650, 766, 667 ], [ 694, 668, 727, 685 ], [ 731, 668, 778, 685 ], [ 782, 668, 832, 685 ], [ 837, 668, 850, 685 ], [ 97, 669, 185, 686 ], [ 694, 683, 743, 700 ], [ 747, 683, 766, 700 ], [ 97, 702, 164, 720 ], [ 694, 702, 713, 719 ], [ 718, 702, 738, 719 ], [ 743, 702, 773, 719 ], [ 777, 702, 790, 719 ], [ 794, 702, 841, 719 ], [ 846, 702, 895, 719 ], [ 694, 716, 707, 733 ], [ 711, 716, 761, 733 ], [ 765, 716, 784, 733 ], [ 88, 836, 132, 854 ], [ 136, 836, 215, 854 ], [ 219, 836, 294, 854 ], [ 299, 836, 367, 854 ], [ 372, 836, 402, 854 ], [ 407, 836, 424, 854 ], [ 428, 836, 436, 854 ], [ 441, 836, 541, 854 ], [ 545, 836, 620, 854 ], [ 624, 836, 668, 854 ], [ 672, 836, 749, 854 ], [ 754, 836, 830, 854 ], [ 835, 836, 887, 854 ], [ 88, 851, 134, 870 ], [ 138, 851, 159, 870 ], [ 164, 851, 266, 870 ], [ 271, 851, 330, 870 ], [ 334, 851, 372, 870 ], [ 376, 851, 438, 870 ], [ 442, 851, 549, 870 ], [ 553, 851, 621, 870 ], [ 626, 851, 647, 870 ], [ 651, 851, 681, 870 ], [ 685, 851, 759, 870 ], [ 764, 851, 841, 870 ], [ 845, 851, 853, 870 ], [ 858, 851, 893, 870 ], [ 88, 867, 103, 886 ], [ 107, 867, 202, 886 ], [ 207, 867, 283, 886 ], [ 288, 867, 345, 886 ], [ 349, 867, 381, 886 ], [ 385, 867, 407, 886 ], [ 411, 867, 440, 886 ], [ 445, 867, 453, 886 ], [ 457, 867, 515, 886 ], [ 520, 867, 541, 886 ], [ 545, 867, 615, 886 ], [ 620, 867, 654, 886 ] ]
[ [ 97, 90, 137, 108 ], [ 141, 90, 182, 108 ], [ 230, 90, 257, 107 ], [ 347, 90, 377, 107 ], [ 719, 90, 761, 107 ], [ 765, 90, 794, 107 ], [ 798, 90, 827, 107 ], [ 831, 90, 864, 107 ], [ 719, 104, 775, 121 ], [ 779, 104, 819, 121 ], [ 823, 104, 835, 121 ], [ 839, 104, 859, 121 ], [ 719, 119, 771, 136 ], [ 776, 119, 789, 136 ], [ 793, 119, 851, 136 ], [ 97, 135, 145, 152 ], [ 149, 135, 210, 152 ], [ 230, 135, 264, 151 ], [ 347, 135, 377, 151 ], [ 503, 135, 567, 151 ], [ 571, 135, 594, 151 ], [ 599, 135, 652, 151 ], [ 503, 149, 557, 166 ], [ 561, 149, 606, 166 ], [ 610, 149, 679, 166 ], [ 503, 164, 569, 180 ], [ 97, 180, 110, 197 ], [ 114, 180, 168, 197 ], [ 97, 194, 169, 212 ], [ 230, 179, 257, 196 ], [ 347, 179, 377, 196 ], [ 719, 179, 761, 196 ], [ 765, 179, 794, 196 ], [ 798, 179, 851, 196 ], [ 855, 179, 881, 196 ], [ 719, 194, 771, 211 ], [ 97, 210, 138, 228 ], [ 97, 225, 173, 242 ], [ 230, 210, 257, 227 ], [ 347, 210, 379, 227 ], [ 503, 210, 567, 227 ], [ 571, 210, 594, 227 ], [ 599, 210, 648, 227 ], [ 97, 240, 151, 258 ], [ 97, 255, 166, 272 ], [ 97, 270, 166, 287 ], [ 230, 240, 257, 257 ], [ 347, 240, 402, 257 ], [ 97, 285, 146, 303 ], [ 230, 285, 257, 302 ], [ 347, 285, 379, 302 ], [ 97, 325, 149, 342 ], [ 153, 325, 158, 342 ], [ 97, 339, 153, 357 ], [ 157, 339, 196, 357 ], [ 230, 324, 264, 341 ], [ 347, 324, 377, 341 ], [ 719, 324, 778, 341 ], [ 88, 393, 187, 411 ], [ 191, 393, 250, 411 ], [ 255, 393, 321, 411 ], [ 326, 393, 344, 411 ], [ 348, 393, 371, 411 ], [ 376, 393, 410, 411 ], [ 414, 393, 466, 411 ], [ 471, 393, 501, 411 ], [ 505, 393, 531, 411 ], [ 536, 393, 561, 411 ], [ 565, 393, 582, 411 ], [ 587, 393, 654, 411 ], [ 659, 393, 687, 411 ], [ 691, 393, 718, 411 ], [ 723, 393, 802, 411 ], [ 806, 393, 877, 411 ], [ 88, 409, 165, 427 ], [ 169, 409, 195, 427 ], [ 200, 409, 307, 427 ], [ 311, 409, 379, 427 ], [ 383, 409, 465, 427 ], [ 469, 409, 544, 427 ], [ 549, 409, 625, 427 ], [ 630, 409, 684, 427 ], [ 688, 409, 702, 427 ], [ 707, 409, 736, 427 ], [ 740, 409, 818, 427 ], [ 823, 409, 885, 427 ], [ 890, 409, 904, 427 ], [ 88, 425, 110, 443 ], [ 114, 425, 144, 443 ], [ 149, 425, 167, 443 ], [ 171, 425, 258, 443 ], [ 262, 425, 311, 443 ], [ 316, 425, 331, 443 ], [ 335, 425, 385, 443 ], [ 390, 425, 424, 443 ], [ 429, 425, 540, 443 ], [ 544, 425, 612, 443 ], [ 617, 425, 693, 443 ], [ 698, 425, 720, 443 ], [ 724, 425, 787, 443 ], [ 792, 425, 825, 443 ], [ 829, 425, 850, 443 ], [ 88, 441, 188, 459 ], [ 192, 441, 207, 459 ], [ 212, 441, 269, 459 ], [ 273, 441, 308, 459 ], [ 312, 441, 327, 459 ], [ 331, 441, 353, 459 ], [ 358, 441, 437, 459 ], [ 442, 441, 457, 459 ], [ 461, 441, 498, 459 ], [ 503, 441, 584, 459 ], [ 589, 442, 631, 460 ], [ 635, 442, 653, 460 ], [ 658, 441, 687, 459 ], [ 691, 441, 754, 459 ], [ 758, 441, 830, 459 ], [ 88, 457, 169, 475 ], [ 174, 457, 200, 475 ], [ 204, 458, 246, 476 ], [ 251, 458, 269, 476 ], [ 273, 457, 302, 475 ], [ 307, 457, 369, 475 ], [ 374, 457, 481, 475 ], [ 485, 457, 553, 475 ], [ 558, 457, 639, 475 ], [ 88, 504, 132, 524 ], [ 136, 504, 159, 524 ], [ 163, 504, 268, 524 ], [ 273, 504, 354, 524 ], [ 358, 504, 445, 524 ], [ 134, 534, 179, 553 ], [ 284, 534, 399, 553 ], [ 512, 534, 632, 553 ], [ 776, 534, 819, 553 ], [ 97, 561, 110, 578 ], [ 114, 561, 164, 578 ], [ 232, 560, 285, 577 ], [ 289, 560, 324, 577 ], [ 329, 560, 400, 577 ], [ 232, 575, 297, 592 ], [ 301, 575, 324, 592 ], [ 329, 575, 378, 592 ], [ 468, 560, 523, 577 ], [ 694, 560, 735, 577 ], [ 739, 560, 768, 577 ], [ 772, 560, 805, 577 ], [ 809, 560, 861, 577 ], [ 865, 560, 884, 577 ], [ 694, 575, 758, 592 ], [ 762, 575, 799, 592 ], [ 803, 575, 835, 592 ], [ 839, 575, 886, 592 ], [ 694, 589, 743, 606 ], [ 748, 589, 761, 606 ], [ 765, 589, 815, 606 ], [ 819, 589, 838, 606 ], [ 97, 606, 139, 623 ], [ 143, 606, 200, 623 ], [ 694, 605, 727, 622 ], [ 731, 605, 778, 622 ], [ 782, 605, 832, 622 ], [ 837, 605, 850, 622 ], [ 694, 620, 743, 636 ], [ 747, 620, 766, 636 ], [ 97, 636, 162, 653 ], [ 232, 635, 282, 652 ], [ 286, 635, 294, 652 ], [ 299, 635, 318, 652 ], [ 322, 635, 394, 652 ], [ 397, 635, 430, 652 ], [ 694, 635, 727, 652 ], [ 731, 635, 778, 652 ], [ 782, 635, 832, 652 ], [ 837, 635, 850, 652 ], [ 694, 650, 743, 667 ], [ 747, 650, 766, 667 ], [ 97, 669, 185, 686 ], [ 694, 668, 727, 685 ], [ 731, 668, 778, 685 ], [ 782, 668, 832, 685 ], [ 837, 668, 850, 685 ], [ 694, 683, 743, 700 ], [ 747, 683, 766, 700 ], [ 97, 702, 164, 720 ], [ 694, 702, 713, 719 ], [ 718, 702, 738, 719 ], [ 743, 702, 773, 719 ], [ 777, 702, 790, 719 ], [ 794, 702, 841, 719 ], [ 846, 702, 895, 719 ], [ 694, 716, 707, 733 ], [ 711, 716, 761, 733 ], [ 765, 716, 784, 733 ], [ 88, 836, 132, 854 ], [ 136, 836, 215, 854 ], [ 219, 836, 294, 854 ], [ 299, 836, 367, 854 ], [ 372, 836, 402, 854 ], [ 407, 836, 424, 854 ], [ 428, 836, 436, 854 ], [ 441, 836, 541, 854 ], [ 545, 836, 620, 854 ], [ 624, 836, 668, 854 ], [ 672, 836, 749, 854 ], [ 754, 836, 830, 854 ], [ 835, 836, 887, 854 ], [ 88, 851, 134, 870 ], [ 138, 851, 159, 870 ], [ 164, 851, 266, 870 ], [ 271, 851, 330, 870 ], [ 334, 851, 372, 870 ], [ 376, 851, 438, 870 ], [ 442, 851, 549, 870 ], [ 553, 851, 621, 870 ], [ 626, 851, 647, 870 ], [ 651, 851, 681, 870 ], [ 685, 851, 759, 870 ], [ 764, 851, 841, 870 ], [ 845, 851, 853, 870 ], [ 858, 851, 893, 870 ], [ 88, 867, 103, 886 ], [ 107, 867, 202, 886 ], [ 207, 867, 283, 886 ], [ 288, 867, 345, 886 ], [ 349, 867, 381, 886 ], [ 385, 867, 407, 886 ], [ 411, 867, 440, 886 ], [ 445, 867, 453, 886 ], [ 457, 867, 515, 886 ], [ 520, 867, 541, 886 ], [ 545, 867, 615, 886 ], [ 620, 867, 654, 886 ] ]
Foundations Treasure Hunt On this page you will find the age ranges for the categories used for developmental indicators (infants, younger toddlers, older toddlers, younger preschoolers, and older preschoolers) (Hint – look in pages 1-7!) : _____ On this page you will find a text box that summarizes the intended uses for Foundations (Hint – look in pages 1-7!): _____ On this page you will find a summary of the document’s organization and guidance on how to think about developmental domains and their overlap (Hint – look in pages 1-7!): _____ Where does the document list how goals and developmental indicators should and should not be used? (Hint – look in pages 1-7!): _____ On what pages of Foundations are the subdomains and goals for each of the five domains listed? (Hint – look beyond pages 1-7!): _____
Foundations Treasure Hunt On this page you will find the age ranges for the categories used for developmental indicators (infants, younger toddlers, older toddlers, younger preschoolers, and older preschoolers) (Hint – look in pages 1-7!) : _____ On this page you will find a text box that summarizes the intended uses for Foundations (Hint – look in pages 1-7!): _____ On this page you will find a summary of the document’s organization and guidance on how to think about developmental domains and their overlap (Hint – look in pages 1-7!): _____ Where does the document list how goals and developmental indicators should and should not be used? (Hint – look in pages 1-7!): _____ On what pages of Foundations are the subdomains and goals for each of the five domains listed? (Hint – look beyond pages 1-7!): _____
1
[ 0, 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 ]
M1%20Treasure%20Hunt_0.docx
task-1430-942
0
[ [ 352, 94, 486, 115 ], [ 492, 94, 587, 115 ], [ 593, 94, 647, 115 ], [ 176, 192, 197, 206 ], [ 201, 192, 228, 206 ], [ 232, 192, 268, 206 ], [ 272, 192, 299, 206 ], [ 303, 192, 328, 206 ], [ 332, 192, 361, 206 ], [ 365, 192, 389, 206 ], [ 393, 192, 419, 206 ], [ 423, 192, 472, 206 ], [ 476, 192, 498, 206 ], [ 502, 192, 526, 206 ], [ 530, 192, 606, 206 ], [ 610, 192, 645, 206 ], [ 649, 192, 670, 206 ], [ 674, 192, 784, 206 ], [ 788, 192, 860, 206 ], [ 176, 209, 236, 223 ], [ 240, 209, 300, 223 ], [ 305, 209, 370, 223 ], [ 374, 209, 412, 223 ], [ 416, 209, 482, 223 ], [ 485, 209, 546, 223 ], [ 550, 209, 648, 223 ], [ 652, 209, 680, 223 ], [ 684, 209, 722, 223 ], [ 726, 209, 826, 223 ], [ 830, 209, 866, 223 ], [ 870, 209, 879, 223 ], [ 176, 226, 207, 240 ], [ 211, 226, 225, 240 ], [ 229, 226, 272, 240 ], [ 276, 226, 311, 240 ], [ 315, 226, 319, 240 ], [ 328, 226, 372, 240 ], [ 176, 276, 197, 290 ], [ 201, 276, 228, 290 ], [ 232, 276, 268, 290 ], [ 272, 276, 299, 290 ], [ 303, 276, 328, 290 ], [ 332, 276, 361, 290 ], [ 365, 276, 374, 290 ], [ 377, 276, 406, 290 ], [ 410, 276, 437, 290 ], [ 441, 276, 471, 290 ], [ 475, 276, 562, 290 ], [ 567, 276, 591, 290 ], [ 595, 276, 661, 290 ], [ 665, 276, 697, 290 ], [ 702, 276, 723, 290 ], [ 727, 276, 818, 290 ], [ 822, 276, 858, 290 ], [ 862, 276, 871, 290 ], [ 176, 293, 207, 307 ], [ 211, 293, 225, 307 ], [ 229, 293, 272, 307 ], [ 276, 293, 315, 307 ], [ 324, 293, 368, 307 ], [ 176, 344, 197, 358 ], [ 201, 344, 228, 358 ], [ 232, 344, 268, 358 ], [ 272, 344, 299, 358 ], [ 303, 344, 328, 358 ], [ 332, 344, 361, 358 ], [ 365, 344, 374, 358 ], [ 377, 344, 446, 358 ], [ 450, 344, 465, 358 ], [ 469, 344, 493, 358 ], [ 497, 344, 583, 358 ], [ 588, 344, 679, 358 ], [ 683, 344, 710, 358 ], [ 715, 344, 780, 358 ], [ 784, 344, 804, 358 ], [ 808, 344, 839, 358 ], [ 843, 344, 859, 358 ], [ 176, 361, 213, 375 ], [ 217, 361, 260, 375 ], [ 264, 361, 374, 375 ], [ 379, 361, 441, 375 ], [ 445, 361, 473, 375 ], [ 477, 361, 512, 375 ], [ 516, 361, 571, 375 ], [ 575, 361, 611, 375 ], [ 615, 361, 624, 375 ], [ 628, 361, 659, 375 ], [ 663, 361, 677, 375 ], [ 681, 361, 723, 375 ], [ 727, 361, 767, 375 ], [ 779, 361, 824, 375 ], [ 176, 412, 226, 426 ], [ 230, 412, 265, 426 ], [ 269, 412, 293, 426 ], [ 297, 412, 372, 426 ], [ 376, 412, 397, 426 ], [ 401, 412, 433, 426 ], [ 437, 412, 475, 426 ], [ 479, 412, 507, 426 ], [ 511, 412, 621, 426 ], [ 625, 412, 697, 426 ], [ 701, 412, 750, 426 ], [ 754, 412, 781, 426 ], [ 785, 412, 834, 426 ], [ 838, 412, 863, 426 ], [ 176, 429, 194, 443 ], [ 199, 429, 242, 443 ], [ 246, 429, 282, 443 ], [ 286, 429, 295, 443 ], [ 299, 429, 330, 443 ], [ 335, 429, 348, 443 ], [ 352, 429, 395, 443 ], [ 399, 429, 439, 443 ], [ 447, 429, 491, 443 ], [ 176, 480, 197, 494 ], [ 201, 480, 239, 494 ], [ 243, 480, 285, 494 ], [ 289, 480, 304, 494 ], [ 308, 480, 399, 494 ], [ 403, 480, 427, 494 ], [ 431, 480, 455, 494 ], [ 459, 480, 548, 494 ], [ 552, 480, 579, 494 ], [ 583, 480, 621, 494 ], [ 625, 480, 646, 494 ], [ 651, 480, 685, 494 ], [ 689, 480, 704, 494 ], [ 708, 480, 733, 494 ], [ 737, 480, 763, 494 ], [ 767, 480, 830, 494 ], [ 834, 480, 882, 494 ], [ 176, 497, 212, 511 ], [ 216, 497, 225, 511 ], [ 230, 497, 261, 511 ], [ 265, 497, 320, 511 ], [ 324, 497, 366, 511 ], [ 370, 497, 410, 511 ], [ 418, 497, 463, 511 ] ]
[ [ 352, 94, 486, 115 ], [ 492, 94, 587, 115 ], [ 593, 94, 647, 115 ], [ 176, 192, 197, 206 ], [ 201, 192, 228, 206 ], [ 232, 192, 268, 206 ], [ 272, 192, 299, 206 ], [ 303, 192, 328, 206 ], [ 332, 192, 361, 206 ], [ 365, 192, 389, 206 ], [ 393, 192, 419, 206 ], [ 423, 192, 472, 206 ], [ 476, 192, 498, 206 ], [ 502, 192, 526, 206 ], [ 530, 192, 606, 206 ], [ 610, 192, 645, 206 ], [ 649, 192, 670, 206 ], [ 674, 192, 784, 206 ], [ 788, 192, 860, 206 ], [ 176, 209, 236, 223 ], [ 240, 209, 300, 223 ], [ 305, 209, 370, 223 ], [ 374, 209, 412, 223 ], [ 416, 209, 482, 223 ], [ 485, 209, 546, 223 ], [ 550, 209, 648, 223 ], [ 652, 209, 680, 223 ], [ 684, 209, 722, 223 ], [ 726, 209, 826, 223 ], [ 830, 209, 866, 223 ], [ 870, 209, 879, 223 ], [ 176, 226, 207, 240 ], [ 211, 226, 225, 240 ], [ 229, 226, 272, 240 ], [ 276, 226, 311, 240 ], [ 315, 226, 319, 240 ], [ 328, 226, 372, 240 ], [ 176, 276, 197, 290 ], [ 201, 276, 228, 290 ], [ 232, 276, 268, 290 ], [ 272, 276, 299, 290 ], [ 303, 276, 328, 290 ], [ 332, 276, 361, 290 ], [ 365, 276, 374, 290 ], [ 377, 276, 406, 290 ], [ 410, 276, 437, 290 ], [ 441, 276, 471, 290 ], [ 475, 276, 562, 290 ], [ 567, 276, 591, 290 ], [ 595, 276, 661, 290 ], [ 665, 276, 697, 290 ], [ 702, 276, 723, 290 ], [ 727, 276, 818, 290 ], [ 822, 276, 858, 290 ], [ 862, 276, 871, 290 ], [ 176, 293, 207, 307 ], [ 211, 293, 225, 307 ], [ 229, 293, 272, 307 ], [ 276, 293, 315, 307 ], [ 324, 293, 368, 307 ], [ 176, 344, 197, 358 ], [ 201, 344, 228, 358 ], [ 232, 344, 268, 358 ], [ 272, 344, 299, 358 ], [ 303, 344, 328, 358 ], [ 332, 344, 361, 358 ], [ 365, 344, 374, 358 ], [ 377, 344, 446, 358 ], [ 450, 344, 465, 358 ], [ 469, 344, 493, 358 ], [ 497, 344, 583, 358 ], [ 588, 344, 679, 358 ], [ 683, 344, 710, 358 ], [ 715, 344, 780, 358 ], [ 784, 344, 804, 358 ], [ 808, 344, 839, 358 ], [ 843, 344, 859, 358 ], [ 176, 361, 213, 375 ], [ 217, 361, 260, 375 ], [ 264, 361, 374, 375 ], [ 379, 361, 441, 375 ], [ 445, 361, 473, 375 ], [ 477, 361, 512, 375 ], [ 516, 361, 571, 375 ], [ 575, 361, 611, 375 ], [ 615, 361, 624, 375 ], [ 628, 361, 659, 375 ], [ 663, 361, 677, 375 ], [ 681, 361, 723, 375 ], [ 727, 361, 767, 375 ], [ 779, 361, 824, 375 ], [ 176, 412, 226, 426 ], [ 230, 412, 265, 426 ], [ 269, 412, 293, 426 ], [ 297, 412, 372, 426 ], [ 376, 412, 397, 426 ], [ 401, 412, 433, 426 ], [ 437, 412, 475, 426 ], [ 479, 412, 507, 426 ], [ 511, 412, 621, 426 ], [ 625, 412, 697, 426 ], [ 701, 412, 750, 426 ], [ 754, 412, 781, 426 ], [ 785, 412, 834, 426 ], [ 838, 412, 863, 426 ], [ 176, 429, 194, 443 ], [ 199, 429, 242, 443 ], [ 246, 429, 282, 443 ], [ 286, 429, 295, 443 ], [ 299, 429, 330, 443 ], [ 335, 429, 348, 443 ], [ 352, 429, 395, 443 ], [ 399, 429, 439, 443 ], [ 447, 429, 491, 443 ], [ 176, 480, 197, 494 ], [ 201, 480, 239, 494 ], [ 243, 480, 285, 494 ], [ 289, 480, 304, 494 ], [ 308, 480, 399, 494 ], [ 403, 480, 427, 494 ], [ 431, 480, 455, 494 ], [ 459, 480, 548, 494 ], [ 552, 480, 579, 494 ], [ 583, 480, 621, 494 ], [ 625, 480, 646, 494 ], [ 651, 480, 685, 494 ], [ 689, 480, 704, 494 ], [ 708, 480, 733, 494 ], [ 737, 480, 763, 494 ], [ 767, 480, 830, 494 ], [ 834, 480, 882, 494 ], [ 176, 497, 212, 511 ], [ 216, 497, 225, 511 ], [ 230, 497, 261, 511 ], [ 265, 497, 320, 511 ], [ 324, 497, 366, 511 ], [ 370, 497, 410, 511 ], [ 418, 497, 463, 511 ] ]
Pirimicarb NEDI: 91% of the ADI NESTI as % of the ARfD 2-6 years 2+ years Peppers 1 9 15 Spices *0.05 <1 <1 Strawberry 3 28 7 Pirimiphos-methyl Dietary exposure estimate Kiwifruit Omit 2 not required Procymidone NEDI: 38% of the ADI NESTI as % of the ARfD 2-6 years 2+ years Strawberry *0.02 1 <1 Propazine Dietary exposure estimate not required Lupin Omit *0.1 Propiconazole NEDI: 8% of the ADI NESTI as % of the ARfD 2-6 years 2+ years Blackberries 1 <1 <1 Boysenberry 1 <1 <1 Raspberries, red, black 1 <1 <1 Spices *0.1 <1 <1 Pyraclostrobin NEDI: 2% of the ADI NESTI as % of the ARfD 2-6 years 2+ years Blackberries 4 6 1 Blueberries 4 6 1 Boysenberry 4 6 1 Raspberries, red, black 4 6 1 Strawberry 1 19 5 Pyrazophos Dietary exposure estimate Cucumber Omit T2 not required Pyriproxyfen NEDI: 6% of the ADI Grapes 2.5 Quinclorac NEDI: <1% of the ADI NESTI as % of the ARfD 2-6 years 2+ years Cranberry 1.5 <1 <1 Sethoxydim Dietary exposure estimate Bergamot Omit *0.1 not required Burnet, salad Omit *0.1 Chervil Omit *0.1 Dill, seed Omit *0.1 Fennel, bulb Omit 0.2 Fennel, seed Omit *0.1 Herbs [except thyme] Omit *0.1 Kaffir lime leaves Omit *0.1 Lemon grass Omit *0.1 Lemon verbena (fresh weight) Omit *0.1 Mizuna Omit *0.1 Rose and dianthus (edible flowers) Omit *0.1 Strawberry Omit 0.1 Thyme Omit 0.5 Spectinomycin Dietary exposure estimate Goat milk Omit *2 not required
Pirimicarb NEDI: 91% of the ADI NESTI as % of the ARfD Peppers Spices Strawberry 1 *0.05 3 2-6 years 9 <1 28 2+ years 15 <1 7 Pirimiphos-methyl Dietary exposure estimate not required Kiwifruit Omit 2 Procymidone NEDI: 38% of the ADI NESTI as % of the ARfD Strawberry *0.02 2-6 years 1 2+ years <1 Propazine Dietary exposure estimate not required Lupin Omit *0.1 Propiconazole NEDI: 8% of the ADI NESTI as % of the ARfD Blackberries Boysenberry Raspberries, red, black Spices 1 1 1 *0.1 2-6 years <1 <1 <1 <1 2+ years <1 <1 <1 <1 Pyraclostrobin NEDI: 2% of the ADI NESTI as % of the ARfD Blackberries Blueberries Boysenberry Raspberries, red, black Strawberry 4 4 4 4 1 2-6 years 6 6 6 6 19 2+ years 1 1 1 1 5 Pyrazophos Dietary exposure estimate not required Cucumber Omit T2 Pyriproxyfen NEDI: 6% of the ADI Grapes 2.5 Quinclorac NEDI: <1% of the ADI NESTI as % of the ARfD Cranberry 1.5 2-6 years <1 2+ years <1 Sethoxydim Dietary exposure estimate not required Bergamot Burnet, salad Chervil Dill, seed Fennel, bulb Fennel, seed Herbs [except thyme] Kaffir lime leaves Lemon grass Lemon verbena (fresh weight) Mizuna Rose and dianthus (edible flowers) Strawberry Thyme Omit *0.1 Omit *0.1 Omit *0.1 Omit *0.1 Omit 0.2 Omit *0.1 Omit *0.1 Omit *0.1 Omit *0.1 Omit *0.1 Omit *0.1 Omit *0.1 Omit 0.1 Omit 0.5 Spectinomycin Dietary exposure estimate not required Goat milk Omit *2
0.526809
[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 20, 24, 17, 21, 25, 12, 13, 18, 22, 26, 14, 15, 19, 23, 27, 28, 29, 30, 31, 35, 36, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 53, 54, 49, 50, 55, 51, 52, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 82, 86, 90, 91, 92, 96, 83, 87, 93, 97, 78, 79, 84, 88, 94, 98, 80, 81, 85, 89, 95, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 116, 120, 124, 128, 129, 130, 134, 117, 121, 125, 131, 135, 112, 113, 118, 122, 126, 132, 136, 114, 115, 119, 123, 127, 133, 137, 138, 139, 140, 141, 145, 146, 142, 143, 144, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 171, 172, 167, 168, 173, 169, 170, 174, 175, 176, 177, 178, 182, 183, 179, 184, 185, 188, 191, 192, 195, 196, 199, 200, 203, 204, 205, 208, 209, 210, 213, 214, 217, 218, 219, 220, 223, 226, 227, 228, 229, 230, 233, 236, 180, 181, 186, 187, 189, 190, 193, 194, 197, 198, 201, 202, 206, 207, 211, 212, 215, 216, 221, 222, 224, 225, 231, 232, 234, 235, 237, 238, 239, 240, 241, 242, 247, 248, 243, 244, 245, 246 ]
M1009-MRLs-SD2.docx
task-1431-11
5
[ [ 130, 112, 212, 128 ], [ 570, 112, 615, 128 ], [ 619, 112, 653, 128 ], [ 658, 112, 672, 128 ], [ 676, 112, 700, 128 ], [ 705, 112, 732, 128 ], [ 570, 126, 619, 142 ], [ 624, 126, 642, 142 ], [ 646, 126, 661, 142 ], [ 666, 126, 680, 142 ], [ 685, 126, 708, 142 ], [ 713, 126, 753, 142 ], [ 570, 140, 594, 156 ], [ 599, 140, 640, 156 ], [ 683, 140, 702, 156 ], [ 707, 140, 748, 156 ], [ 130, 153, 192, 170 ], [ 463, 153, 472, 170 ], [ 613, 153, 622, 170 ], [ 721, 153, 740, 170 ], [ 130, 167, 180, 183 ], [ 463, 167, 502, 183 ], [ 608, 167, 627, 183 ], [ 721, 167, 740, 183 ], [ 130, 181, 211, 197 ], [ 463, 181, 472, 197 ], [ 608, 181, 627, 197 ], [ 726, 181, 735, 197 ], [ 130, 195, 276, 211 ], [ 570, 195, 623, 211 ], [ 628, 195, 697, 211 ], [ 701, 195, 765, 211 ], [ 130, 209, 188, 225 ], [ 463, 209, 498, 225 ], [ 503, 209, 512, 225 ], [ 570, 209, 593, 225 ], [ 598, 209, 660, 225 ], [ 130, 223, 236, 240 ], [ 570, 223, 615, 240 ], [ 619, 223, 653, 240 ], [ 658, 223, 672, 240 ], [ 676, 223, 700, 240 ], [ 705, 223, 732, 240 ], [ 570, 238, 619, 254 ], [ 624, 238, 642, 254 ], [ 646, 238, 661, 254 ], [ 666, 238, 680, 254 ], [ 685, 238, 708, 254 ], [ 713, 238, 753, 254 ], [ 570, 251, 594, 268 ], [ 599, 251, 640, 268 ], [ 683, 251, 702, 268 ], [ 707, 251, 748, 268 ], [ 130, 265, 211, 281 ], [ 463, 265, 502, 281 ], [ 613, 265, 622, 281 ], [ 721, 265, 740, 281 ], [ 130, 279, 210, 295 ], [ 570, 279, 623, 296 ], [ 628, 279, 697, 296 ], [ 701, 279, 765, 296 ], [ 570, 293, 593, 309 ], [ 598, 293, 660, 309 ], [ 130, 294, 170, 310 ], [ 463, 294, 498, 310 ], [ 503, 294, 533, 310 ], [ 130, 308, 244, 324 ], [ 570, 308, 615, 324 ], [ 619, 308, 644, 324 ], [ 648, 308, 662, 324 ], [ 667, 308, 690, 324 ], [ 695, 308, 723, 324 ], [ 570, 322, 619, 338 ], [ 624, 322, 642, 338 ], [ 646, 322, 661, 338 ], [ 666, 322, 680, 338 ], [ 685, 322, 708, 338 ], [ 713, 322, 753, 338 ], [ 570, 336, 594, 352 ], [ 599, 336, 640, 352 ], [ 683, 336, 702, 352 ], [ 707, 336, 748, 352 ], [ 130, 349, 222, 366 ], [ 463, 349, 472, 366 ], [ 608, 349, 627, 366 ], [ 721, 349, 740, 366 ], [ 130, 363, 224, 379 ], [ 463, 363, 472, 379 ], [ 608, 363, 627, 379 ], [ 721, 363, 740, 379 ], [ 130, 377, 225, 393 ], [ 229, 377, 258, 393 ], [ 263, 377, 302, 393 ], [ 463, 377, 472, 393 ], [ 608, 377, 627, 393 ], [ 721, 377, 740, 393 ], [ 130, 390, 180, 407 ], [ 463, 390, 493, 407 ], [ 608, 390, 627, 407 ], [ 721, 390, 740, 407 ], [ 130, 405, 247, 421 ], [ 570, 405, 615, 421 ], [ 619, 405, 644, 421 ], [ 648, 405, 662, 421 ], [ 667, 405, 690, 421 ], [ 695, 405, 723, 421 ], [ 570, 419, 619, 435 ], [ 624, 419, 642, 435 ], [ 646, 419, 661, 435 ], [ 666, 419, 680, 435 ], [ 685, 419, 708, 435 ], [ 713, 419, 753, 435 ], [ 570, 433, 594, 449 ], [ 599, 433, 640, 449 ], [ 683, 433, 702, 449 ], [ 707, 433, 748, 449 ], [ 130, 446, 222, 462 ], [ 463, 446, 472, 462 ], [ 613, 446, 622, 462 ], [ 726, 446, 735, 462 ], [ 130, 460, 214, 476 ], [ 463, 460, 472, 476 ], [ 613, 460, 622, 476 ], [ 726, 460, 735, 476 ], [ 130, 473, 224, 490 ], [ 463, 473, 472, 490 ], [ 613, 473, 622, 490 ], [ 726, 473, 735, 490 ], [ 130, 487, 225, 503 ], [ 229, 487, 258, 503 ], [ 263, 487, 302, 503 ], [ 463, 487, 472, 503 ], [ 613, 487, 622, 503 ], [ 726, 487, 735, 503 ], [ 130, 501, 211, 517 ], [ 463, 501, 472, 517 ], [ 608, 501, 627, 517 ], [ 726, 501, 735, 517 ], [ 130, 515, 225, 531 ], [ 570, 515, 623, 531 ], [ 628, 515, 697, 531 ], [ 701, 515, 765, 531 ], [ 130, 529, 207, 546 ], [ 463, 529, 498, 546 ], [ 503, 529, 523, 546 ], [ 570, 529, 593, 545 ], [ 598, 529, 660, 545 ], [ 130, 544, 232, 560 ], [ 570, 544, 615, 560 ], [ 619, 544, 644, 560 ], [ 648, 544, 662, 560 ], [ 667, 544, 690, 560 ], [ 695, 544, 723, 560 ], [ 130, 558, 184, 574 ], [ 463, 558, 486, 574 ], [ 130, 572, 217, 588 ], [ 570, 572, 615, 588 ], [ 619, 572, 653, 588 ], [ 658, 572, 672, 588 ], [ 677, 572, 700, 588 ], [ 705, 572, 733, 588 ], [ 570, 586, 619, 603 ], [ 624, 586, 642, 603 ], [ 646, 586, 661, 603 ], [ 666, 586, 680, 603 ], [ 685, 586, 708, 603 ], [ 713, 586, 753, 603 ], [ 570, 600, 594, 616 ], [ 599, 600, 640, 616 ], [ 683, 600, 702, 616 ], [ 707, 600, 748, 616 ], [ 130, 614, 204, 630 ], [ 463, 614, 486, 630 ], [ 608, 614, 627, 630 ], [ 721, 614, 740, 630 ], [ 130, 628, 224, 644 ], [ 570, 628, 623, 644 ], [ 628, 628, 697, 644 ], [ 701, 628, 765, 644 ], [ 130, 642, 202, 658 ], [ 463, 642, 498, 658 ], [ 503, 642, 533, 658 ], [ 570, 642, 593, 658 ], [ 598, 642, 660, 658 ], [ 130, 656, 184, 672 ], [ 188, 656, 228, 672 ], [ 463, 656, 498, 672 ], [ 503, 656, 533, 672 ], [ 130, 669, 182, 686 ], [ 463, 669, 498, 686 ], [ 503, 669, 533, 686 ], [ 130, 683, 157, 699 ], [ 162, 683, 198, 699 ], [ 463, 683, 498, 699 ], [ 503, 683, 533, 699 ], [ 130, 697, 185, 713 ], [ 190, 697, 222, 713 ], [ 463, 697, 498, 713 ], [ 503, 697, 526, 713 ], [ 130, 710, 185, 727 ], [ 190, 710, 226, 727 ], [ 463, 710, 498, 727 ], [ 503, 710, 533, 727 ], [ 130, 724, 174, 740 ], [ 179, 724, 233, 740 ], [ 238, 724, 288, 740 ], [ 463, 724, 498, 740 ], [ 503, 724, 533, 740 ], [ 130, 738, 169, 754 ], [ 173, 738, 204, 754 ], [ 209, 738, 257, 754 ], [ 463, 738, 498, 754 ], [ 503, 738, 533, 754 ], [ 130, 751, 181, 768 ], [ 186, 751, 227, 768 ], [ 463, 751, 498, 768 ], [ 503, 751, 533, 768 ], [ 130, 765, 181, 781 ], [ 186, 765, 246, 781 ], [ 251, 765, 294, 781 ], [ 299, 765, 352, 781 ], [ 463, 765, 498, 781 ], [ 503, 765, 533, 781 ], [ 130, 779, 184, 795 ], [ 463, 779, 498, 795 ], [ 503, 779, 533, 795 ], [ 130, 792, 169, 809 ], [ 173, 792, 201, 809 ], [ 206, 792, 269, 809 ], [ 274, 792, 324, 809 ], [ 329, 792, 388, 809 ], [ 463, 792, 498, 809 ], [ 503, 792, 533, 809 ], [ 130, 806, 211, 822 ], [ 463, 806, 498, 822 ], [ 503, 806, 526, 822 ], [ 130, 820, 181, 836 ], [ 463, 820, 498, 836 ], [ 503, 820, 526, 836 ], [ 130, 834, 249, 850 ], [ 570, 834, 623, 850 ], [ 628, 834, 697, 850 ], [ 701, 834, 765, 850 ], [ 130, 848, 166, 864 ], [ 170, 848, 200, 864 ], [ 463, 848, 498, 864 ], [ 503, 848, 519, 864 ], [ 570, 848, 593, 864 ], [ 598, 848, 660, 864 ] ]
[ [ 130, 112, 212, 128 ], [ 570, 112, 615, 128 ], [ 619, 112, 653, 128 ], [ 658, 112, 672, 128 ], [ 676, 112, 700, 128 ], [ 705, 112, 732, 128 ], [ 570, 126, 619, 142 ], [ 624, 126, 642, 142 ], [ 646, 126, 661, 142 ], [ 666, 126, 680, 142 ], [ 685, 126, 708, 142 ], [ 713, 126, 753, 142 ], [ 130, 153, 192, 170 ], [ 130, 167, 180, 183 ], [ 130, 181, 211, 197 ], [ 463, 153, 472, 170 ], [ 463, 167, 502, 183 ], [ 463, 181, 472, 197 ], [ 570, 140, 594, 156 ], [ 599, 140, 640, 156 ], [ 613, 153, 622, 170 ], [ 608, 167, 627, 183 ], [ 608, 181, 627, 197 ], [ 683, 140, 702, 156 ], [ 707, 140, 748, 156 ], [ 721, 153, 740, 170 ], [ 721, 167, 740, 183 ], [ 726, 181, 735, 197 ], [ 130, 195, 276, 211 ], [ 570, 195, 623, 211 ], [ 628, 195, 697, 211 ], [ 701, 195, 765, 211 ], [ 570, 209, 593, 225 ], [ 598, 209, 660, 225 ], [ 130, 209, 188, 225 ], [ 463, 209, 498, 225 ], [ 503, 209, 512, 225 ], [ 130, 223, 236, 240 ], [ 570, 223, 615, 240 ], [ 619, 223, 653, 240 ], [ 658, 223, 672, 240 ], [ 676, 223, 700, 240 ], [ 705, 223, 732, 240 ], [ 570, 238, 619, 254 ], [ 624, 238, 642, 254 ], [ 646, 238, 661, 254 ], [ 666, 238, 680, 254 ], [ 685, 238, 708, 254 ], [ 713, 238, 753, 254 ], [ 130, 265, 211, 281 ], [ 463, 265, 502, 281 ], [ 570, 251, 594, 268 ], [ 599, 251, 640, 268 ], [ 613, 265, 622, 281 ], [ 683, 251, 702, 268 ], [ 707, 251, 748, 268 ], [ 721, 265, 740, 281 ], [ 130, 279, 210, 295 ], [ 570, 279, 623, 296 ], [ 628, 279, 697, 296 ], [ 701, 279, 765, 296 ], [ 570, 293, 593, 309 ], [ 598, 293, 660, 309 ], [ 130, 294, 170, 310 ], [ 463, 294, 498, 310 ], [ 503, 294, 533, 310 ], [ 130, 308, 244, 324 ], [ 570, 308, 615, 324 ], [ 619, 308, 644, 324 ], [ 648, 308, 662, 324 ], [ 667, 308, 690, 324 ], [ 695, 308, 723, 324 ], [ 570, 322, 619, 338 ], [ 624, 322, 642, 338 ], [ 646, 322, 661, 338 ], [ 666, 322, 680, 338 ], [ 685, 322, 708, 338 ], [ 713, 322, 753, 338 ], [ 130, 349, 222, 366 ], [ 130, 363, 224, 379 ], [ 130, 377, 225, 393 ], [ 229, 377, 258, 393 ], [ 263, 377, 302, 393 ], [ 130, 390, 180, 407 ], [ 463, 349, 472, 366 ], [ 463, 363, 472, 379 ], [ 463, 377, 472, 393 ], [ 463, 390, 493, 407 ], [ 570, 336, 594, 352 ], [ 599, 336, 640, 352 ], [ 608, 349, 627, 366 ], [ 608, 363, 627, 379 ], [ 608, 377, 627, 393 ], [ 608, 390, 627, 407 ], [ 683, 336, 702, 352 ], [ 707, 336, 748, 352 ], [ 721, 349, 740, 366 ], [ 721, 363, 740, 379 ], [ 721, 377, 740, 393 ], [ 721, 390, 740, 407 ], [ 130, 405, 247, 421 ], [ 570, 405, 615, 421 ], [ 619, 405, 644, 421 ], [ 648, 405, 662, 421 ], [ 667, 405, 690, 421 ], [ 695, 405, 723, 421 ], [ 570, 419, 619, 435 ], [ 624, 419, 642, 435 ], [ 646, 419, 661, 435 ], [ 666, 419, 680, 435 ], [ 685, 419, 708, 435 ], [ 713, 419, 753, 435 ], [ 130, 446, 222, 462 ], [ 130, 460, 214, 476 ], [ 130, 473, 224, 490 ], [ 130, 487, 225, 503 ], [ 229, 487, 258, 503 ], [ 263, 487, 302, 503 ], [ 130, 501, 211, 517 ], [ 463, 446, 472, 462 ], [ 463, 460, 472, 476 ], [ 463, 473, 472, 490 ], [ 463, 487, 472, 503 ], [ 463, 501, 472, 517 ], [ 570, 433, 594, 449 ], [ 599, 433, 640, 449 ], [ 613, 446, 622, 462 ], [ 613, 460, 622, 476 ], [ 613, 473, 622, 490 ], [ 613, 487, 622, 503 ], [ 608, 501, 627, 517 ], [ 683, 433, 702, 449 ], [ 707, 433, 748, 449 ], [ 726, 446, 735, 462 ], [ 726, 460, 735, 476 ], [ 726, 473, 735, 490 ], [ 726, 487, 735, 503 ], [ 726, 501, 735, 517 ], [ 130, 515, 225, 531 ], [ 570, 515, 623, 531 ], [ 628, 515, 697, 531 ], [ 701, 515, 765, 531 ], [ 570, 529, 593, 545 ], [ 598, 529, 660, 545 ], [ 130, 529, 207, 546 ], [ 463, 529, 498, 546 ], [ 503, 529, 523, 546 ], [ 130, 544, 232, 560 ], [ 570, 544, 615, 560 ], [ 619, 544, 644, 560 ], [ 648, 544, 662, 560 ], [ 667, 544, 690, 560 ], [ 695, 544, 723, 560 ], [ 130, 558, 184, 574 ], [ 463, 558, 486, 574 ], [ 130, 572, 217, 588 ], [ 570, 572, 615, 588 ], [ 619, 572, 653, 588 ], [ 658, 572, 672, 588 ], [ 677, 572, 700, 588 ], [ 705, 572, 733, 588 ], [ 570, 586, 619, 603 ], [ 624, 586, 642, 603 ], [ 646, 586, 661, 603 ], [ 666, 586, 680, 603 ], [ 685, 586, 708, 603 ], [ 713, 586, 753, 603 ], [ 130, 614, 204, 630 ], [ 463, 614, 486, 630 ], [ 570, 600, 594, 616 ], [ 599, 600, 640, 616 ], [ 608, 614, 627, 630 ], [ 683, 600, 702, 616 ], [ 707, 600, 748, 616 ], [ 721, 614, 740, 630 ], [ 130, 628, 224, 644 ], [ 570, 628, 623, 644 ], [ 628, 628, 697, 644 ], [ 701, 628, 765, 644 ], [ 570, 642, 593, 658 ], [ 598, 642, 660, 658 ], [ 130, 642, 202, 658 ], [ 130, 656, 184, 672 ], [ 188, 656, 228, 672 ], [ 130, 669, 182, 686 ], [ 130, 683, 157, 699 ], [ 162, 683, 198, 699 ], [ 130, 697, 185, 713 ], [ 190, 697, 222, 713 ], [ 130, 710, 185, 727 ], [ 190, 710, 226, 727 ], [ 130, 724, 174, 740 ], [ 179, 724, 233, 740 ], [ 238, 724, 288, 740 ], [ 130, 738, 169, 754 ], [ 173, 738, 204, 754 ], [ 209, 738, 257, 754 ], [ 130, 751, 181, 768 ], [ 186, 751, 227, 768 ], [ 130, 765, 181, 781 ], [ 186, 765, 246, 781 ], [ 251, 765, 294, 781 ], [ 299, 765, 352, 781 ], [ 130, 779, 184, 795 ], [ 130, 792, 169, 809 ], [ 173, 792, 201, 809 ], [ 206, 792, 269, 809 ], [ 274, 792, 324, 809 ], [ 329, 792, 388, 809 ], [ 130, 806, 211, 822 ], [ 130, 820, 181, 836 ], [ 463, 642, 498, 658 ], [ 503, 642, 533, 658 ], [ 463, 656, 498, 672 ], [ 503, 656, 533, 672 ], [ 463, 669, 498, 686 ], [ 503, 669, 533, 686 ], [ 463, 683, 498, 699 ], [ 503, 683, 533, 699 ], [ 463, 697, 498, 713 ], [ 503, 697, 526, 713 ], [ 463, 710, 498, 727 ], [ 503, 710, 533, 727 ], [ 463, 724, 498, 740 ], [ 503, 724, 533, 740 ], [ 463, 738, 498, 754 ], [ 503, 738, 533, 754 ], [ 463, 751, 498, 768 ], [ 503, 751, 533, 768 ], [ 463, 765, 498, 781 ], [ 503, 765, 533, 781 ], [ 463, 779, 498, 795 ], [ 503, 779, 533, 795 ], [ 463, 792, 498, 809 ], [ 503, 792, 533, 809 ], [ 463, 806, 498, 822 ], [ 503, 806, 526, 822 ], [ 463, 820, 498, 836 ], [ 503, 820, 526, 836 ], [ 130, 834, 249, 850 ], [ 570, 834, 623, 850 ], [ 628, 834, 697, 850 ], [ 701, 834, 765, 850 ], [ 570, 848, 593, 864 ], [ 598, 848, 660, 864 ], [ 130, 848, 166, 864 ], [ 170, 848, 200, 864 ], [ 463, 848, 498, 864 ], [ 503, 848, 519, 864 ] ]
Hub Planning devices Status Date adopted by Council Highview Highview Park Year 1-3 in Corporate Park Masterplan Business Plan (2013-2017) Allen Swanbourne Year 3-5 in Corporate Park Masterplan Business Plan (2013-2017) Princess Nil - - Road Croydon Nil - - Street Floreat Nil - - Asquith Housing Diversity Study Complete, project 28 November 2006 Study ongoing Street Hampden Hampden Road Ongoing 23 August 2011 Road Study Broadway Broadway Study Ongoing 23 August 2011 Waratah Waratah Avenue Ongoing 27 March 2012 Avenue Placemaking Strategy Captain Stirling Highway Approved Draft 13 October 2009 Stirling Special Control Area The priority of hubs is able to scheduled through Council resolutions and budget processes, with no work to commence prior to budget allocation. Priority will be given to hubs that are involved in ongoing projects, followed by those without existing planning projects. In some cases, projects have already been initiated and have commenced. These projects will draw from the Local Hubs Framework principles but not processes. Relevant legislation This document sits below a range of legislation from both state and local government, creating a suite of legislation for local hubs. State Planning Policy 4.2 Activity Centres Monitor and review Reviewing this Framework is important to ensure that it remains relevant. Objectives To ensure that the overall Framework is remains relevant. To ensure the content of the overall Framework is accurate.
Hub Planning devices Status Date adopted by Council Highview Park Highview Park Masterplan Year 1-3 in Corporate Business Plan (2013-2017) Allen Park Swanbourne Masterplan Year 3-5 in Corporate Business Plan (2013-2017) Princess Road Nil - - Croydon Street Nil - - Floreat Nil - - Asquith Street Housing Diversity Study Study Complete, project ongoing 28 November 2006 Hampden Road Hampden Road Study Ongoing 23 August 2011 Broadway Broadway Study Ongoing 23 August 2011 Waratah Avenue Waratah Avenue Placemaking Strategy Ongoing 27 March 2012 Captain Stirling Stirling Highway Special Control Area Approved Draft 13 October 2009 The priority of hubs is able to scheduled through Council resolutions and budget processes, with no work to commence prior to budget allocation. Priority will be given to hubs that are involved in ongoing projects, followed by those without existing planning projects. In some cases, projects have already been initiated and have commenced. These projects will draw from the Local Hubs Framework principles but not processes. Relevant legislation This document sits below a range of legislation from both state and local government, creating a suite of legislation for local hubs. State Planning Policy 4.2 Activity Centres Monitor and review Reviewing this Framework is important to ensure that it remains relevant. Objectives To ensure that the overall Framework is remains relevant. To ensure the content of the overall Framework is accurate.
0.806537
[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 15, 9, 10, 16, 11, 12, 13, 14, 17, 18, 19, 20, 26, 21, 27, 22, 23, 24, 25, 28, 29, 30, 31, 35, 32, 33, 34, 36, 40, 37, 38, 39, 41, 42, 43, 44, 45, 56, 46, 47, 54, 48, 49, 50, 55, 51, 52, 53, 57, 64, 58, 59, 65, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 80, 74, 75, 81, 82, 76, 77, 78, 79, 83, 91, 84, 85, 92, 93, 94, 86, 87, 88, 89, 90, 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 ]
M13%2016055%20%20Local%20Hubs%20Framework%20Report%20Attachment%201(3).docx
task-1431-137
14
[ [ 120, 102, 156, 120 ], [ 227, 102, 305, 120 ], [ 310, 102, 378, 120 ], [ 415, 102, 471, 120 ], [ 689, 102, 729, 120 ], [ 735, 102, 807, 120 ], [ 812, 102, 833, 120 ], [ 838, 102, 906, 120 ], [ 120, 117, 201, 135 ], [ 227, 117, 302, 135 ], [ 307, 117, 345, 135 ], [ 415, 117, 454, 135 ], [ 485, 117, 512, 135 ], [ 543, 117, 558, 135 ], [ 589, 117, 671, 135 ], [ 120, 132, 161, 150 ], [ 227, 132, 318, 150 ], [ 415, 132, 490, 150 ], [ 495, 132, 532, 150 ], [ 537, 132, 638, 150 ], [ 120, 148, 165, 166 ], [ 227, 148, 331, 166 ], [ 415, 148, 454, 166 ], [ 485, 148, 512, 166 ], [ 543, 148, 558, 166 ], [ 589, 148, 671, 166 ], [ 120, 163, 161, 181 ], [ 227, 163, 318, 181 ], [ 415, 163, 490, 181 ], [ 495, 163, 532, 181 ], [ 537, 163, 638, 181 ], [ 120, 179, 198, 197 ], [ 227, 179, 248, 197 ], [ 415, 179, 421, 197 ], [ 689, 179, 695, 197 ], [ 120, 194, 167, 212 ], [ 120, 210, 196, 228 ], [ 227, 210, 248, 228 ], [ 415, 210, 421, 228 ], [ 689, 210, 695, 228 ], [ 120, 225, 173, 243 ], [ 120, 240, 182, 259 ], [ 227, 241, 248, 259 ], [ 415, 241, 421, 259 ], [ 689, 241, 695, 259 ], [ 120, 256, 195, 276 ], [ 227, 256, 295, 274 ], [ 300, 256, 371, 274 ], [ 415, 256, 462, 274 ], [ 497, 256, 581, 274 ], [ 616, 256, 671, 274 ], [ 689, 256, 710, 274 ], [ 715, 256, 800, 274 ], [ 805, 256, 847, 274 ], [ 227, 271, 274, 289 ], [ 415, 271, 480, 289 ], [ 120, 272, 178, 292 ], [ 120, 289, 205, 307 ], [ 227, 289, 307, 307 ], [ 312, 289, 357, 307 ], [ 415, 289, 485, 307 ], [ 689, 289, 710, 307 ], [ 715, 289, 773, 307 ], [ 778, 289, 819, 307 ], [ 120, 305, 167, 323 ], [ 227, 305, 274, 323 ], [ 120, 320, 209, 338 ], [ 227, 320, 309, 338 ], [ 314, 320, 362, 338 ], [ 415, 320, 485, 338 ], [ 689, 320, 710, 338 ], [ 715, 320, 773, 338 ], [ 778, 320, 819, 338 ], [ 120, 336, 194, 354 ], [ 227, 336, 297, 354 ], [ 302, 336, 365, 354 ], [ 415, 336, 485, 354 ], [ 689, 336, 710, 354 ], [ 715, 336, 766, 354 ], [ 771, 336, 813, 354 ], [ 120, 351, 187, 369 ], [ 227, 351, 333, 369 ], [ 227, 366, 296, 384 ], [ 120, 381, 188, 399 ], [ 227, 381, 283, 399 ], [ 289, 381, 359, 399 ], [ 415, 381, 494, 399 ], [ 499, 381, 539, 399 ], [ 689, 381, 710, 399 ], [ 715, 381, 781, 399 ], [ 786, 381, 827, 399 ], [ 120, 396, 184, 415 ], [ 227, 397, 287, 415 ], [ 293, 397, 352, 415 ], [ 227, 411, 266, 430 ], [ 120, 446, 155, 465 ], [ 165, 446, 225, 465 ], [ 235, 446, 251, 465 ], [ 261, 446, 304, 465 ], [ 314, 446, 328, 465 ], [ 338, 446, 376, 465 ], [ 385, 446, 402, 465 ], [ 412, 446, 503, 465 ], [ 513, 446, 581, 465 ], [ 591, 446, 658, 465 ], [ 667, 446, 765, 465 ], [ 774, 446, 808, 465 ], [ 817, 446, 879, 465 ], [ 120, 465, 218, 484 ], [ 224, 465, 259, 484 ], [ 265, 465, 287, 484 ], [ 293, 465, 336, 484 ], [ 341, 465, 358, 484 ], [ 364, 465, 462, 484 ], [ 468, 465, 508, 484 ], [ 514, 465, 531, 484 ], [ 536, 465, 598, 484 ], [ 604, 465, 694, 484 ], [ 120, 502, 183, 522 ], [ 190, 502, 217, 522 ], [ 224, 502, 247, 522 ], [ 253, 502, 301, 522 ], [ 308, 502, 325, 522 ], [ 331, 502, 375, 522 ], [ 382, 502, 415, 522 ], [ 422, 502, 451, 522 ], [ 458, 502, 531, 522 ], [ 538, 502, 554, 522 ], [ 560, 502, 632, 522 ], [ 638, 502, 715, 522 ], [ 721, 502, 795, 522 ], [ 802, 502, 823, 522 ], [ 830, 502, 879, 522 ], [ 120, 521, 184, 541 ], [ 190, 521, 258, 541 ], [ 264, 521, 340, 541 ], [ 346, 521, 422, 541 ], [ 120, 552, 137, 572 ], [ 146, 552, 195, 572 ], [ 203, 552, 261, 572 ], [ 270, 552, 340, 572 ], [ 348, 552, 392, 572 ], [ 400, 552, 466, 572 ], [ 474, 552, 519, 572 ], [ 528, 552, 597, 572 ], [ 605, 552, 639, 572 ], [ 647, 552, 691, 572 ], [ 699, 552, 814, 572 ], [ 823, 552, 879, 572 ], [ 120, 571, 191, 591 ], [ 197, 571, 225, 591 ], [ 230, 571, 274, 591 ], [ 279, 571, 320, 591 ], [ 326, 571, 354, 591 ], [ 359, 571, 408, 591 ], [ 413, 571, 460, 591 ], [ 466, 571, 566, 591 ], [ 572, 571, 657, 591 ], [ 663, 571, 691, 591 ], [ 697, 571, 725, 591 ], [ 730, 571, 828, 591 ], [ 120, 601, 218, 624 ], [ 225, 601, 341, 624 ], [ 120, 638, 159, 657 ], [ 174, 638, 262, 657 ], [ 278, 638, 308, 657 ], [ 323, 638, 375, 657 ], [ 390, 638, 402, 657 ], [ 417, 638, 468, 657 ], [ 484, 638, 500, 657 ], [ 515, 638, 605, 657 ], [ 620, 638, 660, 657 ], [ 676, 638, 715, 657 ], [ 730, 638, 774, 657 ], [ 789, 638, 822, 657 ], [ 838, 638, 879, 657 ], [ 120, 657, 233, 676 ], [ 238, 657, 310, 676 ], [ 316, 657, 327, 676 ], [ 332, 657, 375, 676 ], [ 381, 657, 397, 676 ], [ 403, 657, 493, 676 ], [ 498, 657, 522, 676 ], [ 528, 657, 569, 676 ], [ 575, 657, 624, 676 ], [ 181, 691, 228, 710 ], [ 234, 691, 312, 710 ], [ 318, 691, 372, 710 ], [ 377, 691, 405, 710 ], [ 411, 691, 475, 710 ], [ 480, 691, 551, 710 ], [ 120, 721, 207, 744 ], [ 213, 721, 255, 744 ], [ 262, 721, 335, 744 ], [ 120, 744, 213, 763 ], [ 219, 744, 250, 763 ], [ 256, 744, 357, 763 ], [ 362, 744, 377, 763 ], [ 383, 744, 467, 763 ], [ 472, 744, 489, 763 ], [ 495, 744, 556, 763 ], [ 562, 744, 596, 763 ], [ 602, 744, 612, 763 ], [ 617, 744, 689, 763 ], [ 694, 744, 771, 763 ], [ 120, 772, 222, 791 ], [ 181, 801, 205, 820 ], [ 210, 801, 272, 820 ], [ 278, 801, 311, 820 ], [ 317, 801, 345, 820 ], [ 350, 801, 410, 820 ], [ 415, 801, 516, 820 ], [ 522, 801, 536, 820 ], [ 542, 801, 614, 820 ], [ 619, 801, 696, 820 ], [ 181, 818, 205, 838 ], [ 210, 818, 272, 838 ], [ 278, 818, 305, 838 ], [ 311, 818, 377, 838 ], [ 383, 818, 399, 838 ], [ 405, 818, 433, 838 ], [ 439, 818, 498, 838 ], [ 504, 818, 605, 838 ], [ 610, 818, 625, 838 ], [ 630, 818, 713, 838 ] ]
[ [ 120, 102, 156, 120 ], [ 227, 102, 305, 120 ], [ 310, 102, 378, 120 ], [ 415, 102, 471, 120 ], [ 689, 102, 729, 120 ], [ 735, 102, 807, 120 ], [ 812, 102, 833, 120 ], [ 838, 102, 906, 120 ], [ 120, 117, 201, 135 ], [ 120, 132, 161, 150 ], [ 227, 117, 302, 135 ], [ 307, 117, 345, 135 ], [ 227, 132, 318, 150 ], [ 415, 117, 454, 135 ], [ 485, 117, 512, 135 ], [ 543, 117, 558, 135 ], [ 589, 117, 671, 135 ], [ 415, 132, 490, 150 ], [ 495, 132, 532, 150 ], [ 537, 132, 638, 150 ], [ 120, 148, 165, 166 ], [ 120, 163, 161, 181 ], [ 227, 148, 331, 166 ], [ 227, 163, 318, 181 ], [ 415, 148, 454, 166 ], [ 485, 148, 512, 166 ], [ 543, 148, 558, 166 ], [ 589, 148, 671, 166 ], [ 415, 163, 490, 181 ], [ 495, 163, 532, 181 ], [ 537, 163, 638, 181 ], [ 120, 179, 198, 197 ], [ 120, 194, 167, 212 ], [ 227, 179, 248, 197 ], [ 415, 179, 421, 197 ], [ 689, 179, 695, 197 ], [ 120, 210, 196, 228 ], [ 120, 225, 173, 243 ], [ 227, 210, 248, 228 ], [ 415, 210, 421, 228 ], [ 689, 210, 695, 228 ], [ 120, 240, 182, 259 ], [ 227, 241, 248, 259 ], [ 415, 241, 421, 259 ], [ 689, 241, 695, 259 ], [ 120, 256, 195, 276 ], [ 120, 272, 178, 292 ], [ 227, 256, 295, 274 ], [ 300, 256, 371, 274 ], [ 227, 271, 274, 289 ], [ 415, 256, 462, 274 ], [ 497, 256, 581, 274 ], [ 616, 256, 671, 274 ], [ 415, 271, 480, 289 ], [ 689, 256, 710, 274 ], [ 715, 256, 800, 274 ], [ 805, 256, 847, 274 ], [ 120, 289, 205, 307 ], [ 120, 305, 167, 323 ], [ 227, 289, 307, 307 ], [ 312, 289, 357, 307 ], [ 227, 305, 274, 323 ], [ 415, 289, 485, 307 ], [ 689, 289, 710, 307 ], [ 715, 289, 773, 307 ], [ 778, 289, 819, 307 ], [ 120, 320, 209, 338 ], [ 227, 320, 309, 338 ], [ 314, 320, 362, 338 ], [ 415, 320, 485, 338 ], [ 689, 320, 710, 338 ], [ 715, 320, 773, 338 ], [ 778, 320, 819, 338 ], [ 120, 336, 194, 354 ], [ 120, 351, 187, 369 ], [ 227, 336, 297, 354 ], [ 302, 336, 365, 354 ], [ 227, 351, 333, 369 ], [ 227, 366, 296, 384 ], [ 415, 336, 485, 354 ], [ 689, 336, 710, 354 ], [ 715, 336, 766, 354 ], [ 771, 336, 813, 354 ], [ 120, 381, 188, 399 ], [ 120, 396, 184, 415 ], [ 227, 381, 283, 399 ], [ 289, 381, 359, 399 ], [ 227, 397, 287, 415 ], [ 293, 397, 352, 415 ], [ 227, 411, 266, 430 ], [ 415, 381, 494, 399 ], [ 499, 381, 539, 399 ], [ 689, 381, 710, 399 ], [ 715, 381, 781, 399 ], [ 786, 381, 827, 399 ], [ 120, 446, 155, 465 ], [ 165, 446, 225, 465 ], [ 235, 446, 251, 465 ], [ 261, 446, 304, 465 ], [ 314, 446, 328, 465 ], [ 338, 446, 376, 465 ], [ 385, 446, 402, 465 ], [ 412, 446, 503, 465 ], [ 513, 446, 581, 465 ], [ 591, 446, 658, 465 ], [ 667, 446, 765, 465 ], [ 774, 446, 808, 465 ], [ 817, 446, 879, 465 ], [ 120, 465, 218, 484 ], [ 224, 465, 259, 484 ], [ 265, 465, 287, 484 ], [ 293, 465, 336, 484 ], [ 341, 465, 358, 484 ], [ 364, 465, 462, 484 ], [ 468, 465, 508, 484 ], [ 514, 465, 531, 484 ], [ 536, 465, 598, 484 ], [ 604, 465, 694, 484 ], [ 120, 502, 183, 522 ], [ 190, 502, 217, 522 ], [ 224, 502, 247, 522 ], [ 253, 502, 301, 522 ], [ 308, 502, 325, 522 ], [ 331, 502, 375, 522 ], [ 382, 502, 415, 522 ], [ 422, 502, 451, 522 ], [ 458, 502, 531, 522 ], [ 538, 502, 554, 522 ], [ 560, 502, 632, 522 ], [ 638, 502, 715, 522 ], [ 721, 502, 795, 522 ], [ 802, 502, 823, 522 ], [ 830, 502, 879, 522 ], [ 120, 521, 184, 541 ], [ 190, 521, 258, 541 ], [ 264, 521, 340, 541 ], [ 346, 521, 422, 541 ], [ 120, 552, 137, 572 ], [ 146, 552, 195, 572 ], [ 203, 552, 261, 572 ], [ 270, 552, 340, 572 ], [ 348, 552, 392, 572 ], [ 400, 552, 466, 572 ], [ 474, 552, 519, 572 ], [ 528, 552, 597, 572 ], [ 605, 552, 639, 572 ], [ 647, 552, 691, 572 ], [ 699, 552, 814, 572 ], [ 823, 552, 879, 572 ], [ 120, 571, 191, 591 ], [ 197, 571, 225, 591 ], [ 230, 571, 274, 591 ], [ 279, 571, 320, 591 ], [ 326, 571, 354, 591 ], [ 359, 571, 408, 591 ], [ 413, 571, 460, 591 ], [ 466, 571, 566, 591 ], [ 572, 571, 657, 591 ], [ 663, 571, 691, 591 ], [ 697, 571, 725, 591 ], [ 730, 571, 828, 591 ], [ 120, 601, 218, 624 ], [ 225, 601, 341, 624 ], [ 120, 638, 159, 657 ], [ 174, 638, 262, 657 ], [ 278, 638, 308, 657 ], [ 323, 638, 375, 657 ], [ 390, 638, 402, 657 ], [ 417, 638, 468, 657 ], [ 484, 638, 500, 657 ], [ 515, 638, 605, 657 ], [ 620, 638, 660, 657 ], [ 676, 638, 715, 657 ], [ 730, 638, 774, 657 ], [ 789, 638, 822, 657 ], [ 838, 638, 879, 657 ], [ 120, 657, 233, 676 ], [ 238, 657, 310, 676 ], [ 316, 657, 327, 676 ], [ 332, 657, 375, 676 ], [ 381, 657, 397, 676 ], [ 403, 657, 493, 676 ], [ 498, 657, 522, 676 ], [ 528, 657, 569, 676 ], [ 575, 657, 624, 676 ], [ 181, 691, 228, 710 ], [ 234, 691, 312, 710 ], [ 318, 691, 372, 710 ], [ 377, 691, 405, 710 ], [ 411, 691, 475, 710 ], [ 480, 691, 551, 710 ], [ 120, 721, 207, 744 ], [ 213, 721, 255, 744 ], [ 262, 721, 335, 744 ], [ 120, 744, 213, 763 ], [ 219, 744, 250, 763 ], [ 256, 744, 357, 763 ], [ 362, 744, 377, 763 ], [ 383, 744, 467, 763 ], [ 472, 744, 489, 763 ], [ 495, 744, 556, 763 ], [ 562, 744, 596, 763 ], [ 602, 744, 612, 763 ], [ 617, 744, 689, 763 ], [ 694, 744, 771, 763 ], [ 120, 772, 222, 791 ], [ 181, 801, 205, 820 ], [ 210, 801, 272, 820 ], [ 278, 801, 311, 820 ], [ 317, 801, 345, 820 ], [ 350, 801, 410, 820 ], [ 415, 801, 516, 820 ], [ 522, 801, 536, 820 ], [ 542, 801, 614, 820 ], [ 619, 801, 696, 820 ], [ 181, 818, 205, 838 ], [ 210, 818, 272, 838 ], [ 278, 818, 305, 838 ], [ 311, 818, 377, 838 ], [ 383, 818, 399, 838 ], [ 405, 818, 433, 838 ], [ 439, 818, 498, 838 ], [ 504, 818, 605, 838 ], [ 610, 818, 625, 838 ], [ 630, 818, 713, 838 ] ]
Provide an image enhancer Manager for public use at the Community Nedlands and Mt Service Centres Claremont Libraries. Provide a modified bus for Manager eligible community Community members to access the Service Centres services provided by Nedlands Community Care. Provide Well Aged Manager programs for the Community community. Service Centres Provide an audio loop for Manager hearing impaired clients in Community Centre Based Day Care Service Centres facility. Provide technology classes Manager and/or workshops at Community Nedlands Community Care. Service Centres Provide social activities Manager aimed at inclusion and Community
Provide an image enhancer for public use at the Nedlands and Mt Claremont Libraries. Manager Community Service Centres Provide a modified bus for eligible community members to access the services provided by Nedlands Community Care. Manager Community Service Centres Provide Well Aged programs for the community. Manager Community Service Centres Provide an audio loop for hearing impaired clients in Centre Based Day Care facility. Manager Community Service Centres Provide technology classes and/or workshops at Nedlands Community Care. Manager Community Service Centres Provide social activities aimed at inclusion and Manager Community
0.471444
[ 0, 1, 2, 3, 5, 6, 7, 8, 9, 11, 12, 13, 16, 17, 4, 10, 14, 15, 18, 19, 20, 21, 22, 24, 25, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 23, 26, 31, 32, 39, 40, 41, 43, 44, 45, 47, 42, 46, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 61, 62, 63, 64, 67, 55, 60, 65, 66, 68, 69, 70, 72, 73, 74, 76, 77, 78, 71, 75, 79, 80, 81, 82, 83, 85, 86, 87, 88, 84, 89 ]
M13%207116%20%20%20Disability%20Access%20and%20Inclusion%20Plan%20DAIP%202013%20-%202018_0.docx
task-1431-143
11
[ [ 85, 118, 141, 150 ], [ 146, 118, 165, 150 ], [ 169, 118, 215, 150 ], [ 219, 118, 289, 150 ], [ 783, 118, 848, 150 ], [ 85, 149, 105, 181 ], [ 109, 149, 153, 181 ], [ 157, 149, 184, 181 ], [ 189, 149, 203, 181 ], [ 207, 149, 230, 181 ], [ 783, 149, 867, 181 ], [ 85, 180, 155, 212 ], [ 160, 180, 188, 212 ], [ 192, 180, 211, 212 ], [ 783, 180, 838, 212 ], [ 843, 180, 901, 212 ], [ 85, 211, 162, 243 ], [ 167, 211, 235, 243 ], [ 85, 260, 141, 292 ], [ 146, 260, 155, 292 ], [ 160, 260, 223, 292 ], [ 227, 260, 254, 292 ], [ 259, 260, 278, 292 ], [ 785, 260, 851, 292 ], [ 85, 291, 137, 323 ], [ 141, 291, 222, 323 ], [ 785, 291, 870, 323 ], [ 85, 322, 154, 354 ], [ 159, 322, 173, 354 ], [ 178, 322, 229, 354 ], [ 234, 322, 257, 354 ], [ 785, 322, 841, 354 ], [ 846, 322, 904, 354 ], [ 85, 353, 146, 386 ], [ 151, 353, 214, 386 ], [ 219, 353, 237, 386 ], [ 85, 384, 155, 417 ], [ 160, 384, 244, 417 ], [ 249, 384, 289, 417 ], [ 85, 433, 141, 465 ], [ 146, 433, 179, 465 ], [ 183, 433, 222, 465 ], [ 785, 433, 851, 465 ], [ 85, 464, 155, 496 ], [ 160, 464, 179, 496 ], [ 184, 464, 207, 496 ], [ 785, 464, 870, 496 ], [ 85, 495, 170, 527 ], [ 785, 495, 841, 527 ], [ 846, 495, 904, 527 ], [ 85, 544, 141, 576 ], [ 146, 544, 165, 576 ], [ 169, 544, 210, 576 ], [ 215, 544, 246, 576 ], [ 251, 544, 270, 576 ], [ 785, 544, 851, 576 ], [ 85, 575, 141, 607 ], [ 145, 575, 209, 607 ], [ 214, 575, 261, 607 ], [ 265, 575, 278, 607 ], [ 785, 575, 870, 607 ], [ 85, 606, 135, 639 ], [ 140, 606, 187, 639 ], [ 191, 606, 221, 639 ], [ 226, 606, 262, 639 ], [ 785, 606, 841, 639 ], [ 846, 606, 904, 639 ], [ 85, 637, 136, 670 ], [ 85, 686, 141, 718 ], [ 146, 686, 227, 718 ], [ 231, 686, 286, 718 ], [ 785, 686, 851, 718 ], [ 85, 717, 132, 750 ], [ 137, 717, 216, 750 ], [ 221, 717, 235, 750 ], [ 785, 717, 870, 750 ], [ 85, 748, 155, 781 ], [ 160, 748, 244, 781 ], [ 249, 748, 289, 781 ], [ 785, 748, 841, 781 ], [ 846, 748, 904, 781 ], [ 85, 797, 141, 829 ], [ 146, 797, 189, 829 ], [ 193, 797, 257, 829 ], [ 785, 797, 851, 829 ], [ 85, 828, 130, 860 ], [ 135, 828, 149, 860 ], [ 154, 828, 218, 860 ], [ 223, 828, 251, 860 ], [ 785, 828, 870, 860 ] ]
[ [ 85, 118, 141, 150 ], [ 146, 118, 165, 150 ], [ 169, 118, 215, 150 ], [ 219, 118, 289, 150 ], [ 85, 149, 105, 181 ], [ 109, 149, 153, 181 ], [ 157, 149, 184, 181 ], [ 189, 149, 203, 181 ], [ 207, 149, 230, 181 ], [ 85, 180, 155, 212 ], [ 160, 180, 188, 212 ], [ 192, 180, 211, 212 ], [ 85, 211, 162, 243 ], [ 167, 211, 235, 243 ], [ 783, 118, 848, 150 ], [ 783, 149, 867, 181 ], [ 783, 180, 838, 212 ], [ 843, 180, 901, 212 ], [ 85, 260, 141, 292 ], [ 146, 260, 155, 292 ], [ 160, 260, 223, 292 ], [ 227, 260, 254, 292 ], [ 259, 260, 278, 292 ], [ 85, 291, 137, 323 ], [ 141, 291, 222, 323 ], [ 85, 322, 154, 354 ], [ 159, 322, 173, 354 ], [ 178, 322, 229, 354 ], [ 234, 322, 257, 354 ], [ 85, 353, 146, 386 ], [ 151, 353, 214, 386 ], [ 219, 353, 237, 386 ], [ 85, 384, 155, 417 ], [ 160, 384, 244, 417 ], [ 249, 384, 289, 417 ], [ 785, 260, 851, 292 ], [ 785, 291, 870, 323 ], [ 785, 322, 841, 354 ], [ 846, 322, 904, 354 ], [ 85, 433, 141, 465 ], [ 146, 433, 179, 465 ], [ 183, 433, 222, 465 ], [ 85, 464, 155, 496 ], [ 160, 464, 179, 496 ], [ 184, 464, 207, 496 ], [ 85, 495, 170, 527 ], [ 785, 433, 851, 465 ], [ 785, 464, 870, 496 ], [ 785, 495, 841, 527 ], [ 846, 495, 904, 527 ], [ 85, 544, 141, 576 ], [ 146, 544, 165, 576 ], [ 169, 544, 210, 576 ], [ 215, 544, 246, 576 ], [ 251, 544, 270, 576 ], [ 85, 575, 141, 607 ], [ 145, 575, 209, 607 ], [ 214, 575, 261, 607 ], [ 265, 575, 278, 607 ], [ 85, 606, 135, 639 ], [ 140, 606, 187, 639 ], [ 191, 606, 221, 639 ], [ 226, 606, 262, 639 ], [ 85, 637, 136, 670 ], [ 785, 544, 851, 576 ], [ 785, 575, 870, 607 ], [ 785, 606, 841, 639 ], [ 846, 606, 904, 639 ], [ 85, 686, 141, 718 ], [ 146, 686, 227, 718 ], [ 231, 686, 286, 718 ], [ 85, 717, 132, 750 ], [ 137, 717, 216, 750 ], [ 221, 717, 235, 750 ], [ 85, 748, 155, 781 ], [ 160, 748, 244, 781 ], [ 249, 748, 289, 781 ], [ 785, 686, 851, 718 ], [ 785, 717, 870, 750 ], [ 785, 748, 841, 781 ], [ 846, 748, 904, 781 ], [ 85, 797, 141, 829 ], [ 146, 797, 189, 829 ], [ 193, 797, 257, 829 ], [ 85, 828, 130, 860 ], [ 135, 828, 149, 860 ], [ 154, 828, 218, 860 ], [ 223, 828, 251, 860 ], [ 785, 797, 851, 829 ], [ 785, 828, 870, 860 ] ]
Poultry meat (in the fat) 0.5 APVMA Etoxazole 5 Hops, dry 7 15 United States <1 <1 Tea, green, black 15 Tea, Green, Black (black, Codex <1 <1 fermented and dried) 15 Fenbuconazole 12 Cranberry 0.5 1 United States <1 <1 Fenbutatin-oxide 95 Not required Not required Grapes [except wine grapes] 5 Grapes 5 United States Fenitrothion Not required Not required Oilseeds Delete T0.1 APVMA Add 0.1 Pulses Delete T0.1 APVMA Add 0.1 Fenpropathrin 33 Stone fruits [except cherry 1.4 Commodity not listed United States Worst case: Worst case: and peach] 95 - Nectarine 59 - Nectarine Fenpyroximate 29 Cherries 2 Commodity not listed United States 85 29 Grapes 1 0.1 United States 86 75 Hops, dry 10 10 United States 29 11 Tea, green, black 0.1 Commodity not listed European Union <1 <1 Fenvalerate Not required Not required Pome fruits Delete 1 APVMA Stone fruits Delete 1 APVMA Flonicamid Chemical not listed 8 Hops, dry 7 United States 16 6 Flubendiamide 20 Spices 0.02 Commodity not listed European Union <1 <1 Tea, green, black 0.02 Tea, Green, Black (black, European Union <1 <1 fermented and dried) 50 Fluopyram 17 Cherries 0.6 0.7 United States 2 <1
Poultry meat (in the fat) 0.5 APVMA Etoxazole 5 Hops, dry 7 15 United States <1 <1 Tea, green, black 15 Tea, Green, Black (black, fermented and dried) 15 Codex <1 <1 Fenbuconazole 12 Cranberry 0.5 1 United States <1 <1 Fenbutatin-oxide 95 Not required Not required Grapes [except wine grapes] 5 Grapes 5 United States Fenitrothion Not required Not required Oilseeds Delete T0.1 Add 0.1 APVMA Pulses Delete T0.1 Add 0.1 APVMA Fenpropathrin 33 Stone fruits [except cherry and peach] 1.4 Commodity not listed United States Worst case: 95 - Nectarine Worst case: 59 - Nectarine Fenpyroximate 29 Cherries 2 Commodity not listed United States 85 29 Grapes 1 0.1 United States 86 75 Hops, dry 10 10 United States 29 11 Tea, green, black 0.1 Commodity not listed European Union <1 <1 Fenvalerate Not required Not required Pome fruits Delete 1 APVMA Stone fruits Delete 1 APVMA Flonicamid Chemical not listed 8 Hops, dry 7 United States 16 6 Flubendiamide 20 Spices 0.02 Commodity not listed European Union <1 <1 Tea, green, black 0.02 Tea, Green, Black (black, fermented and dried) 50 European Union <1 <1 Fluopyram 17 Cherries 0.6 0.7 United States 2 <1
0.877973
[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 28, 29, 30, 31, 25, 26, 27, 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, 65, 66, 64, 67, 68, 69, 71, 72, 70, 73, 74, 75, 76, 77, 78, 89, 90, 79, 80, 81, 82, 83, 84, 85, 86, 91, 92, 93, 87, 88, 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, 184, 185, 186, 187, 180, 181, 182, 183, 188, 189, 190, 191, 192, 193, 194, 195, 196 ]
M1010-MRLs-CFS-SD1.docx
task-1431-19
7
[ [ 132, 196, 169, 219 ], [ 172, 196, 199, 219 ], [ 202, 196, 215, 219 ], [ 219, 196, 235, 219 ], [ 238, 196, 256, 219 ], [ 332, 196, 349, 219 ], [ 606, 196, 648, 219 ], [ 84, 216, 139, 239 ], [ 710, 216, 716, 239 ], [ 132, 235, 163, 258 ], [ 166, 235, 183, 258 ], [ 337, 235, 344, 258 ], [ 473, 235, 486, 258 ], [ 591, 235, 625, 258 ], [ 629, 235, 662, 258 ], [ 783, 235, 796, 258 ], [ 871, 235, 885, 258 ], [ 132, 255, 156, 278 ], [ 159, 255, 193, 278 ], [ 196, 255, 224, 278 ], [ 334, 255, 347, 278 ], [ 412, 255, 436, 278 ], [ 439, 255, 476, 278 ], [ 479, 255, 508, 278 ], [ 511, 255, 546, 278 ], [ 610, 255, 644, 278 ], [ 783, 255, 796, 278 ], [ 871, 255, 885, 278 ], [ 416, 274, 470, 297 ], [ 473, 274, 492, 297 ], [ 496, 274, 526, 297 ], [ 530, 274, 543, 297 ], [ 84, 294, 170, 318 ], [ 706, 295, 719, 318 ], [ 132, 314, 185, 337 ], [ 332, 314, 349, 337 ], [ 476, 314, 483, 337 ], [ 591, 314, 625, 337 ], [ 629, 314, 662, 337 ], [ 783, 314, 796, 337 ], [ 871, 314, 885, 337 ], [ 84, 334, 179, 357 ], [ 706, 335, 719, 358 ], [ 757, 335, 775, 358 ], [ 778, 335, 822, 358 ], [ 845, 335, 864, 358 ], [ 867, 335, 911, 358 ], [ 132, 354, 171, 377 ], [ 174, 354, 213, 377 ], [ 216, 354, 240, 377 ], [ 244, 354, 283, 377 ], [ 337, 354, 344, 377 ], [ 455, 354, 494, 377 ], [ 497, 354, 504, 377 ], [ 591, 354, 625, 377 ], [ 629, 354, 662, 377 ], [ 84, 374, 153, 397 ], [ 447, 374, 465, 397 ], [ 468, 374, 512, 397 ], [ 688, 374, 706, 397 ], [ 710, 374, 753, 397 ], [ 132, 394, 178, 417 ], [ 310, 394, 344, 417 ], [ 347, 394, 371, 417 ], [ 606, 394, 648, 417 ], [ 320, 414, 341, 437 ], [ 344, 414, 361, 437 ], [ 132, 433, 168, 456 ], [ 310, 433, 344, 456 ], [ 347, 433, 371, 456 ], [ 606, 433, 648, 456 ], [ 320, 452, 341, 475 ], [ 344, 452, 361, 475 ], [ 84, 473, 164, 496 ], [ 706, 473, 719, 496 ], [ 132, 492, 163, 515 ], [ 166, 492, 192, 515 ], [ 196, 492, 234, 515 ], [ 237, 492, 270, 515 ], [ 332, 492, 349, 515 ], [ 424, 492, 484, 515 ], [ 487, 492, 504, 515 ], [ 507, 492, 535, 515 ], [ 591, 492, 625, 515 ], [ 629, 492, 662, 515 ], [ 758, 492, 789, 515 ], [ 792, 492, 821, 515 ], [ 847, 492, 878, 515 ], [ 881, 492, 909, 515 ], [ 132, 512, 152, 535 ], [ 155, 512, 191, 535 ], [ 752, 512, 765, 535 ], [ 768, 512, 772, 535 ], [ 776, 512, 826, 535 ], [ 868, 512, 881, 535 ], [ 884, 512, 888, 535 ], [ 853, 531, 903, 554 ], [ 84, 551, 168, 574 ], [ 706, 551, 719, 574 ], [ 132, 571, 177, 594 ], [ 337, 571, 344, 594 ], [ 424, 571, 484, 594 ], [ 487, 571, 504, 594 ], [ 507, 571, 535, 594 ], [ 591, 571, 625, 594 ], [ 629, 571, 662, 594 ], [ 783, 571, 796, 594 ], [ 871, 571, 885, 594 ], [ 132, 591, 171, 614 ], [ 337, 591, 344, 614 ], [ 471, 591, 488, 614 ], [ 591, 591, 625, 614 ], [ 629, 591, 662, 614 ], [ 783, 591, 796, 614 ], [ 871, 591, 885, 614 ], [ 132, 611, 163, 634 ], [ 166, 611, 183, 634 ], [ 334, 611, 347, 634 ], [ 473, 611, 486, 634 ], [ 591, 611, 625, 634 ], [ 629, 611, 662, 634 ], [ 783, 611, 796, 634 ], [ 871, 611, 885, 634 ], [ 132, 630, 156, 653 ], [ 159, 630, 193, 653 ], [ 196, 630, 224, 653 ], [ 332, 630, 349, 653 ], [ 424, 630, 484, 653 ], [ 487, 630, 504, 653 ], [ 507, 630, 535, 653 ], [ 584, 630, 635, 653 ], [ 639, 630, 670, 653 ], [ 783, 630, 796, 653 ], [ 871, 630, 885, 653 ], [ 84, 650, 150, 673 ], [ 447, 650, 465, 673 ], [ 468, 650, 512, 673 ], [ 688, 650, 706, 673 ], [ 710, 650, 753, 673 ], [ 132, 670, 163, 693 ], [ 167, 670, 192, 693 ], [ 318, 670, 353, 693 ], [ 356, 670, 362, 693 ], [ 606, 670, 648, 693 ], [ 132, 690, 163, 713 ], [ 166, 690, 192, 713 ], [ 318, 690, 353, 713 ], [ 356, 690, 362, 713 ], [ 606, 690, 648, 713 ], [ 84, 710, 146, 733 ], [ 429, 710, 479, 733 ], [ 482, 710, 498, 733 ], [ 502, 710, 530, 733 ], [ 710, 710, 716, 733 ], [ 132, 730, 163, 753 ], [ 166, 730, 183, 753 ], [ 337, 730, 344, 753 ], [ 591, 730, 625, 753 ], [ 629, 730, 662, 753 ], [ 783, 730, 796, 753 ], [ 875, 730, 881, 753 ], [ 84, 750, 167, 773 ], [ 706, 750, 719, 773 ], [ 132, 770, 168, 793 ], [ 329, 770, 352, 793 ], [ 424, 770, 484, 793 ], [ 487, 770, 504, 793 ], [ 507, 770, 535, 793 ], [ 584, 770, 635, 793 ], [ 639, 770, 670, 793 ], [ 783, 770, 796, 793 ], [ 871, 770, 885, 793 ], [ 132, 789, 156, 812 ], [ 159, 789, 193, 812 ], [ 196, 789, 224, 812 ], [ 329, 789, 352, 812 ], [ 412, 789, 436, 812 ], [ 439, 789, 476, 812 ], [ 479, 789, 508, 812 ], [ 511, 789, 546, 812 ], [ 584, 789, 635, 812 ], [ 639, 789, 670, 812 ], [ 783, 789, 796, 812 ], [ 871, 789, 885, 812 ], [ 416, 809, 470, 832 ], [ 473, 809, 492, 832 ], [ 496, 809, 526, 832 ], [ 530, 809, 543, 832 ], [ 84, 829, 144, 852 ], [ 706, 829, 719, 852 ], [ 132, 849, 177, 872 ], [ 332, 849, 349, 872 ], [ 471, 849, 488, 872 ], [ 591, 849, 625, 872 ], [ 629, 849, 662, 872 ], [ 786, 849, 793, 872 ], [ 871, 849, 885, 872 ] ]
[ [ 132, 196, 169, 219 ], [ 172, 196, 199, 219 ], [ 202, 196, 215, 219 ], [ 219, 196, 235, 219 ], [ 238, 196, 256, 219 ], [ 332, 196, 349, 219 ], [ 606, 196, 648, 219 ], [ 84, 216, 139, 239 ], [ 710, 216, 716, 239 ], [ 132, 235, 163, 258 ], [ 166, 235, 183, 258 ], [ 337, 235, 344, 258 ], [ 473, 235, 486, 258 ], [ 591, 235, 625, 258 ], [ 629, 235, 662, 258 ], [ 783, 235, 796, 258 ], [ 871, 235, 885, 258 ], [ 132, 255, 156, 278 ], [ 159, 255, 193, 278 ], [ 196, 255, 224, 278 ], [ 334, 255, 347, 278 ], [ 412, 255, 436, 278 ], [ 439, 255, 476, 278 ], [ 479, 255, 508, 278 ], [ 511, 255, 546, 278 ], [ 416, 274, 470, 297 ], [ 473, 274, 492, 297 ], [ 496, 274, 526, 297 ], [ 530, 274, 543, 297 ], [ 610, 255, 644, 278 ], [ 783, 255, 796, 278 ], [ 871, 255, 885, 278 ], [ 84, 294, 170, 318 ], [ 706, 295, 719, 318 ], [ 132, 314, 185, 337 ], [ 332, 314, 349, 337 ], [ 476, 314, 483, 337 ], [ 591, 314, 625, 337 ], [ 629, 314, 662, 337 ], [ 783, 314, 796, 337 ], [ 871, 314, 885, 337 ], [ 84, 334, 179, 357 ], [ 706, 335, 719, 358 ], [ 757, 335, 775, 358 ], [ 778, 335, 822, 358 ], [ 845, 335, 864, 358 ], [ 867, 335, 911, 358 ], [ 132, 354, 171, 377 ], [ 174, 354, 213, 377 ], [ 216, 354, 240, 377 ], [ 244, 354, 283, 377 ], [ 337, 354, 344, 377 ], [ 455, 354, 494, 377 ], [ 497, 354, 504, 377 ], [ 591, 354, 625, 377 ], [ 629, 354, 662, 377 ], [ 84, 374, 153, 397 ], [ 447, 374, 465, 397 ], [ 468, 374, 512, 397 ], [ 688, 374, 706, 397 ], [ 710, 374, 753, 397 ], [ 132, 394, 178, 417 ], [ 310, 394, 344, 417 ], [ 347, 394, 371, 417 ], [ 320, 414, 341, 437 ], [ 344, 414, 361, 437 ], [ 606, 394, 648, 417 ], [ 132, 433, 168, 456 ], [ 310, 433, 344, 456 ], [ 347, 433, 371, 456 ], [ 320, 452, 341, 475 ], [ 344, 452, 361, 475 ], [ 606, 433, 648, 456 ], [ 84, 473, 164, 496 ], [ 706, 473, 719, 496 ], [ 132, 492, 163, 515 ], [ 166, 492, 192, 515 ], [ 196, 492, 234, 515 ], [ 237, 492, 270, 515 ], [ 132, 512, 152, 535 ], [ 155, 512, 191, 535 ], [ 332, 492, 349, 515 ], [ 424, 492, 484, 515 ], [ 487, 492, 504, 515 ], [ 507, 492, 535, 515 ], [ 591, 492, 625, 515 ], [ 629, 492, 662, 515 ], [ 758, 492, 789, 515 ], [ 792, 492, 821, 515 ], [ 752, 512, 765, 535 ], [ 768, 512, 772, 535 ], [ 776, 512, 826, 535 ], [ 847, 492, 878, 515 ], [ 881, 492, 909, 515 ], [ 868, 512, 881, 535 ], [ 884, 512, 888, 535 ], [ 853, 531, 903, 554 ], [ 84, 551, 168, 574 ], [ 706, 551, 719, 574 ], [ 132, 571, 177, 594 ], [ 337, 571, 344, 594 ], [ 424, 571, 484, 594 ], [ 487, 571, 504, 594 ], [ 507, 571, 535, 594 ], [ 591, 571, 625, 594 ], [ 629, 571, 662, 594 ], [ 783, 571, 796, 594 ], [ 871, 571, 885, 594 ], [ 132, 591, 171, 614 ], [ 337, 591, 344, 614 ], [ 471, 591, 488, 614 ], [ 591, 591, 625, 614 ], [ 629, 591, 662, 614 ], [ 783, 591, 796, 614 ], [ 871, 591, 885, 614 ], [ 132, 611, 163, 634 ], [ 166, 611, 183, 634 ], [ 334, 611, 347, 634 ], [ 473, 611, 486, 634 ], [ 591, 611, 625, 634 ], [ 629, 611, 662, 634 ], [ 783, 611, 796, 634 ], [ 871, 611, 885, 634 ], [ 132, 630, 156, 653 ], [ 159, 630, 193, 653 ], [ 196, 630, 224, 653 ], [ 332, 630, 349, 653 ], [ 424, 630, 484, 653 ], [ 487, 630, 504, 653 ], [ 507, 630, 535, 653 ], [ 584, 630, 635, 653 ], [ 639, 630, 670, 653 ], [ 783, 630, 796, 653 ], [ 871, 630, 885, 653 ], [ 84, 650, 150, 673 ], [ 447, 650, 465, 673 ], [ 468, 650, 512, 673 ], [ 688, 650, 706, 673 ], [ 710, 650, 753, 673 ], [ 132, 670, 163, 693 ], [ 167, 670, 192, 693 ], [ 318, 670, 353, 693 ], [ 356, 670, 362, 693 ], [ 606, 670, 648, 693 ], [ 132, 690, 163, 713 ], [ 166, 690, 192, 713 ], [ 318, 690, 353, 713 ], [ 356, 690, 362, 713 ], [ 606, 690, 648, 713 ], [ 84, 710, 146, 733 ], [ 429, 710, 479, 733 ], [ 482, 710, 498, 733 ], [ 502, 710, 530, 733 ], [ 710, 710, 716, 733 ], [ 132, 730, 163, 753 ], [ 166, 730, 183, 753 ], [ 337, 730, 344, 753 ], [ 591, 730, 625, 753 ], [ 629, 730, 662, 753 ], [ 783, 730, 796, 753 ], [ 875, 730, 881, 753 ], [ 84, 750, 167, 773 ], [ 706, 750, 719, 773 ], [ 132, 770, 168, 793 ], [ 329, 770, 352, 793 ], [ 424, 770, 484, 793 ], [ 487, 770, 504, 793 ], [ 507, 770, 535, 793 ], [ 584, 770, 635, 793 ], [ 639, 770, 670, 793 ], [ 783, 770, 796, 793 ], [ 871, 770, 885, 793 ], [ 132, 789, 156, 812 ], [ 159, 789, 193, 812 ], [ 196, 789, 224, 812 ], [ 329, 789, 352, 812 ], [ 412, 789, 436, 812 ], [ 439, 789, 476, 812 ], [ 479, 789, 508, 812 ], [ 511, 789, 546, 812 ], [ 416, 809, 470, 832 ], [ 473, 809, 492, 832 ], [ 496, 809, 526, 832 ], [ 530, 809, 543, 832 ], [ 584, 789, 635, 812 ], [ 639, 789, 670, 812 ], [ 783, 789, 796, 812 ], [ 871, 789, 885, 812 ], [ 84, 829, 144, 852 ], [ 706, 829, 719, 852 ], [ 132, 849, 177, 872 ], [ 332, 849, 349, 872 ], [ 471, 849, 488, 872 ], [ 591, 849, 625, 872 ], [ 629, 849, 662, 872 ], [ 786, 849, 793, 872 ], [ 871, 849, 885, 872 ] ]
Spring onion 15 Boscalid Commodities of plant origin: Boscalid Commodities of animal origin: Sum of boscalid, ” Fenbutatin oxide nicotinamide and the glucuronide conjugate of Bis[tris(2-methyl-2-phenylpropyl)tin]-oxide “ nicotinamide, expressed as boscalid equivalents Grapes [except wine grapes] 5 “ Grapes 5 ” Fenitrothion ” Fenitrothion Buprofezin “ Buprofezin Oilseeds 0.1 “ Pulses [except soya bean (dry)] 0.1 Grapes 2.5 ” ” Fluxapyroxad Carfentrazone-ethyl Commodities of plant origin: Fluxapyroxad Carfentrazone-ethyl Commodities of animal origin for enforcement: Fluxapyroxad “ Hops, dry 0.1 “ Barley 3 ” Chlorantraniliprole ” Plant commodities and animal commodities other Forchlorfenuron than milk: Chlorantraniliprole Forchlorfenuron Milk: Sum of chlorantraniliprole, “ Grapes 0.03 and ” Glyphosate Sum of glyphosate and Aminomethylphosphonic acid (AMPA) metabolite, expressed as glyphosate expressed as chlorantraniliprole “ “ Soya bean (dry) 20 Fruiting vegetables, cucurbits 0.5 Legume vegetables 2 ” Imazamox ” Imazamox Chlorpyrifos “ Chlorpyrifos Soya bean (dry) 0.1 “ Citrus fruits 1 ” Imazapic ” Sum of imazapic and its hydroxymethyl derivative Cypermethrin “ Cypermethrin, sum of isomers Sugar cane 0.1 “ Grapes 2 ” Imazapyr ” Imazapyr Cyprodinil “ Cyprodinil Maize 0.1 “ Grapes 3 ” Imidacloprid ” Sum of imidacloprid and metabolites containing the Dimethomorph 6-chloropyridinylmethylene moiety, expressed as Sum of E and Z isomers of dimethomorph imidacloprid “ “ Grapes 3 Grapes 1 Onion, bulb 0.6 Potato 0.05 ” Shallot 0.6
Boscalid Commodities of plant origin: Boscalid Commodities of animal origin: Sum of boscalid, nicotinamide and the glucuronide conjugate of nicotinamide, expressed as boscalid equivalents “ Grapes 5 ” Buprofezin Buprofezin “ Grapes 2.5 ” Carfentrazone-ethyl Carfentrazone-ethyl “ Hops, dry 0.1 ” Chlorantraniliprole Plant commodities and animal commodities other than milk: Chlorantraniliprole Milk: Sum of chlorantraniliprole, and expressed as chlorantraniliprole “ Fruiting vegetables, cucurbits 0.5 Legume vegetables 2 ” Chlorpyrifos Chlorpyrifos “ Citrus fruits 1 ” Cypermethrin Cypermethrin, sum of isomers “ Grapes 2 ” Cyprodinil Cyprodinil “ Grapes 3 ” Dimethomorph Sum of E and Z isomers of dimethomorph “ Grapes 3 Onion, bulb 0.6 Potato 0.05 Shallot 0.6 Spring onion 15 ” Fenbutatin oxide Bis[tris(2-methyl-2-phenylpropyl)tin]-oxide “ Grapes [except wine grapes] 5 ” Fenitrothion Fenitrothion “ Oilseeds 0.1 Pulses [except soya bean (dry)] 0.1 ” Fluxapyroxad Commodities of plant origin: Fluxapyroxad Commodities of animal origin for enforcement: Fluxapyroxad “ Barley 3 ” Forchlorfenuron Forchlorfenuron “ Grapes 0.03 ” Glyphosate Sum of glyphosate and Aminomethylphosphonic acid (AMPA) metabolite, expressed as glyphosate “ Soya bean (dry) 20 ” Imazamox Imazamox “ Soya bean (dry) 0.1 ” Imazapic Sum of imazapic and its hydroxymethyl derivative “ Sugar cane 0.1 ” Imazapyr Imazapyr “ Maize 0.1 ” Imidacloprid Sum of imidacloprid and metabolites containing the 6-chloropyridinylmethylene moiety, expressed as imidacloprid “ Grapes 1 ”
0.588986
[ 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 19, 20, 21, 22, 23, 24, 27, 28, 29, 30, 31, 37, 38, 39, 42, 44, 46, 49, 56, 57, 59, 61, 67, 75, 76, 77, 78, 82, 83, 85, 86, 87, 88, 89, 90, 92, 93, 94, 96, 97, 98, 99, 103, 117, 118, 119, 121, 126, 127, 128, 129, 130, 131, 132, 135, 137, 139, 144, 145, 146, 147, 150, 158, 160, 161, 162, 163, 167, 168, 169, 172, 174, 176, 179, 180, 181, 184, 192, 197, 198, 199, 200, 201, 202, 203, 204, 206, 208, 209, 212, 213, 214, 215, 216, 218, 219, 0, 1, 2, 16, 17, 18, 25, 26, 32, 33, 34, 35, 36, 40, 41, 43, 45, 47, 48, 50, 51, 52, 53, 54, 55, 58, 60, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 79, 80, 81, 84, 91, 95, 100, 101, 102, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 120, 122, 123, 124, 125, 133, 134, 136, 138, 140, 141, 142, 143, 148, 149, 151, 152, 153, 154, 155, 156, 157, 159, 164, 165, 166, 170, 171, 173, 175, 177, 178, 182, 183, 185, 186, 187, 188, 189, 190, 191, 193, 194, 195, 196, 205, 207, 210, 211, 217 ]
M1010-MRLs-CFS.docx
task-1431-20
18
[ [ 522, 82, 566, 97 ], [ 570, 82, 607, 97 ], [ 860, 82, 877, 97 ], [ 270, 83, 333, 97 ], [ 175, 95, 264, 109 ], [ 268, 95, 280, 109 ], [ 285, 95, 318, 109 ], [ 322, 95, 363, 110 ], [ 371, 95, 428, 110 ], [ 135, 107, 224, 122 ], [ 228, 107, 240, 122 ], [ 245, 107, 289, 122 ], [ 293, 107, 335, 122 ], [ 339, 107, 370, 122 ], [ 374, 107, 387, 122 ], [ 391, 107, 450, 122 ], [ 875, 109, 880, 122 ], [ 639, 121, 716, 136 ], [ 720, 121, 760, 136 ], [ 139, 132, 224, 147 ], [ 228, 132, 253, 147 ], [ 257, 132, 278, 147 ], [ 283, 132, 360, 147 ], [ 365, 132, 430, 147 ], [ 435, 132, 447, 147 ], [ 560, 134, 839, 149 ], [ 515, 149, 521, 162 ], [ 140, 157, 229, 171 ], [ 233, 157, 303, 171 ], [ 307, 157, 323, 171 ], [ 327, 157, 383, 171 ], [ 387, 157, 463, 171 ], [ 522, 161, 571, 176 ], [ 576, 161, 624, 176 ], [ 629, 161, 660, 176 ], [ 664, 161, 715, 176 ], [ 868, 161, 877, 176 ], [ 118, 171, 123, 184 ], [ 124, 184, 174, 198 ], [ 471, 184, 479, 198 ], [ 875, 188, 880, 201 ], [ 655, 200, 743, 215 ], [ 477, 211, 483, 224 ], [ 659, 213, 739, 227 ], [ 262, 223, 341, 238 ], [ 515, 227, 521, 241 ], [ 265, 235, 338, 250 ], [ 522, 240, 581, 255 ], [ 856, 240, 877, 255 ], [ 118, 250, 123, 263 ], [ 522, 252, 567, 267 ], [ 572, 252, 620, 267 ], [ 624, 252, 656, 267 ], [ 661, 252, 694, 267 ], [ 699, 252, 734, 267 ], [ 856, 252, 877, 267 ], [ 124, 263, 174, 277 ], [ 458, 263, 479, 277 ], [ 875, 279, 880, 292 ], [ 477, 290, 483, 303 ], [ 650, 291, 748, 306 ], [ 231, 302, 372, 317 ], [ 556, 304, 644, 318 ], [ 648, 304, 661, 318 ], [ 665, 304, 698, 318 ], [ 702, 304, 744, 319 ], [ 752, 304, 842, 319 ], [ 235, 314, 368, 329 ], [ 591, 316, 679, 331 ], [ 683, 316, 696, 331 ], [ 700, 316, 745, 331 ], [ 749, 316, 786, 331 ], [ 790, 316, 808, 331 ], [ 606, 328, 694, 343 ], [ 702, 328, 793, 343 ], [ 118, 329, 123, 342 ], [ 124, 341, 164, 356 ], [ 168, 341, 189, 356 ], [ 458, 341, 479, 356 ], [ 516, 343, 522, 356 ], [ 522, 356, 565, 370 ], [ 868, 356, 877, 370 ], [ 477, 368, 483, 382 ], [ 234, 381, 369, 395 ], [ 875, 383, 880, 396 ], [ 137, 393, 171, 408 ], [ 176, 393, 260, 408 ], [ 265, 393, 290, 408 ], [ 294, 393, 339, 408 ], [ 343, 393, 428, 408 ], [ 432, 393, 466, 408 ], [ 640, 395, 758, 410 ], [ 206, 405, 235, 420 ], [ 240, 405, 271, 420 ], [ 275, 405, 397, 420 ], [ 646, 407, 753, 422 ], [ 147, 418, 178, 432 ], [ 182, 418, 213, 432 ], [ 217, 418, 230, 432 ], [ 234, 418, 358, 432 ], [ 515, 422, 521, 435 ], [ 522, 435, 571, 449 ], [ 847, 435, 877, 449 ], [ 387, 455, 412, 469 ], [ 875, 461, 880, 475 ], [ 658, 474, 740, 488 ], [ 537, 486, 569, 501 ], [ 573, 486, 586, 501 ], [ 590, 486, 663, 501 ], [ 667, 486, 692, 501 ], [ 696, 486, 861, 501 ], [ 532, 499, 560, 513 ], [ 564, 499, 617, 513 ], [ 621, 499, 695, 513 ], [ 699, 499, 769, 513 ], [ 773, 499, 789, 513 ], [ 793, 499, 866, 513 ], [ 195, 504, 265, 519 ], [ 269, 504, 285, 519 ], [ 289, 504, 408, 519 ], [ 515, 513, 521, 526 ], [ 119, 519, 124, 532 ], [ 522, 526, 556, 540 ], [ 561, 526, 594, 540 ], [ 598, 526, 630, 540 ], [ 860, 526, 877, 540 ], [ 124, 531, 175, 546 ], [ 179, 531, 256, 546 ], [ 261, 531, 321, 546 ], [ 458, 531, 479, 546 ], [ 124, 543, 179, 558 ], [ 183, 543, 256, 558 ], [ 471, 543, 479, 558 ], [ 875, 553, 880, 566 ], [ 663, 565, 736, 580 ], [ 477, 570, 483, 583 ], [ 664, 577, 734, 592 ], [ 257, 583, 346, 597 ], [ 515, 592, 521, 605 ], [ 261, 595, 342, 610 ], [ 522, 605, 556, 619 ], [ 561, 605, 594, 619 ], [ 598, 605, 630, 619 ], [ 856, 605, 877, 619 ], [ 118, 610, 123, 623 ], [ 124, 622, 164, 637 ], [ 168, 622, 201, 637 ], [ 470, 622, 479, 637 ], [ 875, 632, 880, 645 ], [ 667, 644, 731, 659 ], [ 477, 649, 483, 662 ], [ 534, 656, 565, 671 ], [ 569, 656, 582, 671 ], [ 586, 656, 645, 671 ], [ 650, 656, 675, 671 ], [ 679, 656, 694, 671 ], [ 698, 656, 796, 671 ], [ 800, 656, 865, 671 ], [ 252, 661, 351, 676 ], [ 515, 671, 521, 684 ], [ 201, 674, 296, 688 ], [ 300, 674, 329, 688 ], [ 333, 674, 345, 688 ], [ 350, 674, 402, 688 ], [ 522, 684, 562, 698 ], [ 566, 684, 599, 698 ], [ 856, 684, 877, 698 ], [ 118, 689, 123, 702 ], [ 124, 701, 174, 716 ], [ 470, 701, 479, 716 ], [ 875, 710, 880, 724 ], [ 666, 723, 732, 737 ], [ 477, 728, 483, 741 ], [ 668, 735, 730, 750 ], [ 264, 740, 339, 755 ], [ 515, 750, 521, 763 ], [ 268, 753, 335, 767 ], [ 522, 762, 562, 777 ], [ 856, 762, 877, 777 ], [ 118, 767, 123, 781 ], [ 124, 780, 174, 795 ], [ 471, 780, 479, 795 ], [ 875, 789, 880, 803 ], [ 654, 802, 744, 816 ], [ 477, 807, 483, 820 ], [ 526, 814, 557, 829 ], [ 562, 814, 574, 829 ], [ 578, 814, 659, 829 ], [ 663, 814, 689, 829 ], [ 693, 814, 770, 829 ], [ 778, 814, 847, 829 ], [ 852, 814, 873, 829 ], [ 248, 819, 355, 834 ], [ 536, 826, 716, 841 ], [ 720, 826, 768, 841 ], [ 773, 826, 843, 841 ], [ 847, 826, 863, 841 ], [ 162, 832, 193, 846 ], [ 197, 832, 210, 846 ], [ 214, 832, 224, 846 ], [ 228, 832, 253, 846 ], [ 258, 832, 267, 846 ], [ 271, 832, 324, 846 ], [ 328, 832, 341, 846 ], [ 345, 832, 442, 846 ], [ 659, 839, 740, 853 ], [ 118, 846, 123, 859 ], [ 515, 853, 521, 867 ], [ 124, 859, 174, 873 ], [ 471, 859, 479, 873 ], [ 522, 866, 571, 881 ], [ 868, 866, 877, 881 ], [ 124, 871, 169, 886 ], [ 173, 871, 202, 886 ], [ 458, 871, 479, 886 ], [ 124, 883, 168, 898 ], [ 450, 883, 479, 898 ], [ 875, 893, 880, 906 ], [ 124, 896, 171, 910 ], [ 458, 896, 479, 910 ] ]
[ [ 270, 83, 333, 97 ], [ 175, 95, 264, 109 ], [ 268, 95, 280, 109 ], [ 285, 95, 318, 109 ], [ 322, 95, 363, 110 ], [ 371, 95, 428, 110 ], [ 135, 107, 224, 122 ], [ 228, 107, 240, 122 ], [ 245, 107, 289, 122 ], [ 293, 107, 335, 122 ], [ 339, 107, 370, 122 ], [ 374, 107, 387, 122 ], [ 391, 107, 450, 122 ], [ 139, 132, 224, 147 ], [ 228, 132, 253, 147 ], [ 257, 132, 278, 147 ], [ 283, 132, 360, 147 ], [ 365, 132, 430, 147 ], [ 435, 132, 447, 147 ], [ 140, 157, 229, 171 ], [ 233, 157, 303, 171 ], [ 307, 157, 323, 171 ], [ 327, 157, 383, 171 ], [ 387, 157, 463, 171 ], [ 118, 171, 123, 184 ], [ 124, 184, 174, 198 ], [ 471, 184, 479, 198 ], [ 477, 211, 483, 224 ], [ 262, 223, 341, 238 ], [ 265, 235, 338, 250 ], [ 118, 250, 123, 263 ], [ 124, 263, 174, 277 ], [ 458, 263, 479, 277 ], [ 477, 290, 483, 303 ], [ 231, 302, 372, 317 ], [ 235, 314, 368, 329 ], [ 118, 329, 123, 342 ], [ 124, 341, 164, 356 ], [ 168, 341, 189, 356 ], [ 458, 341, 479, 356 ], [ 477, 368, 483, 382 ], [ 234, 381, 369, 395 ], [ 137, 393, 171, 408 ], [ 176, 393, 260, 408 ], [ 265, 393, 290, 408 ], [ 294, 393, 339, 408 ], [ 343, 393, 428, 408 ], [ 432, 393, 466, 408 ], [ 206, 405, 235, 420 ], [ 240, 405, 271, 420 ], [ 275, 405, 397, 420 ], [ 147, 418, 178, 432 ], [ 182, 418, 213, 432 ], [ 217, 418, 230, 432 ], [ 234, 418, 358, 432 ], [ 387, 455, 412, 469 ], [ 195, 504, 265, 519 ], [ 269, 504, 285, 519 ], [ 289, 504, 408, 519 ], [ 119, 519, 124, 532 ], [ 124, 531, 175, 546 ], [ 179, 531, 256, 546 ], [ 261, 531, 321, 546 ], [ 458, 531, 479, 546 ], [ 124, 543, 179, 558 ], [ 183, 543, 256, 558 ], [ 471, 543, 479, 558 ], [ 477, 570, 483, 583 ], [ 257, 583, 346, 597 ], [ 261, 595, 342, 610 ], [ 118, 610, 123, 623 ], [ 124, 622, 164, 637 ], [ 168, 622, 201, 637 ], [ 470, 622, 479, 637 ], [ 477, 649, 483, 662 ], [ 252, 661, 351, 676 ], [ 201, 674, 296, 688 ], [ 300, 674, 329, 688 ], [ 333, 674, 345, 688 ], [ 350, 674, 402, 688 ], [ 118, 689, 123, 702 ], [ 124, 701, 174, 716 ], [ 470, 701, 479, 716 ], [ 477, 728, 483, 741 ], [ 264, 740, 339, 755 ], [ 268, 753, 335, 767 ], [ 118, 767, 123, 781 ], [ 124, 780, 174, 795 ], [ 471, 780, 479, 795 ], [ 477, 807, 483, 820 ], [ 248, 819, 355, 834 ], [ 162, 832, 193, 846 ], [ 197, 832, 210, 846 ], [ 214, 832, 224, 846 ], [ 228, 832, 253, 846 ], [ 258, 832, 267, 846 ], [ 271, 832, 324, 846 ], [ 328, 832, 341, 846 ], [ 345, 832, 442, 846 ], [ 118, 846, 123, 859 ], [ 124, 859, 174, 873 ], [ 471, 859, 479, 873 ], [ 124, 871, 169, 886 ], [ 173, 871, 202, 886 ], [ 458, 871, 479, 886 ], [ 124, 883, 168, 898 ], [ 450, 883, 479, 898 ], [ 124, 896, 171, 910 ], [ 458, 896, 479, 910 ], [ 522, 82, 566, 97 ], [ 570, 82, 607, 97 ], [ 860, 82, 877, 97 ], [ 875, 109, 880, 122 ], [ 639, 121, 716, 136 ], [ 720, 121, 760, 136 ], [ 560, 134, 839, 149 ], [ 515, 149, 521, 162 ], [ 522, 161, 571, 176 ], [ 576, 161, 624, 176 ], [ 629, 161, 660, 176 ], [ 664, 161, 715, 176 ], [ 868, 161, 877, 176 ], [ 875, 188, 880, 201 ], [ 655, 200, 743, 215 ], [ 659, 213, 739, 227 ], [ 515, 227, 521, 241 ], [ 522, 240, 581, 255 ], [ 856, 240, 877, 255 ], [ 522, 252, 567, 267 ], [ 572, 252, 620, 267 ], [ 624, 252, 656, 267 ], [ 661, 252, 694, 267 ], [ 699, 252, 734, 267 ], [ 856, 252, 877, 267 ], [ 875, 279, 880, 292 ], [ 650, 291, 748, 306 ], [ 556, 304, 644, 318 ], [ 648, 304, 661, 318 ], [ 665, 304, 698, 318 ], [ 702, 304, 744, 319 ], [ 752, 304, 842, 319 ], [ 591, 316, 679, 331 ], [ 683, 316, 696, 331 ], [ 700, 316, 745, 331 ], [ 749, 316, 786, 331 ], [ 790, 316, 808, 331 ], [ 606, 328, 694, 343 ], [ 702, 328, 793, 343 ], [ 516, 343, 522, 356 ], [ 522, 356, 565, 370 ], [ 868, 356, 877, 370 ], [ 875, 383, 880, 396 ], [ 640, 395, 758, 410 ], [ 646, 407, 753, 422 ], [ 515, 422, 521, 435 ], [ 522, 435, 571, 449 ], [ 847, 435, 877, 449 ], [ 875, 461, 880, 475 ], [ 658, 474, 740, 488 ], [ 537, 486, 569, 501 ], [ 573, 486, 586, 501 ], [ 590, 486, 663, 501 ], [ 667, 486, 692, 501 ], [ 696, 486, 861, 501 ], [ 532, 499, 560, 513 ], [ 564, 499, 617, 513 ], [ 621, 499, 695, 513 ], [ 699, 499, 769, 513 ], [ 773, 499, 789, 513 ], [ 793, 499, 866, 513 ], [ 515, 513, 521, 526 ], [ 522, 526, 556, 540 ], [ 561, 526, 594, 540 ], [ 598, 526, 630, 540 ], [ 860, 526, 877, 540 ], [ 875, 553, 880, 566 ], [ 663, 565, 736, 580 ], [ 664, 577, 734, 592 ], [ 515, 592, 521, 605 ], [ 522, 605, 556, 619 ], [ 561, 605, 594, 619 ], [ 598, 605, 630, 619 ], [ 856, 605, 877, 619 ], [ 875, 632, 880, 645 ], [ 667, 644, 731, 659 ], [ 534, 656, 565, 671 ], [ 569, 656, 582, 671 ], [ 586, 656, 645, 671 ], [ 650, 656, 675, 671 ], [ 679, 656, 694, 671 ], [ 698, 656, 796, 671 ], [ 800, 656, 865, 671 ], [ 515, 671, 521, 684 ], [ 522, 684, 562, 698 ], [ 566, 684, 599, 698 ], [ 856, 684, 877, 698 ], [ 875, 710, 880, 724 ], [ 666, 723, 732, 737 ], [ 668, 735, 730, 750 ], [ 515, 750, 521, 763 ], [ 522, 762, 562, 777 ], [ 856, 762, 877, 777 ], [ 875, 789, 880, 803 ], [ 654, 802, 744, 816 ], [ 526, 814, 557, 829 ], [ 562, 814, 574, 829 ], [ 578, 814, 659, 829 ], [ 663, 814, 689, 829 ], [ 693, 814, 770, 829 ], [ 778, 814, 847, 829 ], [ 852, 814, 873, 829 ], [ 536, 826, 716, 841 ], [ 720, 826, 768, 841 ], [ 773, 826, 843, 841 ], [ 847, 826, 863, 841 ], [ 659, 839, 740, 853 ], [ 515, 853, 521, 867 ], [ 522, 866, 571, 881 ], [ 868, 866, 877, 881 ], [ 875, 893, 880, 906 ] ]
Institutions of Higher Education may of to in the upper right block below. revise “State Ohio” “Owner” If the Project is locally administered, delete the signature in the lower left block and the “Owner’s Concurrence” associated rows of the table below. SIGNATURES IN WITNESS WHEREOF, the parties hereto have executed this Agreement as of the date set forth below: STATE OF OHIO «INSERT CM’S NAME» Signature Signature Printed Name Printed Name Title Title Date OWNER’S CONCURRENCE by «insert name» Owner’s Signature Printed Name Title Purchase Order No. If the CM is a corporation, partnership, sole proprietorship, or limited liability company, use the table above. If the CM is a joint venture or special purpose entity, use the table below. Then delete the unused table and this note. STATE OF OHIO «INSERT CM’S NAME» by «insert name» by «insert Contracting name» Joint Venturer/Member’s Authority’s Signature Signature Printed Name Printed Name Title Title Date
Institutions of Higher Education may revise “State of Ohio” to “Owner” in the upper right block below. If the Project is locally administered, delete the “Owner’s Concurrence” signature in the lower left block and the associated rows of the table below. SIGNATURES IN WITNESS WHEREOF, the parties hereto have executed this Agreement as of the date set forth below: «INSERT CM’S NAME» STATE OF OHIO Signature Signature Printed Name Printed Name Title Title Date OWNER’S CONCURRENCE by «insert Owner’s name» Signature Printed Name Title Purchase Order No. If the CM is a corporation, partnership, sole proprietorship, or limited liability company, use the table above. If the CM is a joint venture or special purpose entity, use the table below. Then delete the unused table and this note. «INSERT CM’S NAME» STATE OF OHIO by «insert Joint Venturer/Member’s name» by «insert Contracting Authority’s name» Signature Signature Printed Name Printed Name Title Title Date
0.799397
[ 0, 1, 2, 3, 4, 13, 14, 5, 15, 6, 16, 7, 8, 9, 10, 11, 12, 17, 18, 19, 20, 21, 22, 23, 24, 33, 34, 25, 26, 27, 28, 29, 30, 31, 32, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 62, 63, 64, 59, 60, 61, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 79, 78, 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, 130, 131, 132, 127, 128, 129, 133, 134, 140, 141, 135, 136, 137, 138, 142, 139, 143, 144, 145, 146, 147, 148, 149, 150, 151 ]
M170-00_52_23-Agreement_Form_CMR18.docx
task-1431-265
5
[ [ 88, 73, 166, 90 ], [ 170, 73, 184, 90 ], [ 188, 73, 236, 90 ], [ 241, 73, 314, 90 ], [ 318, 73, 349, 90 ], [ 450, 73, 464, 90 ], [ 513, 73, 526, 90 ], [ 595, 73, 607, 90 ], [ 612, 73, 635, 90 ], [ 639, 73, 681, 90 ], [ 685, 73, 717, 90 ], [ 722, 73, 760, 90 ], [ 765, 73, 812, 90 ], [ 354, 75, 397, 89 ], [ 402, 75, 445, 89 ], [ 468, 75, 508, 89 ], [ 531, 75, 590, 89 ], [ 88, 95, 97, 112 ], [ 101, 95, 124, 112 ], [ 129, 95, 179, 112 ], [ 184, 95, 196, 112 ], [ 200, 95, 245, 112 ], [ 250, 95, 348, 112 ], [ 353, 95, 397, 112 ], [ 402, 95, 425, 112 ], [ 603, 95, 670, 112 ], [ 675, 95, 687, 112 ], [ 692, 95, 714, 112 ], [ 719, 95, 758, 112 ], [ 763, 95, 784, 112 ], [ 789, 95, 827, 112 ], [ 832, 95, 859, 112 ], [ 863, 95, 886, 112 ], [ 429, 97, 494, 111 ], [ 499, 97, 598, 111 ], [ 88, 110, 166, 127 ], [ 170, 110, 205, 127 ], [ 209, 110, 223, 127 ], [ 228, 110, 250, 127 ], [ 255, 110, 290, 127 ], [ 295, 110, 342, 127 ], [ 441, 149, 558, 168 ], [ 88, 181, 105, 197 ], [ 109, 181, 180, 197 ], [ 184, 181, 267, 197 ], [ 271, 181, 291, 197 ], [ 295, 181, 339, 197 ], [ 343, 181, 384, 197 ], [ 388, 181, 418, 197 ], [ 423, 181, 480, 197 ], [ 485, 181, 508, 197 ], [ 513, 181, 585, 197 ], [ 589, 181, 603, 197 ], [ 607, 181, 621, 197 ], [ 625, 181, 644, 197 ], [ 648, 181, 676, 197 ], [ 680, 181, 698, 197 ], [ 702, 181, 734, 197 ], [ 738, 181, 782, 197 ], [ 632, 208, 686, 225 ], [ 690, 208, 712, 225 ], [ 716, 208, 761, 225 ], [ 214, 210, 283, 224 ], [ 287, 210, 329, 224 ], [ 333, 210, 391, 224 ], [ 271, 276, 334, 292 ], [ 665, 276, 729, 292 ], [ 257, 318, 306, 333 ], [ 310, 318, 348, 333 ], [ 651, 318, 700, 333 ], [ 704, 318, 742, 333 ], [ 287, 359, 317, 374 ], [ 682, 359, 711, 374 ], [ 681, 400, 713, 416 ], [ 197, 416, 275, 430 ], [ 279, 416, 408, 430 ], [ 216, 428, 232, 445 ], [ 237, 428, 281, 445 ], [ 345, 428, 389, 445 ], [ 285, 430, 341, 444 ], [ 271, 497, 334, 512 ], [ 257, 538, 306, 553 ], [ 310, 538, 348, 553 ], [ 287, 579, 317, 594 ], [ 236, 621, 298, 636 ], [ 302, 621, 342, 636 ], [ 346, 621, 369, 636 ], [ 88, 644, 97, 661 ], [ 101, 644, 124, 661 ], [ 129, 644, 154, 661 ], [ 159, 644, 170, 661 ], [ 175, 644, 184, 661 ], [ 188, 644, 275, 661 ], [ 279, 644, 365, 661 ], [ 370, 644, 400, 661 ], [ 404, 644, 509, 661 ], [ 514, 644, 528, 661 ], [ 533, 644, 580, 661 ], [ 585, 644, 633, 661 ], [ 638, 644, 709, 661 ], [ 713, 644, 740, 661 ], [ 744, 644, 767, 661 ], [ 772, 644, 807, 661 ], [ 812, 644, 861, 661 ], [ 865, 644, 874, 661 ], [ 879, 644, 901, 661 ], [ 88, 658, 113, 675 ], [ 118, 658, 129, 675 ], [ 134, 658, 143, 675 ], [ 148, 658, 177, 675 ], [ 182, 658, 237, 675 ], [ 241, 658, 256, 675 ], [ 260, 658, 311, 675 ], [ 316, 658, 374, 675 ], [ 379, 658, 423, 675 ], [ 427, 658, 453, 675 ], [ 458, 658, 481, 675 ], [ 486, 658, 521, 675 ], [ 525, 658, 573, 675 ], [ 577, 658, 615, 675 ], [ 619, 658, 664, 675 ], [ 668, 658, 691, 675 ], [ 695, 658, 749, 675 ], [ 754, 658, 789, 675 ], [ 794, 658, 821, 675 ], [ 825, 658, 851, 675 ], [ 855, 658, 892, 675 ], [ 632, 683, 686, 701 ], [ 690, 683, 712, 701 ], [ 716, 683, 761, 701 ], [ 214, 685, 283, 699 ], [ 287, 685, 329, 699 ], [ 333, 685, 391, 699 ], [ 161, 697, 178, 714 ], [ 182, 697, 226, 714 ], [ 400, 697, 444, 714 ], [ 560, 697, 576, 714 ], [ 581, 697, 625, 714 ], [ 629, 697, 706, 714 ], [ 790, 697, 833, 714 ], [ 230, 699, 262, 713 ], [ 266, 699, 396, 713 ], [ 710, 699, 785, 713 ], [ 271, 766, 334, 782 ], [ 665, 766, 729, 782 ], [ 257, 808, 306, 823 ], [ 310, 808, 348, 823 ], [ 651, 808, 700, 823 ], [ 704, 808, 742, 823 ], [ 287, 849, 317, 864 ], [ 682, 849, 711, 864 ], [ 681, 890, 713, 905 ] ]
[ [ 88, 73, 166, 90 ], [ 170, 73, 184, 90 ], [ 188, 73, 236, 90 ], [ 241, 73, 314, 90 ], [ 318, 73, 349, 90 ], [ 354, 75, 397, 89 ], [ 402, 75, 445, 89 ], [ 450, 73, 464, 90 ], [ 468, 75, 508, 89 ], [ 513, 73, 526, 90 ], [ 531, 75, 590, 89 ], [ 595, 73, 607, 90 ], [ 612, 73, 635, 90 ], [ 639, 73, 681, 90 ], [ 685, 73, 717, 90 ], [ 722, 73, 760, 90 ], [ 765, 73, 812, 90 ], [ 88, 95, 97, 112 ], [ 101, 95, 124, 112 ], [ 129, 95, 179, 112 ], [ 184, 95, 196, 112 ], [ 200, 95, 245, 112 ], [ 250, 95, 348, 112 ], [ 353, 95, 397, 112 ], [ 402, 95, 425, 112 ], [ 429, 97, 494, 111 ], [ 499, 97, 598, 111 ], [ 603, 95, 670, 112 ], [ 675, 95, 687, 112 ], [ 692, 95, 714, 112 ], [ 719, 95, 758, 112 ], [ 763, 95, 784, 112 ], [ 789, 95, 827, 112 ], [ 832, 95, 859, 112 ], [ 863, 95, 886, 112 ], [ 88, 110, 166, 127 ], [ 170, 110, 205, 127 ], [ 209, 110, 223, 127 ], [ 228, 110, 250, 127 ], [ 255, 110, 290, 127 ], [ 295, 110, 342, 127 ], [ 441, 149, 558, 168 ], [ 88, 181, 105, 197 ], [ 109, 181, 180, 197 ], [ 184, 181, 267, 197 ], [ 271, 181, 291, 197 ], [ 295, 181, 339, 197 ], [ 343, 181, 384, 197 ], [ 388, 181, 418, 197 ], [ 423, 181, 480, 197 ], [ 485, 181, 508, 197 ], [ 513, 181, 585, 197 ], [ 589, 181, 603, 197 ], [ 607, 181, 621, 197 ], [ 625, 181, 644, 197 ], [ 648, 181, 676, 197 ], [ 680, 181, 698, 197 ], [ 702, 181, 734, 197 ], [ 738, 181, 782, 197 ], [ 214, 210, 283, 224 ], [ 287, 210, 329, 224 ], [ 333, 210, 391, 224 ], [ 632, 208, 686, 225 ], [ 690, 208, 712, 225 ], [ 716, 208, 761, 225 ], [ 271, 276, 334, 292 ], [ 665, 276, 729, 292 ], [ 257, 318, 306, 333 ], [ 310, 318, 348, 333 ], [ 651, 318, 700, 333 ], [ 704, 318, 742, 333 ], [ 287, 359, 317, 374 ], [ 682, 359, 711, 374 ], [ 681, 400, 713, 416 ], [ 197, 416, 275, 430 ], [ 279, 416, 408, 430 ], [ 216, 428, 232, 445 ], [ 237, 428, 281, 445 ], [ 285, 430, 341, 444 ], [ 345, 428, 389, 445 ], [ 271, 497, 334, 512 ], [ 257, 538, 306, 553 ], [ 310, 538, 348, 553 ], [ 287, 579, 317, 594 ], [ 236, 621, 298, 636 ], [ 302, 621, 342, 636 ], [ 346, 621, 369, 636 ], [ 88, 644, 97, 661 ], [ 101, 644, 124, 661 ], [ 129, 644, 154, 661 ], [ 159, 644, 170, 661 ], [ 175, 644, 184, 661 ], [ 188, 644, 275, 661 ], [ 279, 644, 365, 661 ], [ 370, 644, 400, 661 ], [ 404, 644, 509, 661 ], [ 514, 644, 528, 661 ], [ 533, 644, 580, 661 ], [ 585, 644, 633, 661 ], [ 638, 644, 709, 661 ], [ 713, 644, 740, 661 ], [ 744, 644, 767, 661 ], [ 772, 644, 807, 661 ], [ 812, 644, 861, 661 ], [ 865, 644, 874, 661 ], [ 879, 644, 901, 661 ], [ 88, 658, 113, 675 ], [ 118, 658, 129, 675 ], [ 134, 658, 143, 675 ], [ 148, 658, 177, 675 ], [ 182, 658, 237, 675 ], [ 241, 658, 256, 675 ], [ 260, 658, 311, 675 ], [ 316, 658, 374, 675 ], [ 379, 658, 423, 675 ], [ 427, 658, 453, 675 ], [ 458, 658, 481, 675 ], [ 486, 658, 521, 675 ], [ 525, 658, 573, 675 ], [ 577, 658, 615, 675 ], [ 619, 658, 664, 675 ], [ 668, 658, 691, 675 ], [ 695, 658, 749, 675 ], [ 754, 658, 789, 675 ], [ 794, 658, 821, 675 ], [ 825, 658, 851, 675 ], [ 855, 658, 892, 675 ], [ 214, 685, 283, 699 ], [ 287, 685, 329, 699 ], [ 333, 685, 391, 699 ], [ 632, 683, 686, 701 ], [ 690, 683, 712, 701 ], [ 716, 683, 761, 701 ], [ 161, 697, 178, 714 ], [ 182, 697, 226, 714 ], [ 230, 699, 262, 713 ], [ 266, 699, 396, 713 ], [ 400, 697, 444, 714 ], [ 560, 697, 576, 714 ], [ 581, 697, 625, 714 ], [ 629, 697, 706, 714 ], [ 710, 699, 785, 713 ], [ 790, 697, 833, 714 ], [ 271, 766, 334, 782 ], [ 665, 766, 729, 782 ], [ 257, 808, 306, 823 ], [ 310, 808, 348, 823 ], [ 651, 808, 700, 823 ], [ 704, 808, 742, 823 ], [ 287, 849, 317, 864 ], [ 682, 849, 711, 864 ], [ 681, 890, 713, 905 ] ]
Workshop on Electric Useful for handling projects (UG & Approved Binoj Kumar A.C Asst. Profs, June 28-30, Machine Design using PG) based on machine modeling and 78000 &Meera Khalid EEE 2016 ANSYS analysis. Familiarization of Approved Advanced laboratory Useful for technical staff for handling Dr. Vincent G Asso. Prof & June 21-23, Equipment in advanced equipment. 85000 &Samkumar T T/I 2016 Electrical and Electronics Engg. Sooraj G& T/I &Asst. STTP on Computer June 20-25, Based on demand from technical staff 120000 Approved Umesh A C Prof., ECE Hardware 2016 of various departments, this course has Maintenance and been organized. Networking Dr.Vineetha S Asst. Profs, STTP on June 13-18, Since it is useful for handling B.Tech 130000 Approved &Anu Bonia CSE 2016 & M.Tech Projects, it is Francis database recommended. and Tools Nisha K K& Raji Asst. Profs, STTP on Graph July 11-16, Faculty would get acquainted with 180000 Approved R Pillai CSE Algorithms and 2016 various algorithms which is useful for Computational research Geometry STTP on Cyber June 20-26, The course being an interdisciplinary 100000 Approved System P A Padmakumar Security and Tools for 2016 one, and useful for all engineering Analyst, CSE Ethical Hacking faculty, it is recommended Workshop on July 5-8, The training programme is intended 105000 Approved Enhancing Individual 2016 for administrative and technical staff. Dr.C.Sathish Excellence for Career It is expected to improve self Professor Kumar Effectiveness awareness and self organization in the participants, thereby improve their individual contribution to the institute. Dr.Jayaprasad P Asst. Prof., STTP on Data June 20-26, Intended for faculty getting trained 120000 Approved N Mathematics Analysis using 2016 with advanced software packages in Computational Mathematics Softwares
Binoj Kumar A.C &Meera Khalid Asst. Profs, EEE Workshop on Electric Machine Design using ANSYS June 28-30, 2016 Useful for handling projects (UG & PG) based on machine modeling and analysis. 78000 Approved Dr. Vincent G &Samkumar T Asso. Prof & T/I Familiarization of Advanced laboratory Equipment in Electrical and Electronics Engg. June 21-23, 2016 Useful for technical staff for handling advanced equipment. 85000 Approved Sooraj G& Umesh A C T/I &Asst. Prof., ECE STTP on Computer Hardware Maintenance and Networking June 20-25, 2016 Based on demand from technical staff of various departments, this course has been organized. 120000 Approved Dr.Vineetha S &Anu Bonia Francis Asst. Profs, CSE STTP on database and Tools June 13-18, 2016 Since it is useful for handling B.Tech & M.Tech Projects, it is recommended. 130000 Approved Nisha K K& Raji R Pillai Asst. Profs, CSE STTP on Graph Algorithms and Computational Geometry July 11-16, 2016 Faculty would get acquainted with various algorithms which is useful for research 180000 Approved P A Padmakumar System Analyst, CSE STTP on Cyber Security and Tools for Ethical Hacking June 20-26, 2016 The course being an interdisciplinary one, and useful for all engineering faculty, it is recommended 100000 Approved Dr.C.Sathish Kumar Professor Workshop on Enhancing Individual Excellence for Career Effectiveness July 5-8, 2016 The training programme is intended for administrative and technical staff. It is expected to improve self awareness and self organization in the participants, thereby improve their individual contribution to the institute. 105000 Approved Dr.Jayaprasad P N Asst. Prof., Mathematics STTP on Data Analysis using Computational Softwares June 20-26, 2016 Intended for faculty getting trained with advanced software packages in Mathematics 120000 Approved
0.456784
[ 10, 11, 12, 27, 28, 13, 14, 29, 0, 1, 2, 17, 18, 19, 31, 15, 16, 30, 3, 4, 5, 6, 7, 8, 20, 21, 22, 23, 24, 25, 32, 26, 9, 44, 45, 46, 57, 58, 47, 48, 49, 59, 33, 34, 36, 37, 52, 53, 61, 62, 63, 64, 50, 51, 60, 38, 39, 40, 41, 42, 43, 54, 55, 56, 35, 65, 66, 82, 83, 84, 67, 68, 85, 86, 69, 70, 71, 87, 95, 96, 99, 72, 73, 88, 74, 75, 76, 77, 78, 79, 89, 90, 91, 92, 93, 94, 97, 98, 80, 81, 100, 101, 117, 118, 126, 102, 103, 119, 104, 105, 127, 129, 130, 106, 107, 120, 108, 109, 110, 111, 112, 113, 114, 121, 122, 123, 124, 125, 128, 115, 116, 131, 132, 133, 134, 149, 150, 135, 136, 151, 137, 138, 139, 152, 153, 161, 163, 140, 141, 154, 142, 143, 144, 145, 146, 155, 156, 157, 158, 159, 160, 162, 147, 148, 177, 178, 179, 176, 191, 192, 164, 165, 166, 180, 181, 182, 183, 193, 194, 167, 168, 184, 169, 170, 171, 172, 173, 185, 186, 187, 188, 189, 190, 195, 196, 197, 198, 174, 175, 218, 229, 228, 199, 200, 210, 211, 219, 220, 221, 230, 201, 202, 212, 203, 204, 205, 206, 207, 213, 214, 215, 216, 217, 222, 223, 224, 225, 226, 227, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 208, 209, 246, 247, 262, 248, 249, 263, 250, 251, 252, 264, 265, 272, 274, 253, 254, 266, 255, 256, 257, 258, 259, 267, 268, 269, 270, 271, 273, 260, 261 ]
M17bog.docx
task-1431-290
11
[ [ 321, 58, 381, 85 ], [ 388, 58, 402, 85 ], [ 409, 58, 453, 85 ], [ 546, 58, 584, 85 ], [ 591, 58, 608, 85 ], [ 615, 58, 665, 85 ], [ 672, 58, 717, 85 ], [ 725, 58, 750, 85 ], [ 757, 58, 768, 85 ], [ 840, 58, 897, 85 ], [ 113, 69, 144, 96 ], [ 148, 69, 188, 96 ], [ 191, 69, 214, 96 ], [ 230, 69, 259, 96 ], [ 275, 69, 309, 96 ], [ 466, 69, 492, 96 ], [ 496, 69, 533, 96 ], [ 321, 81, 371, 108 ], [ 376, 81, 417, 108 ], [ 422, 81, 453, 108 ], [ 546, 81, 569, 108 ], [ 575, 81, 607, 108 ], [ 613, 81, 627, 108 ], [ 633, 81, 682, 108 ], [ 688, 81, 742, 108 ], [ 748, 81, 768, 108 ], [ 781, 81, 817, 108 ], [ 113, 93, 160, 119 ], [ 164, 93, 203, 119 ], [ 230, 93, 257, 119 ], [ 466, 93, 494, 119 ], [ 321, 104, 368, 131 ], [ 546, 104, 595, 131 ], [ 321, 128, 408, 155 ], [ 412, 128, 424, 155 ], [ 840, 128, 897, 155 ], [ 321, 151, 379, 178 ], [ 383, 151, 441, 178 ], [ 546, 151, 584, 178 ], [ 589, 151, 605, 178 ], [ 610, 151, 662, 178 ], [ 667, 151, 692, 178 ], [ 697, 151, 714, 178 ], [ 718, 151, 768, 178 ], [ 113, 163, 131, 190 ], [ 135, 163, 180, 190 ], [ 184, 163, 194, 190 ], [ 230, 163, 263, 190 ], [ 268, 163, 292, 190 ], [ 298, 163, 309, 190 ], [ 466, 163, 492, 190 ], [ 496, 163, 533, 190 ], [ 321, 174, 384, 201 ], [ 387, 174, 399, 201 ], [ 546, 174, 600, 201 ], [ 603, 174, 667, 201 ], [ 788, 174, 824, 201 ], [ 113, 186, 186, 213 ], [ 189, 186, 198, 213 ], [ 230, 186, 248, 213 ], [ 466, 186, 494, 213 ], [ 321, 198, 376, 224 ], [ 379, 198, 400, 224 ], [ 321, 221, 385, 248 ], [ 389, 221, 423, 248 ], [ 113, 245, 150, 272 ], [ 154, 245, 175, 272 ], [ 230, 245, 248, 272 ], [ 269, 245, 308, 272 ], [ 321, 245, 355, 272 ], [ 368, 245, 383, 272 ], [ 396, 245, 453, 272 ], [ 466, 245, 492, 272 ], [ 496, 245, 533, 272 ], [ 546, 245, 581, 272 ], [ 585, 245, 600, 272 ], [ 604, 245, 649, 272 ], [ 654, 245, 682, 272 ], [ 687, 245, 738, 272 ], [ 743, 245, 768, 272 ], [ 781, 245, 824, 272 ], [ 840, 245, 897, 272 ], [ 113, 268, 153, 295 ], [ 157, 268, 167, 295 ], [ 171, 268, 180, 295 ], [ 230, 268, 262, 295 ], [ 266, 268, 293, 295 ], [ 321, 268, 377, 295 ], [ 466, 268, 494, 295 ], [ 546, 268, 558, 295 ], [ 561, 268, 603, 295 ], [ 607, 268, 680, 295 ], [ 684, 268, 705, 295 ], [ 708, 268, 746, 295 ], [ 749, 268, 768, 295 ], [ 321, 291, 395, 318 ], [ 432, 291, 453, 318 ], [ 546, 291, 573, 318 ], [ 576, 291, 636, 318 ], [ 321, 314, 389, 341 ], [ 113, 338, 183, 365 ], [ 210, 338, 217, 365 ], [ 230, 338, 259, 365 ], [ 275, 338, 309, 365 ], [ 321, 338, 355, 365 ], [ 439, 338, 453, 365 ], [ 466, 338, 492, 365 ], [ 496, 338, 533, 365 ], [ 546, 338, 578, 365 ], [ 583, 338, 591, 365 ], [ 596, 338, 605, 365 ], [ 610, 338, 645, 365 ], [ 650, 338, 667, 365 ], [ 672, 338, 722, 365 ], [ 727, 338, 768, 365 ], [ 781, 338, 824, 365 ], [ 840, 338, 897, 365 ], [ 113, 362, 148, 389 ], [ 184, 362, 218, 389 ], [ 230, 362, 257, 389 ], [ 466, 362, 494, 389 ], [ 546, 362, 557, 389 ], [ 582, 362, 626, 389 ], [ 651, 362, 701, 389 ], [ 726, 362, 734, 389 ], [ 759, 362, 768, 389 ], [ 113, 385, 155, 412 ], [ 404, 385, 453, 412 ], [ 546, 385, 630, 412 ], [ 321, 408, 342, 435 ], [ 345, 408, 378, 435 ], [ 113, 432, 146, 459 ], [ 150, 432, 160, 459 ], [ 164, 432, 186, 459 ], [ 194, 432, 217, 459 ], [ 230, 432, 259, 459 ], [ 275, 432, 309, 459 ], [ 321, 432, 355, 459 ], [ 379, 432, 393, 459 ], [ 417, 432, 453, 459 ], [ 466, 432, 490, 459 ], [ 496, 432, 533, 459 ], [ 546, 432, 589, 459 ], [ 598, 432, 634, 459 ], [ 644, 432, 661, 459 ], [ 671, 432, 733, 459 ], [ 743, 432, 768, 459 ], [ 781, 432, 824, 459 ], [ 840, 432, 897, 459 ], [ 113, 455, 122, 482 ], [ 126, 455, 156, 482 ], [ 230, 455, 257, 482 ], [ 321, 455, 386, 482 ], [ 432, 455, 453, 482 ], [ 466, 455, 494, 482 ], [ 546, 455, 588, 482 ], [ 593, 455, 654, 482 ], [ 658, 455, 693, 482 ], [ 698, 455, 707, 482 ], [ 712, 455, 747, 482 ], [ 752, 455, 768, 482 ], [ 321, 478, 406, 505 ], [ 546, 478, 593, 505 ], [ 321, 502, 379, 528 ], [ 321, 526, 355, 552 ], [ 379, 526, 393, 552 ], [ 418, 526, 453, 552 ], [ 466, 526, 492, 552 ], [ 496, 526, 533, 552 ], [ 546, 526, 568, 552 ], [ 574, 526, 611, 552 ], [ 617, 526, 649, 552 ], [ 655, 526, 669, 552 ], [ 675, 526, 768, 552 ], [ 781, 526, 824, 552 ], [ 840, 526, 897, 552 ], [ 230, 537, 272, 564 ], [ 113, 549, 121, 576 ], [ 124, 549, 135, 576 ], [ 138, 549, 213, 576 ], [ 321, 549, 369, 576 ], [ 374, 549, 394, 576 ], [ 399, 549, 431, 576 ], [ 436, 549, 453, 576 ], [ 466, 549, 494, 576 ], [ 546, 549, 570, 576 ], [ 579, 549, 600, 576 ], [ 609, 549, 643, 576 ], [ 652, 549, 669, 576 ], [ 678, 549, 692, 576 ], [ 701, 549, 768, 576 ], [ 230, 560, 278, 587 ], [ 282, 560, 308, 587 ], [ 321, 572, 362, 599 ], [ 365, 572, 414, 599 ], [ 546, 572, 589, 599 ], [ 593, 572, 600, 599 ], [ 604, 572, 614, 599 ], [ 617, 572, 698, 599 ], [ 321, 596, 381, 623 ], [ 439, 596, 453, 623 ], [ 466, 596, 490, 623 ], [ 511, 596, 533, 623 ], [ 546, 596, 568, 623 ], [ 576, 596, 620, 623 ], [ 628, 596, 694, 623 ], [ 702, 596, 711, 623 ], [ 719, 596, 768, 623 ], [ 781, 596, 824, 623 ], [ 840, 596, 897, 623 ], [ 321, 619, 382, 646 ], [ 394, 619, 453, 646 ], [ 466, 619, 494, 646 ], [ 546, 619, 563, 646 ], [ 568, 619, 650, 646 ], [ 656, 619, 676, 646 ], [ 682, 619, 733, 646 ], [ 739, 619, 768, 646 ], [ 113, 642, 187, 669 ], [ 321, 642, 384, 669 ], [ 391, 642, 408, 669 ], [ 415, 642, 453, 669 ], [ 546, 642, 554, 669 ], [ 569, 642, 579, 669 ], [ 594, 642, 644, 669 ], [ 659, 642, 670, 669 ], [ 685, 642, 733, 669 ], [ 748, 642, 768, 669 ], [ 230, 654, 284, 681 ], [ 113, 665, 152, 692 ], [ 321, 665, 398, 692 ], [ 546, 665, 604, 692 ], [ 609, 665, 629, 692 ], [ 634, 665, 655, 692 ], [ 659, 665, 731, 692 ], [ 735, 665, 747, 692 ], [ 751, 665, 769, 692 ], [ 546, 689, 616, 716 ], [ 628, 689, 671, 716 ], [ 683, 689, 730, 716 ], [ 742, 689, 768, 716 ], [ 546, 712, 604, 739 ], [ 607, 712, 677, 739 ], [ 681, 712, 692, 739 ], [ 695, 712, 713, 739 ], [ 716, 712, 766, 739 ], [ 113, 736, 194, 763 ], [ 197, 736, 205, 763 ], [ 230, 736, 259, 763 ], [ 263, 736, 295, 763 ], [ 321, 736, 355, 763 ], [ 383, 736, 397, 763 ], [ 426, 736, 453, 763 ], [ 466, 736, 492, 763 ], [ 496, 736, 533, 763 ], [ 546, 736, 596, 763 ], [ 605, 736, 622, 763 ], [ 631, 736, 671, 763 ], [ 680, 736, 720, 763 ], [ 729, 736, 768, 763 ], [ 781, 736, 824, 763 ], [ 840, 736, 897, 763 ], [ 113, 759, 123, 786 ], [ 230, 759, 304, 786 ], [ 321, 759, 371, 786 ], [ 422, 759, 453, 786 ], [ 466, 759, 494, 786 ], [ 546, 759, 571, 786 ], [ 579, 759, 633, 786 ], [ 640, 759, 690, 786 ], [ 697, 759, 749, 786 ], [ 757, 759, 768, 786 ], [ 321, 782, 406, 809 ], [ 546, 782, 619, 809 ], [ 321, 805, 378, 832 ] ]
[ [ 113, 69, 144, 96 ], [ 148, 69, 188, 96 ], [ 191, 69, 214, 96 ], [ 113, 93, 160, 119 ], [ 164, 93, 203, 119 ], [ 230, 69, 259, 96 ], [ 275, 69, 309, 96 ], [ 230, 93, 257, 119 ], [ 321, 58, 381, 85 ], [ 388, 58, 402, 85 ], [ 409, 58, 453, 85 ], [ 321, 81, 371, 108 ], [ 376, 81, 417, 108 ], [ 422, 81, 453, 108 ], [ 321, 104, 368, 131 ], [ 466, 69, 492, 96 ], [ 496, 69, 533, 96 ], [ 466, 93, 494, 119 ], [ 546, 58, 584, 85 ], [ 591, 58, 608, 85 ], [ 615, 58, 665, 85 ], [ 672, 58, 717, 85 ], [ 725, 58, 750, 85 ], [ 757, 58, 768, 85 ], [ 546, 81, 569, 108 ], [ 575, 81, 607, 108 ], [ 613, 81, 627, 108 ], [ 633, 81, 682, 108 ], [ 688, 81, 742, 108 ], [ 748, 81, 768, 108 ], [ 546, 104, 595, 131 ], [ 781, 81, 817, 108 ], [ 840, 58, 897, 85 ], [ 113, 163, 131, 190 ], [ 135, 163, 180, 190 ], [ 184, 163, 194, 190 ], [ 113, 186, 186, 213 ], [ 189, 186, 198, 213 ], [ 230, 163, 263, 190 ], [ 268, 163, 292, 190 ], [ 298, 163, 309, 190 ], [ 230, 186, 248, 213 ], [ 321, 128, 408, 155 ], [ 412, 128, 424, 155 ], [ 321, 151, 379, 178 ], [ 383, 151, 441, 178 ], [ 321, 174, 384, 201 ], [ 387, 174, 399, 201 ], [ 321, 198, 376, 224 ], [ 379, 198, 400, 224 ], [ 321, 221, 385, 248 ], [ 389, 221, 423, 248 ], [ 466, 163, 492, 190 ], [ 496, 163, 533, 190 ], [ 466, 186, 494, 213 ], [ 546, 151, 584, 178 ], [ 589, 151, 605, 178 ], [ 610, 151, 662, 178 ], [ 667, 151, 692, 178 ], [ 697, 151, 714, 178 ], [ 718, 151, 768, 178 ], [ 546, 174, 600, 201 ], [ 603, 174, 667, 201 ], [ 788, 174, 824, 201 ], [ 840, 128, 897, 155 ], [ 113, 245, 150, 272 ], [ 154, 245, 175, 272 ], [ 113, 268, 153, 295 ], [ 157, 268, 167, 295 ], [ 171, 268, 180, 295 ], [ 230, 245, 248, 272 ], [ 269, 245, 308, 272 ], [ 230, 268, 262, 295 ], [ 266, 268, 293, 295 ], [ 321, 245, 355, 272 ], [ 368, 245, 383, 272 ], [ 396, 245, 453, 272 ], [ 321, 268, 377, 295 ], [ 321, 291, 395, 318 ], [ 432, 291, 453, 318 ], [ 321, 314, 389, 341 ], [ 466, 245, 492, 272 ], [ 496, 245, 533, 272 ], [ 466, 268, 494, 295 ], [ 546, 245, 581, 272 ], [ 585, 245, 600, 272 ], [ 604, 245, 649, 272 ], [ 654, 245, 682, 272 ], [ 687, 245, 738, 272 ], [ 743, 245, 768, 272 ], [ 546, 268, 558, 295 ], [ 561, 268, 603, 295 ], [ 607, 268, 680, 295 ], [ 684, 268, 705, 295 ], [ 708, 268, 746, 295 ], [ 749, 268, 768, 295 ], [ 546, 291, 573, 318 ], [ 576, 291, 636, 318 ], [ 781, 245, 824, 272 ], [ 840, 245, 897, 272 ], [ 113, 338, 183, 365 ], [ 210, 338, 217, 365 ], [ 113, 362, 148, 389 ], [ 184, 362, 218, 389 ], [ 113, 385, 155, 412 ], [ 230, 338, 259, 365 ], [ 275, 338, 309, 365 ], [ 230, 362, 257, 389 ], [ 321, 338, 355, 365 ], [ 439, 338, 453, 365 ], [ 404, 385, 453, 412 ], [ 321, 408, 342, 435 ], [ 345, 408, 378, 435 ], [ 466, 338, 492, 365 ], [ 496, 338, 533, 365 ], [ 466, 362, 494, 389 ], [ 546, 338, 578, 365 ], [ 583, 338, 591, 365 ], [ 596, 338, 605, 365 ], [ 610, 338, 645, 365 ], [ 650, 338, 667, 365 ], [ 672, 338, 722, 365 ], [ 727, 338, 768, 365 ], [ 546, 362, 557, 389 ], [ 582, 362, 626, 389 ], [ 651, 362, 701, 389 ], [ 726, 362, 734, 389 ], [ 759, 362, 768, 389 ], [ 546, 385, 630, 412 ], [ 781, 338, 824, 365 ], [ 840, 338, 897, 365 ], [ 113, 432, 146, 459 ], [ 150, 432, 160, 459 ], [ 164, 432, 186, 459 ], [ 194, 432, 217, 459 ], [ 113, 455, 122, 482 ], [ 126, 455, 156, 482 ], [ 230, 432, 259, 459 ], [ 275, 432, 309, 459 ], [ 230, 455, 257, 482 ], [ 321, 432, 355, 459 ], [ 379, 432, 393, 459 ], [ 417, 432, 453, 459 ], [ 321, 455, 386, 482 ], [ 432, 455, 453, 482 ], [ 321, 478, 406, 505 ], [ 321, 502, 379, 528 ], [ 466, 432, 490, 459 ], [ 496, 432, 533, 459 ], [ 466, 455, 494, 482 ], [ 546, 432, 589, 459 ], [ 598, 432, 634, 459 ], [ 644, 432, 661, 459 ], [ 671, 432, 733, 459 ], [ 743, 432, 768, 459 ], [ 546, 455, 588, 482 ], [ 593, 455, 654, 482 ], [ 658, 455, 693, 482 ], [ 698, 455, 707, 482 ], [ 712, 455, 747, 482 ], [ 752, 455, 768, 482 ], [ 546, 478, 593, 505 ], [ 781, 432, 824, 459 ], [ 840, 432, 897, 459 ], [ 113, 549, 121, 576 ], [ 124, 549, 135, 576 ], [ 138, 549, 213, 576 ], [ 230, 537, 272, 564 ], [ 230, 560, 278, 587 ], [ 282, 560, 308, 587 ], [ 321, 526, 355, 552 ], [ 379, 526, 393, 552 ], [ 418, 526, 453, 552 ], [ 321, 549, 369, 576 ], [ 374, 549, 394, 576 ], [ 399, 549, 431, 576 ], [ 436, 549, 453, 576 ], [ 321, 572, 362, 599 ], [ 365, 572, 414, 599 ], [ 466, 526, 492, 552 ], [ 496, 526, 533, 552 ], [ 466, 549, 494, 576 ], [ 546, 526, 568, 552 ], [ 574, 526, 611, 552 ], [ 617, 526, 649, 552 ], [ 655, 526, 669, 552 ], [ 675, 526, 768, 552 ], [ 546, 549, 570, 576 ], [ 579, 549, 600, 576 ], [ 609, 549, 643, 576 ], [ 652, 549, 669, 576 ], [ 678, 549, 692, 576 ], [ 701, 549, 768, 576 ], [ 546, 572, 589, 599 ], [ 593, 572, 600, 599 ], [ 604, 572, 614, 599 ], [ 617, 572, 698, 599 ], [ 781, 526, 824, 552 ], [ 840, 526, 897, 552 ], [ 113, 642, 187, 669 ], [ 113, 665, 152, 692 ], [ 230, 654, 284, 681 ], [ 321, 596, 381, 623 ], [ 439, 596, 453, 623 ], [ 321, 619, 382, 646 ], [ 394, 619, 453, 646 ], [ 321, 642, 384, 669 ], [ 391, 642, 408, 669 ], [ 415, 642, 453, 669 ], [ 321, 665, 398, 692 ], [ 466, 596, 490, 623 ], [ 511, 596, 533, 623 ], [ 466, 619, 494, 646 ], [ 546, 596, 568, 623 ], [ 576, 596, 620, 623 ], [ 628, 596, 694, 623 ], [ 702, 596, 711, 623 ], [ 719, 596, 768, 623 ], [ 546, 619, 563, 646 ], [ 568, 619, 650, 646 ], [ 656, 619, 676, 646 ], [ 682, 619, 733, 646 ], [ 739, 619, 768, 646 ], [ 546, 642, 554, 669 ], [ 569, 642, 579, 669 ], [ 594, 642, 644, 669 ], [ 659, 642, 670, 669 ], [ 685, 642, 733, 669 ], [ 748, 642, 768, 669 ], [ 546, 665, 604, 692 ], [ 609, 665, 629, 692 ], [ 634, 665, 655, 692 ], [ 659, 665, 731, 692 ], [ 735, 665, 747, 692 ], [ 751, 665, 769, 692 ], [ 546, 689, 616, 716 ], [ 628, 689, 671, 716 ], [ 683, 689, 730, 716 ], [ 742, 689, 768, 716 ], [ 546, 712, 604, 739 ], [ 607, 712, 677, 739 ], [ 681, 712, 692, 739 ], [ 695, 712, 713, 739 ], [ 716, 712, 766, 739 ], [ 781, 596, 824, 623 ], [ 840, 596, 897, 623 ], [ 113, 736, 194, 763 ], [ 197, 736, 205, 763 ], [ 113, 759, 123, 786 ], [ 230, 736, 259, 763 ], [ 263, 736, 295, 763 ], [ 230, 759, 304, 786 ], [ 321, 736, 355, 763 ], [ 383, 736, 397, 763 ], [ 426, 736, 453, 763 ], [ 321, 759, 371, 786 ], [ 422, 759, 453, 786 ], [ 321, 782, 406, 809 ], [ 321, 805, 378, 832 ], [ 466, 736, 492, 763 ], [ 496, 736, 533, 763 ], [ 466, 759, 494, 786 ], [ 546, 736, 596, 763 ], [ 605, 736, 622, 763 ], [ 631, 736, 671, 763 ], [ 680, 736, 720, 763 ], [ 729, 736, 768, 763 ], [ 546, 759, 571, 786 ], [ 579, 759, 633, 786 ], [ 640, 759, 690, 786 ], [ 697, 759, 749, 786 ], [ 757, 759, 768, 786 ], [ 546, 782, 619, 809 ], [ 781, 736, 824, 763 ], [ 840, 736, 897, 763 ] ]
Department of Electrical Engineering Remarks by BoG Amt Name of Details of Industry Prob Date No of Expected Topic Target Sl.No Coordinators Experts of Pgm. Days (Rs.) Outcome Dr. Dinesh Students will get Approved Er. Anurag practical Design of Sasikumar, . Prof knowledge in the high Power Graffito Systems One April 2016 Tech 15000 design and Rectifiers Trivandrum Day students implementation of high power rectifiers Students will Approved Dr. Prince A, get knowledge Assoc. Prof in the field of Dr. Manohar Singh, power system Engineering Officer protection. grade-3, Student will get Power System Central Power knowledge on One Protection Research Institute April 2016 students 25000 Day research topics (CPRI), Ministry of of the in the field of Power,Government power system of India , Bangalore and research through industrial experience
Department of Electrical Engineering Sl.No Topic Name of Coordinators Details of Industry Experts Prob Date of Pgm. No of Days Target Amt (Rs.) Expected Outcome Remarks by BoG Design of high Power Rectifiers Dr. Dinesh Prof Er. Anurag Sasikumar, Graffito Systems Trivandrum April 2016 One Day Tech students 15000 Students will get practical knowledge in the design and implementation of high power rectifiers Approved Power System Protection Dr. Prince A, Assoc. Prof Dr. Manohar Singh, Engineering Officer grade-3, Central Power Research Institute (CPRI), Ministry of Power,Government of India , Bangalore April 2016 One Day students of the 25000 Students will get knowledge in the field of power system protection. Student will get knowledge on research topics in the field of power system and research through industrial experience Approved .
0.270166
[ 0, 1, 2, 3, 20, 18, 8, 9, 21, 10, 11, 12, 22, 13, 14, 23, 24, 15, 16, 25, 19, 7, 26, 17, 27, 4, 5, 6, 37, 38, 45, 46, 56, 28, 29, 41, 34, 35, 39, 47, 48, 57, 50, 51, 49, 58, 52, 59, 53, 30, 31, 32, 36, 42, 43, 44, 54, 55, 60, 61, 62, 63, 64, 33, 91, 92, 98, 68, 69, 70, 73, 74, 79, 80, 81, 84, 85, 87, 93, 94, 99, 100, 108, 109, 110, 117, 120, 121, 122, 123, 101, 102, 97, 105, 103, 111, 112, 104, 65, 66, 71, 72, 75, 76, 77, 78, 82, 83, 86, 88, 89, 90, 95, 96, 106, 107, 113, 114, 115, 116, 118, 119, 124, 125, 126, 127, 128, 67, 40 ]
M17bog.docx
task-1431-290
13
[ [ 150, 129, 217, 156 ], [ 221, 129, 233, 156 ], [ 236, 129, 291, 156 ], [ 295, 129, 364, 156 ], [ 845, 176, 892, 201 ], [ 895, 176, 908, 201 ], [ 911, 176, 936, 201 ], [ 685, 179, 710, 206 ], [ 246, 181, 278, 205 ], [ 281, 181, 292, 205 ], [ 337, 181, 375, 205 ], [ 378, 181, 389, 205 ], [ 392, 181, 436, 205 ], [ 476, 181, 501, 205 ], [ 505, 181, 529, 205 ], [ 551, 181, 567, 205 ], [ 571, 181, 582, 205 ], [ 738, 181, 787, 205 ], [ 150, 191, 181, 216 ], [ 610, 191, 644, 216 ], [ 102, 197, 132, 222 ], [ 246, 202, 315, 227 ], [ 337, 202, 377, 227 ], [ 476, 202, 487, 227 ], [ 491, 202, 518, 227 ], [ 551, 202, 578, 227 ], [ 685, 202, 713, 229 ], [ 738, 202, 786, 227 ], [ 246, 250, 264, 275 ], [ 288, 250, 325, 275 ], [ 738, 250, 784, 275 ], [ 790, 250, 810, 275 ], [ 817, 250, 833, 275 ], [ 845, 250, 902, 277 ], [ 337, 255, 354, 281 ], [ 421, 255, 464, 281 ], [ 738, 271, 784, 296 ], [ 150, 278, 190, 305 ], [ 194, 278, 206, 305 ], [ 337, 278, 401, 305 ], [ 246, 293, 250, 317 ], [ 253, 293, 276, 317 ], [ 738, 293, 796, 317 ], [ 801, 293, 811, 317 ], [ 817, 293, 833, 317 ], [ 150, 301, 175, 328 ], [ 179, 301, 215, 328 ], [ 337, 301, 383, 328 ], [ 387, 301, 434, 328 ], [ 551, 303, 573, 328 ], [ 476, 314, 504, 339 ], [ 507, 314, 534, 339 ], [ 646, 314, 672, 339 ], [ 685, 314, 718, 339 ], [ 738, 314, 773, 339 ], [ 814, 314, 833, 339 ], [ 150, 324, 206, 351 ], [ 337, 324, 405, 351 ], [ 551, 324, 573, 349 ], [ 610, 335, 653, 360 ], [ 738, 335, 820, 360 ], [ 738, 356, 749, 381 ], [ 763, 356, 786, 381 ], [ 800, 356, 833, 381 ], [ 738, 377, 785, 402 ], [ 738, 399, 788, 426 ], [ 810, 399, 833, 426 ], [ 845, 399, 902, 426 ], [ 246, 421, 264, 446 ], [ 271, 421, 304, 446 ], [ 312, 421, 325, 446 ], [ 738, 423, 756, 449 ], [ 770, 423, 832, 449 ], [ 246, 442, 282, 467 ], [ 285, 442, 308, 467 ], [ 738, 446, 750, 473 ], [ 759, 446, 776, 473 ], [ 785, 446, 812, 473 ], [ 821, 446, 833, 473 ], [ 337, 457, 356, 484 ], [ 360, 457, 411, 484 ], [ 415, 457, 451, 484 ], [ 738, 469, 774, 496 ], [ 793, 469, 832, 496 ], [ 337, 481, 407, 507 ], [ 422, 481, 464, 507 ], [ 738, 492, 800, 519 ], [ 337, 504, 384, 531 ], [ 738, 515, 782, 542 ], [ 787, 515, 810, 542 ], [ 815, 515, 832, 542 ], [ 150, 527, 187, 554 ], [ 190, 527, 232, 554 ], [ 337, 527, 379, 554 ], [ 427, 527, 464, 554 ], [ 738, 538, 801, 565 ], [ 818, 538, 832, 565 ], [ 551, 541, 573, 565 ], [ 150, 550, 209, 577 ], [ 337, 550, 389, 577 ], [ 417, 550, 464, 577 ], [ 476, 551, 504, 576 ], [ 507, 551, 534, 576 ], [ 629, 551, 672, 576 ], [ 685, 551, 718, 576 ], [ 551, 562, 573, 587 ], [ 738, 562, 786, 589 ], [ 798, 562, 832, 589 ], [ 337, 573, 382, 600 ], [ 392, 573, 442, 600 ], [ 452, 573, 464, 600 ], [ 610, 573, 621, 597 ], [ 624, 573, 640, 597 ], [ 738, 585, 750, 612 ], [ 759, 585, 776, 612 ], [ 785, 585, 812, 612 ], [ 821, 585, 833, 612 ], [ 337, 596, 449, 623 ], [ 738, 608, 774, 635 ], [ 793, 608, 832, 635 ], [ 337, 619, 349, 646 ], [ 353, 619, 382, 646 ], [ 386, 619, 389, 646 ], [ 393, 619, 451, 646 ], [ 738, 631, 759, 658 ], [ 785, 631, 832, 658 ], [ 738, 654, 783, 681 ], [ 738, 678, 792, 704 ], [ 738, 701, 800, 728 ] ]
[ [ 150, 129, 217, 156 ], [ 221, 129, 233, 156 ], [ 236, 129, 291, 156 ], [ 295, 129, 364, 156 ], [ 102, 197, 132, 222 ], [ 150, 191, 181, 216 ], [ 246, 181, 278, 205 ], [ 281, 181, 292, 205 ], [ 246, 202, 315, 227 ], [ 337, 181, 375, 205 ], [ 378, 181, 389, 205 ], [ 392, 181, 436, 205 ], [ 337, 202, 377, 227 ], [ 476, 181, 501, 205 ], [ 505, 181, 529, 205 ], [ 476, 202, 487, 227 ], [ 491, 202, 518, 227 ], [ 551, 181, 567, 205 ], [ 571, 181, 582, 205 ], [ 551, 202, 578, 227 ], [ 610, 191, 644, 216 ], [ 685, 179, 710, 206 ], [ 685, 202, 713, 229 ], [ 738, 181, 787, 205 ], [ 738, 202, 786, 227 ], [ 845, 176, 892, 201 ], [ 895, 176, 908, 201 ], [ 911, 176, 936, 201 ], [ 150, 278, 190, 305 ], [ 194, 278, 206, 305 ], [ 150, 301, 175, 328 ], [ 179, 301, 215, 328 ], [ 150, 324, 206, 351 ], [ 246, 250, 264, 275 ], [ 288, 250, 325, 275 ], [ 253, 293, 276, 317 ], [ 337, 255, 354, 281 ], [ 421, 255, 464, 281 ], [ 337, 278, 401, 305 ], [ 337, 301, 383, 328 ], [ 387, 301, 434, 328 ], [ 337, 324, 405, 351 ], [ 476, 314, 504, 339 ], [ 507, 314, 534, 339 ], [ 551, 303, 573, 328 ], [ 551, 324, 573, 349 ], [ 646, 314, 672, 339 ], [ 610, 335, 653, 360 ], [ 685, 314, 718, 339 ], [ 738, 250, 784, 275 ], [ 790, 250, 810, 275 ], [ 817, 250, 833, 275 ], [ 738, 271, 784, 296 ], [ 738, 293, 796, 317 ], [ 801, 293, 811, 317 ], [ 817, 293, 833, 317 ], [ 738, 314, 773, 339 ], [ 814, 314, 833, 339 ], [ 738, 335, 820, 360 ], [ 738, 356, 749, 381 ], [ 763, 356, 786, 381 ], [ 800, 356, 833, 381 ], [ 738, 377, 785, 402 ], [ 845, 250, 902, 277 ], [ 150, 527, 187, 554 ], [ 190, 527, 232, 554 ], [ 150, 550, 209, 577 ], [ 246, 421, 264, 446 ], [ 271, 421, 304, 446 ], [ 312, 421, 325, 446 ], [ 246, 442, 282, 467 ], [ 285, 442, 308, 467 ], [ 337, 457, 356, 484 ], [ 360, 457, 411, 484 ], [ 415, 457, 451, 484 ], [ 337, 481, 407, 507 ], [ 422, 481, 464, 507 ], [ 337, 504, 384, 531 ], [ 337, 527, 379, 554 ], [ 427, 527, 464, 554 ], [ 337, 550, 389, 577 ], [ 417, 550, 464, 577 ], [ 337, 573, 382, 600 ], [ 392, 573, 442, 600 ], [ 452, 573, 464, 600 ], [ 337, 596, 449, 623 ], [ 337, 619, 349, 646 ], [ 353, 619, 382, 646 ], [ 386, 619, 389, 646 ], [ 393, 619, 451, 646 ], [ 476, 551, 504, 576 ], [ 507, 551, 534, 576 ], [ 551, 541, 573, 565 ], [ 551, 562, 573, 587 ], [ 629, 551, 672, 576 ], [ 610, 573, 621, 597 ], [ 624, 573, 640, 597 ], [ 685, 551, 718, 576 ], [ 738, 399, 788, 426 ], [ 810, 399, 833, 426 ], [ 738, 423, 756, 449 ], [ 770, 423, 832, 449 ], [ 738, 446, 750, 473 ], [ 759, 446, 776, 473 ], [ 785, 446, 812, 473 ], [ 821, 446, 833, 473 ], [ 738, 469, 774, 496 ], [ 793, 469, 832, 496 ], [ 738, 492, 800, 519 ], [ 738, 515, 782, 542 ], [ 787, 515, 810, 542 ], [ 815, 515, 832, 542 ], [ 738, 538, 801, 565 ], [ 818, 538, 832, 565 ], [ 738, 562, 786, 589 ], [ 798, 562, 832, 589 ], [ 738, 585, 750, 612 ], [ 759, 585, 776, 612 ], [ 785, 585, 812, 612 ], [ 821, 585, 833, 612 ], [ 738, 608, 774, 635 ], [ 793, 608, 832, 635 ], [ 738, 631, 759, 658 ], [ 785, 631, 832, 658 ], [ 738, 654, 783, 681 ], [ 738, 678, 792, 704 ], [ 738, 701, 800, 728 ], [ 845, 399, 902, 426 ], [ 246, 293, 250, 317 ] ]
B6.Students Paper Presentation Name of Sl No Amt Student Desig.& Dept. Date Topic Institution (Rs.) Paper Titled: Exploring the effect of proximity Institute of marketing as a new marketing strategy tool in 1st&2nd April Jith John S3,MTech Technology and Indian retail markets: A review @ International 2016 7500/- Francis IEM Science, conference on Developments in Management Ghaziabad, UP ,Technology &Science (ICDMTB 2016) Paper Titled: Productivity enhancement in Institute of manufacturing industries through values stream 1st&2nd April S3,MTech Technology and Vishnulal N R mapping: A review @ International conference 2016 7500/- IEM Science, on Developments in Management ,Technology Ghaziabad, UP &Science (ICDMTB 2016) Paper Titled: Study on perception of new generation customers towards a footwear Institute of 1st&2nd April Muhammed S3,MTech manufacturing company :A review @ Technology and 2016 7500/- Thabsheer A IEM International conference on Developments in Science, Management ,Technology &Science (ICDMTB Ghaziabad, UP 2016) Paper Titled: A review on cost of quality Institute of 1st&2nd April S3,MTech analysing models @ International conference Technology and Aneesh M 2016 7500/- IEM on Developments in Management ,Technology Science, &Science (ICDMTB 2016) Ghaziabad, UP Paper Titled: Intervention strategies for manual Institute of material handling tasks :A review @ 1st&2nd April S4,MTech Technology and Ebin Mathew International conference on Developments in 2016 7500/- IEM Science, Management ,Technology &Science (ICDMTB Ghaziabad, UP 2016) BoG accorded sanction for attending the workshop. BoG recommended that faculty who is the co author may also attend the conference and the name of the faculty who is the co author should be included in the proposal.
B6.Students Paper Presentation Sl No Name of Student Desig.& Dept. Topic Institution Date Amt (Rs.) Jith John Francis S3,MTech IEM Paper Titled: Exploring the effect of proximity marketing as a new marketing strategy tool in Indian retail markets: A review @ International conference on Developments in Management ,Technology &Science (ICDMTB 2016) Institute of Technology and Science, Ghaziabad, UP 1st&2nd April 2016 7500/- Vishnulal N R S3,MTech IEM Paper Titled: Productivity enhancement in manufacturing industries through values stream mapping: A review @ International conference on Developments in Management ,Technology &Science (ICDMTB 2016) Institute of Technology and Science, Ghaziabad, UP 1st&2nd April 2016 7500/- Muhammed Thabsheer A S3,MTech IEM Paper Titled: Study on perception of new generation customers towards a footwear manufacturing company :A review @ International conference on Developments in Management ,Technology &Science (ICDMTB 2016) Institute of Technology and Science, Ghaziabad, UP 1st&2nd April 2016 7500/- Aneesh M S3,MTech IEM Paper Titled: A review on cost of quality analysing models @ International conference on Developments in Management ,Technology &Science (ICDMTB 2016) Institute of Technology and Science, Ghaziabad, UP 1st&2nd April 2016 7500/- Ebin Mathew S4,MTech IEM Paper Titled: Intervention strategies for manual material handling tasks :A review @ International conference on Developments in Management ,Technology &Science (ICDMTB 2016) Institute of Technology and Science, Ghaziabad, UP 1st&2nd April 2016 7500/- BoG accorded sanction for attending the workshop. BoG recommended that faculty who is the co author may also attend the conference and the name of the faculty who is the co author should be included in the proposal.
0.584349
[ 0, 1, 2, 5, 6, 3, 4, 8, 9, 10, 12, 13, 11, 7, 14, 34, 35, 48, 36, 49, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 39, 40, 41, 42, 43, 44, 45, 51, 52, 53, 54, 55, 58, 59, 60, 61, 22, 23, 37, 38, 50, 56, 57, 32, 33, 46, 47, 79, 80, 81, 76, 90, 62, 63, 64, 65, 66, 69, 70, 71, 72, 73, 82, 83, 84, 85, 86, 87, 92, 93, 94, 95, 96, 99, 100, 101, 67, 68, 77, 78, 91, 97, 98, 74, 75, 88, 89, 118, 129, 130, 119, 131, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 120, 121, 122, 123, 124, 132, 133, 134, 135, 136, 138, 139, 140, 141, 144, 114, 115, 125, 126, 137, 142, 143, 116, 117, 127, 128, 165, 166, 157, 169, 145, 146, 147, 148, 149, 150, 151, 152, 158, 159, 160, 161, 162, 170, 171, 172, 173, 174, 176, 177, 178, 153, 154, 163, 164, 175, 179, 180, 155, 156, 167, 168, 200, 201, 197, 209, 181, 182, 183, 184, 185, 186, 189, 190, 191, 192, 193, 194, 202, 203, 204, 205, 206, 211, 212, 213, 214, 217, 187, 188, 198, 199, 210, 215, 216, 195, 196, 207, 208, 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 ]
M17bog.docx
task-1431-290
16
[ [ 85, 57, 158, 85 ], [ 162, 57, 198, 85 ], [ 202, 57, 279, 85 ], [ 184, 97, 218, 124 ], [ 222, 97, 233, 124 ], [ 111, 102, 123, 129 ], [ 127, 102, 144, 129 ], [ 872, 109, 898, 136 ], [ 187, 120, 230, 147 ], [ 266, 120, 314, 147 ], [ 317, 120, 349, 147 ], [ 791, 120, 818, 147 ], [ 485, 122, 515, 146 ], [ 674, 122, 728, 146 ], [ 871, 132, 899, 159 ], [ 362, 168, 395, 195 ], [ 398, 168, 436, 195 ], [ 440, 168, 497, 195 ], [ 500, 168, 518, 195 ], [ 521, 168, 554, 195 ], [ 557, 168, 569, 195 ], [ 573, 168, 629, 195 ], [ 651, 179, 698, 206 ], [ 701, 179, 713, 206 ], [ 362, 191, 420, 218 ], [ 423, 191, 435, 218 ], [ 439, 191, 445, 218 ], [ 449, 191, 472, 218 ], [ 476, 191, 534, 218 ], [ 537, 191, 583, 218 ], [ 586, 191, 608, 218 ], [ 612, 191, 623, 218 ], [ 763, 191, 812, 218 ], [ 816, 191, 846, 218 ], [ 164, 202, 185, 229 ], [ 226, 202, 253, 229 ], [ 266, 202, 326, 229 ], [ 651, 202, 719, 229 ], [ 722, 202, 743, 229 ], [ 362, 214, 398, 241 ], [ 402, 214, 431, 241 ], [ 435, 214, 484, 241 ], [ 488, 214, 498, 241 ], [ 501, 214, 540, 241 ], [ 544, 214, 557, 241 ], [ 561, 214, 633, 241 ], [ 767, 214, 795, 241 ], [ 859, 214, 897, 241 ], [ 164, 226, 206, 252 ], [ 266, 226, 292, 252 ], [ 651, 226, 699, 252 ], [ 362, 237, 425, 264 ], [ 428, 237, 442, 264 ], [ 446, 237, 528, 264 ], [ 532, 237, 543, 264 ], [ 547, 237, 621, 264 ], [ 651, 249, 715, 276 ], [ 719, 249, 737, 276 ], [ 362, 260, 434, 287 ], [ 437, 260, 493, 287 ], [ 496, 260, 556, 287 ], [ 560, 260, 593, 287 ], [ 362, 284, 395, 311 ], [ 398, 284, 436, 311 ], [ 440, 284, 510, 311 ], [ 514, 284, 589, 311 ], [ 593, 284, 604, 311 ], [ 651, 296, 698, 323 ], [ 701, 296, 713, 323 ], [ 362, 308, 445, 335 ], [ 449, 308, 504, 335 ], [ 508, 308, 552, 335 ], [ 556, 308, 592, 335 ], [ 596, 308, 634, 335 ], [ 763, 308, 812, 335 ], [ 816, 308, 846, 335 ], [ 266, 319, 326, 346 ], [ 651, 319, 719, 346 ], [ 722, 319, 743, 346 ], [ 164, 331, 220, 358 ], [ 223, 331, 234, 358 ], [ 237, 331, 247, 358 ], [ 362, 331, 416, 358 ], [ 419, 331, 430, 358 ], [ 433, 331, 472, 358 ], [ 476, 331, 489, 358 ], [ 492, 331, 565, 358 ], [ 569, 331, 631, 358 ], [ 767, 331, 795, 358 ], [ 859, 331, 897, 358 ], [ 266, 342, 292, 369 ], [ 651, 342, 699, 369 ], [ 362, 354, 376, 381 ], [ 380, 354, 462, 381 ], [ 466, 354, 477, 381 ], [ 480, 354, 555, 381 ], [ 558, 354, 630, 381 ], [ 651, 366, 715, 392 ], [ 719, 366, 737, 392 ], [ 362, 377, 417, 404 ], [ 421, 377, 481, 404 ], [ 485, 377, 518, 404 ], [ 362, 401, 395, 428 ], [ 398, 401, 436, 428 ], [ 440, 401, 473, 428 ], [ 476, 401, 491, 428 ], [ 494, 401, 554, 428 ], [ 558, 401, 570, 428 ], [ 573, 401, 597, 428 ], [ 362, 424, 422, 451 ], [ 426, 424, 484, 451 ], [ 487, 424, 532, 451 ], [ 536, 424, 542, 451 ], [ 546, 424, 596, 451 ], [ 651, 424, 698, 451 ], [ 701, 424, 713, 451 ], [ 763, 436, 812, 463 ], [ 816, 436, 846, 463 ], [ 164, 448, 233, 474 ], [ 266, 448, 326, 474 ], [ 362, 448, 445, 474 ], [ 449, 448, 501, 474 ], [ 508, 448, 522, 474 ], [ 526, 448, 565, 474 ], [ 568, 448, 581, 474 ], [ 651, 448, 719, 474 ], [ 722, 448, 743, 474 ], [ 767, 459, 795, 486 ], [ 859, 459, 897, 486 ], [ 164, 471, 224, 498 ], [ 227, 471, 238, 498 ], [ 266, 471, 292, 498 ], [ 362, 471, 435, 498 ], [ 438, 471, 501, 498 ], [ 505, 471, 519, 498 ], [ 522, 471, 605, 498 ], [ 608, 471, 619, 498 ], [ 651, 471, 699, 498 ], [ 362, 494, 436, 521 ], [ 440, 494, 512, 521 ], [ 515, 494, 571, 521 ], [ 574, 494, 634, 521 ], [ 651, 494, 715, 521 ], [ 719, 494, 737, 521 ], [ 362, 517, 395, 544 ], [ 362, 542, 395, 569 ], [ 398, 542, 436, 569 ], [ 440, 542, 450, 569 ], [ 454, 542, 492, 569 ], [ 496, 542, 510, 569 ], [ 514, 542, 537, 569 ], [ 540, 542, 552, 569 ], [ 556, 542, 596, 569 ], [ 651, 542, 698, 569 ], [ 701, 542, 713, 569 ], [ 763, 554, 812, 581 ], [ 816, 554, 846, 581 ], [ 266, 565, 326, 592 ], [ 362, 565, 417, 592 ], [ 420, 565, 461, 592 ], [ 465, 565, 478, 592 ], [ 482, 565, 555, 592 ], [ 558, 565, 621, 592 ], [ 651, 565, 719, 592 ], [ 722, 565, 743, 592 ], [ 164, 577, 207, 604 ], [ 211, 577, 223, 604 ], [ 767, 577, 795, 604 ], [ 859, 577, 897, 604 ], [ 266, 589, 292, 616 ], [ 362, 589, 376, 616 ], [ 380, 589, 462, 616 ], [ 466, 589, 477, 616 ], [ 480, 589, 555, 616 ], [ 558, 589, 630, 616 ], [ 651, 589, 699, 616 ], [ 362, 612, 417, 639 ], [ 421, 612, 481, 639 ], [ 485, 612, 518, 639 ], [ 651, 612, 715, 639 ], [ 719, 612, 737, 639 ], [ 362, 637, 395, 664 ], [ 398, 637, 436, 664 ], [ 440, 637, 509, 664 ], [ 513, 637, 567, 664 ], [ 570, 637, 587, 664 ], [ 590, 637, 632, 664 ], [ 651, 649, 698, 676 ], [ 701, 649, 713, 676 ], [ 362, 660, 409, 687 ], [ 412, 660, 462, 687 ], [ 466, 660, 494, 687 ], [ 505, 660, 519, 687 ], [ 523, 660, 562, 687 ], [ 565, 660, 578, 687 ], [ 763, 660, 812, 687 ], [ 816, 660, 846, 687 ], [ 266, 672, 326, 699 ], [ 651, 672, 719, 699 ], [ 722, 672, 743, 699 ], [ 164, 683, 191, 710 ], [ 195, 683, 241, 710 ], [ 362, 683, 435, 710 ], [ 438, 683, 501, 710 ], [ 505, 683, 519, 710 ], [ 522, 683, 605, 710 ], [ 608, 683, 619, 710 ], [ 767, 683, 795, 710 ], [ 859, 683, 897, 710 ], [ 266, 695, 292, 722 ], [ 651, 695, 699, 722 ], [ 362, 707, 436, 733 ], [ 440, 707, 512, 733 ], [ 515, 707, 571, 733 ], [ 574, 707, 634, 733 ], [ 651, 718, 715, 745 ], [ 719, 718, 737, 745 ], [ 362, 730, 395, 757 ], [ 89, 777, 115, 804 ], [ 119, 777, 170, 804 ], [ 174, 777, 222, 804 ], [ 225, 777, 242, 804 ], [ 245, 777, 298, 804 ], [ 302, 777, 319, 804 ], [ 323, 777, 383, 804 ], [ 85, 800, 112, 827 ], [ 117, 800, 197, 827 ], [ 202, 800, 223, 827 ], [ 228, 800, 268, 827 ], [ 272, 800, 297, 827 ], [ 302, 800, 311, 827 ], [ 316, 800, 333, 827 ], [ 338, 800, 351, 827 ], [ 356, 800, 393, 827 ], [ 397, 800, 422, 827 ], [ 427, 800, 449, 827 ], [ 454, 800, 489, 827 ], [ 494, 800, 511, 827 ], [ 516, 800, 578, 827 ], [ 583, 800, 604, 827 ], [ 608, 800, 626, 827 ], [ 630, 800, 661, 827 ], [ 666, 800, 678, 827 ], [ 683, 800, 700, 827 ], [ 705, 800, 745, 827 ], [ 749, 800, 774, 827 ], [ 778, 800, 788, 827 ], [ 793, 800, 810, 827 ], [ 815, 800, 828, 827 ], [ 833, 800, 869, 827 ], [ 874, 800, 912, 827 ], [ 917, 800, 930, 827 ], [ 85, 823, 134, 850 ], [ 138, 823, 149, 850 ], [ 152, 823, 170, 850 ], [ 173, 823, 226, 850 ] ]
[ [ 85, 57, 158, 85 ], [ 162, 57, 198, 85 ], [ 202, 57, 279, 85 ], [ 111, 102, 123, 129 ], [ 127, 102, 144, 129 ], [ 184, 97, 218, 124 ], [ 222, 97, 233, 124 ], [ 187, 120, 230, 147 ], [ 266, 120, 314, 147 ], [ 317, 120, 349, 147 ], [ 485, 122, 515, 146 ], [ 674, 122, 728, 146 ], [ 791, 120, 818, 147 ], [ 872, 109, 898, 136 ], [ 871, 132, 899, 159 ], [ 164, 202, 185, 229 ], [ 226, 202, 253, 229 ], [ 164, 226, 206, 252 ], [ 266, 202, 326, 229 ], [ 266, 226, 292, 252 ], [ 362, 168, 395, 195 ], [ 398, 168, 436, 195 ], [ 440, 168, 497, 195 ], [ 500, 168, 518, 195 ], [ 521, 168, 554, 195 ], [ 557, 168, 569, 195 ], [ 573, 168, 629, 195 ], [ 362, 191, 420, 218 ], [ 423, 191, 435, 218 ], [ 439, 191, 445, 218 ], [ 449, 191, 472, 218 ], [ 476, 191, 534, 218 ], [ 537, 191, 583, 218 ], [ 586, 191, 608, 218 ], [ 612, 191, 623, 218 ], [ 362, 214, 398, 241 ], [ 402, 214, 431, 241 ], [ 435, 214, 484, 241 ], [ 488, 214, 498, 241 ], [ 501, 214, 540, 241 ], [ 544, 214, 557, 241 ], [ 561, 214, 633, 241 ], [ 362, 237, 425, 264 ], [ 428, 237, 442, 264 ], [ 446, 237, 528, 264 ], [ 532, 237, 543, 264 ], [ 547, 237, 621, 264 ], [ 362, 260, 434, 287 ], [ 437, 260, 493, 287 ], [ 496, 260, 556, 287 ], [ 560, 260, 593, 287 ], [ 651, 179, 698, 206 ], [ 701, 179, 713, 206 ], [ 651, 202, 719, 229 ], [ 722, 202, 743, 229 ], [ 651, 226, 699, 252 ], [ 651, 249, 715, 276 ], [ 719, 249, 737, 276 ], [ 763, 191, 812, 218 ], [ 816, 191, 846, 218 ], [ 767, 214, 795, 241 ], [ 859, 214, 897, 241 ], [ 164, 331, 220, 358 ], [ 223, 331, 234, 358 ], [ 237, 331, 247, 358 ], [ 266, 319, 326, 346 ], [ 266, 342, 292, 369 ], [ 362, 284, 395, 311 ], [ 398, 284, 436, 311 ], [ 440, 284, 510, 311 ], [ 514, 284, 589, 311 ], [ 593, 284, 604, 311 ], [ 362, 308, 445, 335 ], [ 449, 308, 504, 335 ], [ 508, 308, 552, 335 ], [ 556, 308, 592, 335 ], [ 596, 308, 634, 335 ], [ 362, 331, 416, 358 ], [ 419, 331, 430, 358 ], [ 433, 331, 472, 358 ], [ 476, 331, 489, 358 ], [ 492, 331, 565, 358 ], [ 569, 331, 631, 358 ], [ 362, 354, 376, 381 ], [ 380, 354, 462, 381 ], [ 466, 354, 477, 381 ], [ 480, 354, 555, 381 ], [ 558, 354, 630, 381 ], [ 362, 377, 417, 404 ], [ 421, 377, 481, 404 ], [ 485, 377, 518, 404 ], [ 651, 296, 698, 323 ], [ 701, 296, 713, 323 ], [ 651, 319, 719, 346 ], [ 722, 319, 743, 346 ], [ 651, 342, 699, 369 ], [ 651, 366, 715, 392 ], [ 719, 366, 737, 392 ], [ 763, 308, 812, 335 ], [ 816, 308, 846, 335 ], [ 767, 331, 795, 358 ], [ 859, 331, 897, 358 ], [ 164, 448, 233, 474 ], [ 164, 471, 224, 498 ], [ 227, 471, 238, 498 ], [ 266, 448, 326, 474 ], [ 266, 471, 292, 498 ], [ 362, 401, 395, 428 ], [ 398, 401, 436, 428 ], [ 440, 401, 473, 428 ], [ 476, 401, 491, 428 ], [ 494, 401, 554, 428 ], [ 558, 401, 570, 428 ], [ 573, 401, 597, 428 ], [ 362, 424, 422, 451 ], [ 426, 424, 484, 451 ], [ 487, 424, 532, 451 ], [ 536, 424, 542, 451 ], [ 546, 424, 596, 451 ], [ 362, 448, 445, 474 ], [ 449, 448, 501, 474 ], [ 508, 448, 522, 474 ], [ 526, 448, 565, 474 ], [ 568, 448, 581, 474 ], [ 362, 471, 435, 498 ], [ 438, 471, 501, 498 ], [ 505, 471, 519, 498 ], [ 522, 471, 605, 498 ], [ 608, 471, 619, 498 ], [ 362, 494, 436, 521 ], [ 440, 494, 512, 521 ], [ 515, 494, 571, 521 ], [ 574, 494, 634, 521 ], [ 362, 517, 395, 544 ], [ 651, 424, 698, 451 ], [ 701, 424, 713, 451 ], [ 651, 448, 719, 474 ], [ 722, 448, 743, 474 ], [ 651, 471, 699, 498 ], [ 651, 494, 715, 521 ], [ 719, 494, 737, 521 ], [ 763, 436, 812, 463 ], [ 816, 436, 846, 463 ], [ 767, 459, 795, 486 ], [ 859, 459, 897, 486 ], [ 164, 577, 207, 604 ], [ 211, 577, 223, 604 ], [ 266, 565, 326, 592 ], [ 266, 589, 292, 616 ], [ 362, 542, 395, 569 ], [ 398, 542, 436, 569 ], [ 440, 542, 450, 569 ], [ 454, 542, 492, 569 ], [ 496, 542, 510, 569 ], [ 514, 542, 537, 569 ], [ 540, 542, 552, 569 ], [ 556, 542, 596, 569 ], [ 362, 565, 417, 592 ], [ 420, 565, 461, 592 ], [ 465, 565, 478, 592 ], [ 482, 565, 555, 592 ], [ 558, 565, 621, 592 ], [ 362, 589, 376, 616 ], [ 380, 589, 462, 616 ], [ 466, 589, 477, 616 ], [ 480, 589, 555, 616 ], [ 558, 589, 630, 616 ], [ 362, 612, 417, 639 ], [ 421, 612, 481, 639 ], [ 485, 612, 518, 639 ], [ 651, 542, 698, 569 ], [ 701, 542, 713, 569 ], [ 651, 565, 719, 592 ], [ 722, 565, 743, 592 ], [ 651, 589, 699, 616 ], [ 651, 612, 715, 639 ], [ 719, 612, 737, 639 ], [ 763, 554, 812, 581 ], [ 816, 554, 846, 581 ], [ 767, 577, 795, 604 ], [ 859, 577, 897, 604 ], [ 164, 683, 191, 710 ], [ 195, 683, 241, 710 ], [ 266, 672, 326, 699 ], [ 266, 695, 292, 722 ], [ 362, 637, 395, 664 ], [ 398, 637, 436, 664 ], [ 440, 637, 509, 664 ], [ 513, 637, 567, 664 ], [ 570, 637, 587, 664 ], [ 590, 637, 632, 664 ], [ 362, 660, 409, 687 ], [ 412, 660, 462, 687 ], [ 466, 660, 494, 687 ], [ 505, 660, 519, 687 ], [ 523, 660, 562, 687 ], [ 565, 660, 578, 687 ], [ 362, 683, 435, 710 ], [ 438, 683, 501, 710 ], [ 505, 683, 519, 710 ], [ 522, 683, 605, 710 ], [ 608, 683, 619, 710 ], [ 362, 707, 436, 733 ], [ 440, 707, 512, 733 ], [ 515, 707, 571, 733 ], [ 574, 707, 634, 733 ], [ 362, 730, 395, 757 ], [ 651, 649, 698, 676 ], [ 701, 649, 713, 676 ], [ 651, 672, 719, 699 ], [ 722, 672, 743, 699 ], [ 651, 695, 699, 722 ], [ 651, 718, 715, 745 ], [ 719, 718, 737, 745 ], [ 763, 660, 812, 687 ], [ 816, 660, 846, 687 ], [ 767, 683, 795, 710 ], [ 859, 683, 897, 710 ], [ 89, 777, 115, 804 ], [ 119, 777, 170, 804 ], [ 174, 777, 222, 804 ], [ 225, 777, 242, 804 ], [ 245, 777, 298, 804 ], [ 302, 777, 319, 804 ], [ 323, 777, 383, 804 ], [ 85, 800, 112, 827 ], [ 117, 800, 197, 827 ], [ 202, 800, 223, 827 ], [ 228, 800, 268, 827 ], [ 272, 800, 297, 827 ], [ 302, 800, 311, 827 ], [ 316, 800, 333, 827 ], [ 338, 800, 351, 827 ], [ 356, 800, 393, 827 ], [ 397, 800, 422, 827 ], [ 427, 800, 449, 827 ], [ 454, 800, 489, 827 ], [ 494, 800, 511, 827 ], [ 516, 800, 578, 827 ], [ 583, 800, 604, 827 ], [ 608, 800, 626, 827 ], [ 630, 800, 661, 827 ], [ 666, 800, 678, 827 ], [ 683, 800, 700, 827 ], [ 705, 800, 745, 827 ], [ 749, 800, 774, 827 ], [ 778, 800, 788, 827 ], [ 793, 800, 810, 827 ], [ 815, 800, 828, 827 ], [ 833, 800, 869, 827 ], [ 874, 800, 912, 827 ], [ 917, 800, 930, 827 ], [ 85, 823, 134, 850 ], [ 138, 823, 149, 850 ], [ 152, 823, 170, 850 ], [ 173, 823, 226, 850 ] ]
APPENDIX F A Few Critical Things to Keep in Mind When Responding to an RFP for Consolidated Technology Services This document is explanatory only and has no consequence on the processes stated in any particular procurement. Please do not submit this checklist, it is merely a resource. _______ Note critical items such as: mandatory 1. Read the document. entire requirements; supplies/services required; submittal dates; number of copies required for submittal; funding amount and source; contract requirements (i.e., contract performance security, insurance requirements, performance and/or reporting requirements, etc.). 2. _______ Note the procurement officer's name, address, phone numbers and e-mail address. This is the only person you are allowed to communicate with regarding the RFP and is an excellent source of information for any questions you may have. 3. _______ Take advantage of the and period. Submit your “question answer” questions to the RFP Coordinator by the due date listed in the Schedule of Events and view the answers given in the formal issued for the RFP. “addenda” All addenda issued for an RFP are posted on the website and will State’s include all questions asked and answered concerning the RFP. 4. _______ Follow the format required in the RFP when preparing your response. Provide point-by-point responses to all sections in a clear and concise manner. Make sure to address each subpart. 5. _______ Provide complete answers/descriptions. Read and answer all questions and requirements. assume the State or evaluator/evaluation committee will Don’t know what your company capabilities are or what items/services you can provide, even if you have previously contracted with the State. The proposals are evaluated based solely on the information and materials provided in your response. 6. _______ Check the website for RFP addenda. Before submitting your State’s response, check the website at State’s http://cts.wa.gov/procurement/procurement.aspx to see whether any addenda were issued for the RFP. _______ to make sure that you have 7. Review and read the RFP document again addressed all requirements and have followed all of the instructions. Once you have done that, read the RFP document again.
APPENDIX F A Few Critical Things to Keep in Mind When Responding to an RFP for Consolidated Technology Services This document is explanatory only and has no consequence on the processes stated in any particular procurement. Please do not submit this checklist, it is merely a resource. 1. _______ Read the entire document. Note critical items such as: mandatory requirements; supplies/services required; submittal dates; number of copies required for submittal; funding amount and source; contract requirements (i.e., contract performance security, insurance requirements, performance and/or reporting requirements, etc.). 2. _______ Note the procurement officer's name, address, phone numbers and e-mail address. This is the only person you are allowed to communicate with regarding the RFP and is an excellent source of information for any questions you may have. 3. _______ Take advantage of the “question and answer” period. Submit your questions to the RFP Coordinator by the due date listed in the Schedule of Events and view the answers given in the formal “addenda” issued for the RFP. All addenda issued for an RFP are posted on the State’s website and will include all questions asked and answered concerning the RFP. 4. _______ Follow the format required in the RFP when preparing your response. Provide point-by-point responses to all sections in a clear and concise manner. Make sure to address each subpart. 5. _______ Provide complete answers/descriptions. Read and answer all questions and requirements. Don’t assume the State or evaluator/evaluation committee will know what your company capabilities are or what items/services you can provide, even if you have previously contracted with the State. The proposals are evaluated based solely on the information and materials provided in your response. 6. _______ Check the State’s website for RFP addenda. Before submitting your response, check the State’s website at http://cts.wa.gov/procurement/procurement.aspx to see whether any addenda were issued for the RFP. 7. _______ Review and read the RFP document again to make sure that you have addressed all requirements and have followed all of the instructions. Once you have done that, read the RFP document again.
0.887883
[ 0, 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, 54, 47, 55, 56, 58, 57, 48, 49, 50, 51, 52, 53, 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, 137, 133, 138, 134, 135, 136, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 166, 162, 163, 164, 165, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 180, 177, 178, 179, 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, 240, 233, 234, 235, 236, 237, 238, 239, 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, 288, 281, 282, 283, 284, 285, 286, 287, 289, 290, 291, 294, 292, 293, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 313, 306, 314, 315, 316, 317, 318, 319, 320, 307, 308, 309, 310, 311, 312, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340 ]
M18-RFP-038.docx
task-1431-298
25
[ [ 433, 89, 535, 110 ], [ 539, 89, 551, 110 ], [ 328, 127, 342, 148 ], [ 347, 127, 382, 148 ], [ 387, 127, 451, 148 ], [ 456, 127, 514, 148 ], [ 519, 127, 535, 148 ], [ 540, 127, 584, 148 ], [ 589, 127, 605, 148 ], [ 610, 127, 656, 148 ], [ 355, 145, 405, 166 ], [ 410, 145, 509, 166 ], [ 514, 145, 530, 166 ], [ 535, 145, 556, 166 ], [ 561, 145, 599, 166 ], [ 604, 145, 629, 166 ], [ 349, 162, 459, 183 ], [ 464, 162, 561, 183 ], [ 566, 162, 634, 183 ], [ 139, 198, 173, 216 ], [ 178, 198, 254, 216 ], [ 259, 198, 272, 216 ], [ 277, 198, 370, 216 ], [ 375, 198, 409, 216 ], [ 414, 198, 443, 216 ], [ 448, 198, 475, 216 ], [ 480, 198, 500, 216 ], [ 505, 198, 605, 216 ], [ 610, 198, 629, 216 ], [ 634, 198, 658, 216 ], [ 663, 198, 740, 216 ], [ 745, 198, 792, 216 ], [ 797, 198, 812, 216 ], [ 817, 198, 845, 216 ], [ 164, 216, 244, 234 ], [ 249, 216, 354, 234 ], [ 359, 216, 411, 234 ], [ 416, 216, 435, 234 ], [ 440, 216, 465, 234 ], [ 470, 216, 523, 234 ], [ 528, 216, 556, 234 ], [ 561, 216, 634, 234 ], [ 639, 216, 650, 234 ], [ 655, 216, 668, 234 ], [ 673, 216, 727, 234 ], [ 731, 216, 741, 234 ], [ 746, 216, 819, 234 ], [ 176, 249, 239, 268 ], [ 499, 249, 534, 268 ], [ 539, 249, 588, 268 ], [ 593, 249, 632, 268 ], [ 636, 249, 669, 268 ], [ 674, 249, 694, 268 ], [ 698, 249, 775, 268 ], [ 117, 250, 131, 269 ], [ 294, 250, 334, 269 ], [ 338, 250, 362, 269 ], [ 414, 250, 494, 269 ], [ 367, 251, 410, 269 ], [ 294, 265, 393, 284 ], [ 397, 265, 519, 284 ], [ 523, 265, 588, 284 ], [ 593, 265, 659, 284 ], [ 664, 265, 706, 284 ], [ 711, 265, 765, 284 ], [ 770, 265, 785, 284 ], [ 790, 265, 836, 284 ], [ 294, 281, 354, 300 ], [ 358, 281, 379, 300 ], [ 384, 281, 456, 300 ], [ 460, 281, 516, 300 ], [ 520, 281, 574, 300 ], [ 579, 281, 605, 300 ], [ 609, 281, 661, 300 ], [ 666, 281, 724, 300 ], [ 728, 281, 822, 300 ], [ 827, 281, 859, 300 ], [ 294, 297, 352, 316 ], [ 356, 297, 447, 316 ], [ 452, 297, 513, 316 ], [ 517, 297, 586, 316 ], [ 591, 297, 689, 316 ], [ 694, 297, 784, 316 ], [ 789, 297, 835, 316 ], [ 294, 313, 360, 332 ], [ 364, 313, 462, 332 ], [ 467, 313, 503, 332 ], [ 117, 345, 131, 365 ], [ 176, 345, 239, 364 ], [ 294, 345, 330, 365 ], [ 334, 345, 358, 365 ], [ 363, 345, 462, 365 ], [ 467, 345, 529, 365 ], [ 534, 345, 580, 365 ], [ 585, 345, 648, 365 ], [ 652, 345, 699, 365 ], [ 704, 345, 772, 365 ], [ 776, 345, 805, 365 ], [ 810, 345, 858, 365 ], [ 294, 361, 357, 381 ], [ 366, 361, 398, 380 ], [ 403, 361, 415, 380 ], [ 419, 361, 441, 380 ], [ 446, 361, 479, 381 ], [ 483, 361, 535, 381 ], [ 540, 361, 566, 380 ], [ 571, 361, 593, 380 ], [ 597, 361, 654, 380 ], [ 659, 361, 673, 380 ], [ 677, 361, 774, 380 ], [ 779, 361, 811, 380 ], [ 294, 377, 363, 396 ], [ 367, 377, 389, 396 ], [ 394, 377, 426, 396 ], [ 430, 377, 456, 396 ], [ 461, 377, 473, 396 ], [ 477, 377, 494, 396 ], [ 498, 377, 563, 396 ], [ 568, 377, 615, 396 ], [ 619, 377, 634, 396 ], [ 639, 377, 724, 396 ], [ 728, 377, 749, 396 ], [ 754, 377, 780, 396 ], [ 784, 377, 852, 396 ], [ 294, 393, 321, 412 ], [ 325, 393, 356, 412 ], [ 360, 393, 399, 412 ], [ 117, 425, 131, 444 ], [ 176, 425, 239, 444 ], [ 294, 425, 333, 444 ], [ 337, 425, 416, 444 ], [ 421, 425, 436, 444 ], [ 440, 425, 464, 444 ], [ 547, 425, 576, 444 ], [ 649, 425, 703, 444 ], [ 708, 425, 760, 444 ], [ 764, 425, 797, 444 ], [ 469, 427, 543, 443 ], [ 581, 427, 644, 443 ], [ 294, 441, 362, 460 ], [ 366, 441, 380, 460 ], [ 385, 441, 407, 460 ], [ 411, 441, 443, 460 ], [ 448, 441, 535, 460 ], [ 539, 441, 557, 460 ], [ 562, 441, 583, 460 ], [ 588, 441, 614, 460 ], [ 618, 441, 648, 460 ], [ 653, 441, 692, 460 ], [ 696, 441, 710, 460 ], [ 715, 441, 737, 460 ], [ 741, 441, 807, 460 ], [ 812, 441, 827, 460 ], [ 294, 457, 343, 476 ], [ 347, 457, 373, 476 ], [ 378, 457, 413, 476 ], [ 417, 457, 439, 476 ], [ 444, 457, 501, 476 ], [ 506, 457, 546, 476 ], [ 550, 457, 564, 476 ], [ 569, 457, 591, 476 ], [ 595, 457, 643, 476 ], [ 728, 457, 773, 476 ], [ 778, 457, 798, 476 ], [ 803, 457, 825, 476 ], [ 829, 457, 866, 476 ], [ 648, 459, 723, 475 ], [ 294, 473, 317, 492 ], [ 321, 473, 381, 492 ], [ 386, 473, 431, 492 ], [ 435, 473, 456, 492 ], [ 461, 473, 478, 492 ], [ 482, 473, 514, 492 ], [ 518, 473, 541, 492 ], [ 545, 473, 592, 492 ], [ 596, 473, 615, 492 ], [ 619, 473, 641, 492 ], [ 699, 473, 754, 492 ], [ 758, 473, 784, 492 ], [ 789, 473, 817, 492 ], [ 645, 475, 694, 491 ], [ 294, 489, 347, 508 ], [ 351, 489, 369, 508 ], [ 374, 489, 442, 508 ], [ 446, 489, 487, 508 ], [ 491, 489, 517, 508 ], [ 522, 489, 590, 508 ], [ 594, 489, 674, 508 ], [ 679, 489, 701, 508 ], [ 705, 489, 742, 508 ], [ 117, 521, 131, 540 ], [ 176, 521, 239, 540 ], [ 294, 521, 346, 540 ], [ 350, 521, 374, 540 ], [ 379, 521, 432, 540 ], [ 436, 521, 503, 540 ], [ 507, 521, 523, 540 ], [ 527, 521, 551, 540 ], [ 555, 521, 590, 540 ], [ 595, 521, 634, 540 ], [ 638, 521, 707, 540 ], [ 712, 521, 744, 540 ], [ 749, 521, 817, 540 ], [ 294, 537, 350, 555 ], [ 354, 537, 458, 555 ], [ 463, 537, 532, 555 ], [ 537, 537, 551, 555 ], [ 555, 537, 573, 555 ], [ 578, 537, 636, 555 ], [ 640, 537, 654, 555 ], [ 659, 537, 667, 555 ], [ 671, 537, 706, 555 ], [ 711, 537, 736, 555 ], [ 741, 537, 795, 555 ], [ 799, 537, 858, 555 ], [ 294, 553, 335, 572 ], [ 339, 553, 369, 572 ], [ 374, 553, 388, 572 ], [ 392, 553, 446, 572 ], [ 451, 553, 483, 572 ], [ 488, 553, 545, 572 ], [ 117, 585, 131, 604 ], [ 176, 585, 239, 603 ], [ 294, 585, 354, 604 ], [ 358, 585, 427, 604 ], [ 432, 585, 596, 604 ], [ 600, 585, 637, 603 ], [ 642, 585, 668, 603 ], [ 672, 585, 723, 603 ], [ 728, 585, 747, 604 ], [ 751, 585, 819, 603 ], [ 824, 585, 849, 603 ], [ 294, 601, 392, 619 ], [ 443, 601, 496, 619 ], [ 500, 601, 522, 619 ], [ 527, 601, 563, 619 ], [ 567, 601, 582, 619 ], [ 587, 601, 733, 619 ], [ 738, 601, 814, 619 ], [ 818, 601, 846, 619 ], [ 397, 603, 439, 619 ], [ 294, 617, 334, 635 ], [ 338, 617, 373, 635 ], [ 378, 617, 410, 635 ], [ 415, 617, 481, 635 ], [ 485, 617, 567, 635 ], [ 572, 617, 594, 635 ], [ 598, 617, 613, 635 ], [ 618, 617, 653, 635 ], [ 657, 617, 759, 635 ], [ 764, 617, 790, 635 ], [ 795, 617, 820, 635 ], [ 294, 633, 353, 651 ], [ 358, 633, 392, 651 ], [ 396, 633, 407, 651 ], [ 412, 633, 439, 651 ], [ 443, 633, 477, 651 ], [ 482, 633, 557, 651 ], [ 562, 633, 637, 651 ], [ 641, 633, 673, 651 ], [ 678, 633, 700, 651 ], [ 704, 633, 745, 651 ], [ 749, 633, 777, 651 ], [ 782, 633, 850, 651 ], [ 294, 649, 316, 667 ], [ 320, 649, 389, 667 ], [ 394, 649, 435, 667 ], [ 439, 649, 482, 667 ], [ 486, 649, 504, 667 ], [ 509, 649, 531, 667 ], [ 535, 649, 620, 667 ], [ 625, 649, 651, 667 ], [ 655, 649, 721, 667 ], [ 725, 649, 789, 667 ], [ 794, 649, 808, 667 ], [ 812, 649, 845, 667 ], [ 294, 665, 361, 683 ], [ 117, 697, 131, 716 ], [ 176, 697, 239, 715 ], [ 294, 697, 343, 716 ], [ 347, 697, 371, 716 ], [ 432, 697, 489, 716 ], [ 493, 697, 516, 716 ], [ 521, 697, 556, 716 ], [ 560, 697, 631, 716 ], [ 635, 697, 684, 715 ], [ 689, 697, 766, 715 ], [ 770, 697, 803, 715 ], [ 376, 699, 428, 714 ], [ 294, 713, 361, 731 ], [ 366, 713, 408, 731 ], [ 412, 713, 434, 731 ], [ 492, 713, 547, 731 ], [ 552, 713, 564, 731 ], [ 439, 715, 488, 730 ], [ 294, 729, 643, 747 ], [ 652, 729, 666, 747 ], [ 670, 729, 693, 747 ], [ 698, 729, 756, 747 ], [ 760, 729, 786, 747 ], [ 790, 729, 850, 747 ], [ 294, 744, 329, 763 ], [ 333, 744, 378, 763 ], [ 383, 744, 404, 763 ], [ 408, 744, 430, 763 ], [ 435, 744, 471, 763 ], [ 176, 776, 239, 795 ], [ 622, 776, 636, 795 ], [ 640, 776, 679, 795 ], [ 684, 776, 714, 795 ], [ 718, 776, 745, 795 ], [ 750, 776, 777, 795 ], [ 781, 776, 815, 795 ], [ 117, 777, 131, 796 ], [ 294, 777, 350, 796 ], [ 354, 777, 383, 796 ], [ 388, 777, 423, 796 ], [ 427, 777, 451, 796 ], [ 456, 777, 490, 796 ], [ 495, 777, 571, 796 ], [ 575, 777, 617, 796 ], [ 294, 793, 365, 811 ], [ 369, 793, 387, 811 ], [ 392, 793, 485, 811 ], [ 490, 793, 516, 811 ], [ 520, 793, 554, 811 ], [ 559, 793, 623, 811 ], [ 627, 793, 645, 811 ], [ 650, 793, 665, 811 ], [ 669, 793, 691, 811 ], [ 695, 793, 784, 811 ], [ 788, 793, 826, 811 ], [ 831, 793, 858, 811 ], [ 294, 808, 328, 827 ], [ 332, 808, 367, 827 ], [ 372, 808, 403, 827 ], [ 408, 808, 439, 827 ], [ 443, 808, 465, 827 ], [ 470, 808, 501, 827 ], [ 506, 808, 577, 827 ], [ 581, 808, 625, 827 ] ]
[ [ 433, 89, 535, 110 ], [ 539, 89, 551, 110 ], [ 328, 127, 342, 148 ], [ 347, 127, 382, 148 ], [ 387, 127, 451, 148 ], [ 456, 127, 514, 148 ], [ 519, 127, 535, 148 ], [ 540, 127, 584, 148 ], [ 589, 127, 605, 148 ], [ 610, 127, 656, 148 ], [ 355, 145, 405, 166 ], [ 410, 145, 509, 166 ], [ 514, 145, 530, 166 ], [ 535, 145, 556, 166 ], [ 561, 145, 599, 166 ], [ 604, 145, 629, 166 ], [ 349, 162, 459, 183 ], [ 464, 162, 561, 183 ], [ 566, 162, 634, 183 ], [ 139, 198, 173, 216 ], [ 178, 198, 254, 216 ], [ 259, 198, 272, 216 ], [ 277, 198, 370, 216 ], [ 375, 198, 409, 216 ], [ 414, 198, 443, 216 ], [ 448, 198, 475, 216 ], [ 480, 198, 500, 216 ], [ 505, 198, 605, 216 ], [ 610, 198, 629, 216 ], [ 634, 198, 658, 216 ], [ 663, 198, 740, 216 ], [ 745, 198, 792, 216 ], [ 797, 198, 812, 216 ], [ 817, 198, 845, 216 ], [ 164, 216, 244, 234 ], [ 249, 216, 354, 234 ], [ 359, 216, 411, 234 ], [ 416, 216, 435, 234 ], [ 440, 216, 465, 234 ], [ 470, 216, 523, 234 ], [ 528, 216, 556, 234 ], [ 561, 216, 634, 234 ], [ 639, 216, 650, 234 ], [ 655, 216, 668, 234 ], [ 673, 216, 727, 234 ], [ 731, 216, 741, 234 ], [ 746, 216, 819, 234 ], [ 117, 250, 131, 269 ], [ 176, 249, 239, 268 ], [ 294, 250, 334, 269 ], [ 338, 250, 362, 269 ], [ 367, 251, 410, 269 ], [ 414, 250, 494, 269 ], [ 499, 249, 534, 268 ], [ 539, 249, 588, 268 ], [ 593, 249, 632, 268 ], [ 636, 249, 669, 268 ], [ 674, 249, 694, 268 ], [ 698, 249, 775, 268 ], [ 294, 265, 393, 284 ], [ 397, 265, 519, 284 ], [ 523, 265, 588, 284 ], [ 593, 265, 659, 284 ], [ 664, 265, 706, 284 ], [ 711, 265, 765, 284 ], [ 770, 265, 785, 284 ], [ 790, 265, 836, 284 ], [ 294, 281, 354, 300 ], [ 358, 281, 379, 300 ], [ 384, 281, 456, 300 ], [ 460, 281, 516, 300 ], [ 520, 281, 574, 300 ], [ 579, 281, 605, 300 ], [ 609, 281, 661, 300 ], [ 666, 281, 724, 300 ], [ 728, 281, 822, 300 ], [ 827, 281, 859, 300 ], [ 294, 297, 352, 316 ], [ 356, 297, 447, 316 ], [ 452, 297, 513, 316 ], [ 517, 297, 586, 316 ], [ 591, 297, 689, 316 ], [ 694, 297, 784, 316 ], [ 789, 297, 835, 316 ], [ 294, 313, 360, 332 ], [ 364, 313, 462, 332 ], [ 467, 313, 503, 332 ], [ 117, 345, 131, 365 ], [ 176, 345, 239, 364 ], [ 294, 345, 330, 365 ], [ 334, 345, 358, 365 ], [ 363, 345, 462, 365 ], [ 467, 345, 529, 365 ], [ 534, 345, 580, 365 ], [ 585, 345, 648, 365 ], [ 652, 345, 699, 365 ], [ 704, 345, 772, 365 ], [ 776, 345, 805, 365 ], [ 810, 345, 858, 365 ], [ 294, 361, 357, 381 ], [ 366, 361, 398, 380 ], [ 403, 361, 415, 380 ], [ 419, 361, 441, 380 ], [ 446, 361, 479, 381 ], [ 483, 361, 535, 381 ], [ 540, 361, 566, 380 ], [ 571, 361, 593, 380 ], [ 597, 361, 654, 380 ], [ 659, 361, 673, 380 ], [ 677, 361, 774, 380 ], [ 779, 361, 811, 380 ], [ 294, 377, 363, 396 ], [ 367, 377, 389, 396 ], [ 394, 377, 426, 396 ], [ 430, 377, 456, 396 ], [ 461, 377, 473, 396 ], [ 477, 377, 494, 396 ], [ 498, 377, 563, 396 ], [ 568, 377, 615, 396 ], [ 619, 377, 634, 396 ], [ 639, 377, 724, 396 ], [ 728, 377, 749, 396 ], [ 754, 377, 780, 396 ], [ 784, 377, 852, 396 ], [ 294, 393, 321, 412 ], [ 325, 393, 356, 412 ], [ 360, 393, 399, 412 ], [ 117, 425, 131, 444 ], [ 176, 425, 239, 444 ], [ 294, 425, 333, 444 ], [ 337, 425, 416, 444 ], [ 421, 425, 436, 444 ], [ 440, 425, 464, 444 ], [ 469, 427, 543, 443 ], [ 547, 425, 576, 444 ], [ 581, 427, 644, 443 ], [ 649, 425, 703, 444 ], [ 708, 425, 760, 444 ], [ 764, 425, 797, 444 ], [ 294, 441, 362, 460 ], [ 366, 441, 380, 460 ], [ 385, 441, 407, 460 ], [ 411, 441, 443, 460 ], [ 448, 441, 535, 460 ], [ 539, 441, 557, 460 ], [ 562, 441, 583, 460 ], [ 588, 441, 614, 460 ], [ 618, 441, 648, 460 ], [ 653, 441, 692, 460 ], [ 696, 441, 710, 460 ], [ 715, 441, 737, 460 ], [ 741, 441, 807, 460 ], [ 812, 441, 827, 460 ], [ 294, 457, 343, 476 ], [ 347, 457, 373, 476 ], [ 378, 457, 413, 476 ], [ 417, 457, 439, 476 ], [ 444, 457, 501, 476 ], [ 506, 457, 546, 476 ], [ 550, 457, 564, 476 ], [ 569, 457, 591, 476 ], [ 595, 457, 643, 476 ], [ 648, 459, 723, 475 ], [ 728, 457, 773, 476 ], [ 778, 457, 798, 476 ], [ 803, 457, 825, 476 ], [ 829, 457, 866, 476 ], [ 294, 473, 317, 492 ], [ 321, 473, 381, 492 ], [ 386, 473, 431, 492 ], [ 435, 473, 456, 492 ], [ 461, 473, 478, 492 ], [ 482, 473, 514, 492 ], [ 518, 473, 541, 492 ], [ 545, 473, 592, 492 ], [ 596, 473, 615, 492 ], [ 619, 473, 641, 492 ], [ 645, 475, 694, 491 ], [ 699, 473, 754, 492 ], [ 758, 473, 784, 492 ], [ 789, 473, 817, 492 ], [ 294, 489, 347, 508 ], [ 351, 489, 369, 508 ], [ 374, 489, 442, 508 ], [ 446, 489, 487, 508 ], [ 491, 489, 517, 508 ], [ 522, 489, 590, 508 ], [ 594, 489, 674, 508 ], [ 679, 489, 701, 508 ], [ 705, 489, 742, 508 ], [ 117, 521, 131, 540 ], [ 176, 521, 239, 540 ], [ 294, 521, 346, 540 ], [ 350, 521, 374, 540 ], [ 379, 521, 432, 540 ], [ 436, 521, 503, 540 ], [ 507, 521, 523, 540 ], [ 527, 521, 551, 540 ], [ 555, 521, 590, 540 ], [ 595, 521, 634, 540 ], [ 638, 521, 707, 540 ], [ 712, 521, 744, 540 ], [ 749, 521, 817, 540 ], [ 294, 537, 350, 555 ], [ 354, 537, 458, 555 ], [ 463, 537, 532, 555 ], [ 537, 537, 551, 555 ], [ 555, 537, 573, 555 ], [ 578, 537, 636, 555 ], [ 640, 537, 654, 555 ], [ 659, 537, 667, 555 ], [ 671, 537, 706, 555 ], [ 711, 537, 736, 555 ], [ 741, 537, 795, 555 ], [ 799, 537, 858, 555 ], [ 294, 553, 335, 572 ], [ 339, 553, 369, 572 ], [ 374, 553, 388, 572 ], [ 392, 553, 446, 572 ], [ 451, 553, 483, 572 ], [ 488, 553, 545, 572 ], [ 117, 585, 131, 604 ], [ 176, 585, 239, 603 ], [ 294, 585, 354, 604 ], [ 358, 585, 427, 604 ], [ 432, 585, 596, 604 ], [ 600, 585, 637, 603 ], [ 642, 585, 668, 603 ], [ 672, 585, 723, 603 ], [ 728, 585, 747, 604 ], [ 751, 585, 819, 603 ], [ 824, 585, 849, 603 ], [ 294, 601, 392, 619 ], [ 397, 603, 439, 619 ], [ 443, 601, 496, 619 ], [ 500, 601, 522, 619 ], [ 527, 601, 563, 619 ], [ 567, 601, 582, 619 ], [ 587, 601, 733, 619 ], [ 738, 601, 814, 619 ], [ 818, 601, 846, 619 ], [ 294, 617, 334, 635 ], [ 338, 617, 373, 635 ], [ 378, 617, 410, 635 ], [ 415, 617, 481, 635 ], [ 485, 617, 567, 635 ], [ 572, 617, 594, 635 ], [ 598, 617, 613, 635 ], [ 618, 617, 653, 635 ], [ 657, 617, 759, 635 ], [ 764, 617, 790, 635 ], [ 795, 617, 820, 635 ], [ 294, 633, 353, 651 ], [ 358, 633, 392, 651 ], [ 396, 633, 407, 651 ], [ 412, 633, 439, 651 ], [ 443, 633, 477, 651 ], [ 482, 633, 557, 651 ], [ 562, 633, 637, 651 ], [ 641, 633, 673, 651 ], [ 678, 633, 700, 651 ], [ 704, 633, 745, 651 ], [ 749, 633, 777, 651 ], [ 782, 633, 850, 651 ], [ 294, 649, 316, 667 ], [ 320, 649, 389, 667 ], [ 394, 649, 435, 667 ], [ 439, 649, 482, 667 ], [ 486, 649, 504, 667 ], [ 509, 649, 531, 667 ], [ 535, 649, 620, 667 ], [ 625, 649, 651, 667 ], [ 655, 649, 721, 667 ], [ 725, 649, 789, 667 ], [ 794, 649, 808, 667 ], [ 812, 649, 845, 667 ], [ 294, 665, 361, 683 ], [ 117, 697, 131, 716 ], [ 176, 697, 239, 715 ], [ 294, 697, 343, 716 ], [ 347, 697, 371, 716 ], [ 376, 699, 428, 714 ], [ 432, 697, 489, 716 ], [ 493, 697, 516, 716 ], [ 521, 697, 556, 716 ], [ 560, 697, 631, 716 ], [ 635, 697, 684, 715 ], [ 689, 697, 766, 715 ], [ 770, 697, 803, 715 ], [ 294, 713, 361, 731 ], [ 366, 713, 408, 731 ], [ 412, 713, 434, 731 ], [ 439, 715, 488, 730 ], [ 492, 713, 547, 731 ], [ 552, 713, 564, 731 ], [ 294, 729, 643, 747 ], [ 652, 729, 666, 747 ], [ 670, 729, 693, 747 ], [ 698, 729, 756, 747 ], [ 760, 729, 786, 747 ], [ 790, 729, 850, 747 ], [ 294, 744, 329, 763 ], [ 333, 744, 378, 763 ], [ 383, 744, 404, 763 ], [ 408, 744, 430, 763 ], [ 435, 744, 471, 763 ], [ 117, 777, 131, 796 ], [ 176, 776, 239, 795 ], [ 294, 777, 350, 796 ], [ 354, 777, 383, 796 ], [ 388, 777, 423, 796 ], [ 427, 777, 451, 796 ], [ 456, 777, 490, 796 ], [ 495, 777, 571, 796 ], [ 575, 777, 617, 796 ], [ 622, 776, 636, 795 ], [ 640, 776, 679, 795 ], [ 684, 776, 714, 795 ], [ 718, 776, 745, 795 ], [ 750, 776, 777, 795 ], [ 781, 776, 815, 795 ], [ 294, 793, 365, 811 ], [ 369, 793, 387, 811 ], [ 392, 793, 485, 811 ], [ 490, 793, 516, 811 ], [ 520, 793, 554, 811 ], [ 559, 793, 623, 811 ], [ 627, 793, 645, 811 ], [ 650, 793, 665, 811 ], [ 669, 793, 691, 811 ], [ 695, 793, 784, 811 ], [ 788, 793, 826, 811 ], [ 831, 793, 858, 811 ], [ 294, 808, 328, 827 ], [ 332, 808, 367, 827 ], [ 372, 808, 403, 827 ], [ 408, 808, 439, 827 ], [ 443, 808, 465, 827 ], [ 470, 808, 501, 827 ], [ 506, 808, 577, 827 ], [ 581, 808, 625, 827 ] ]
SCHEDULE [1] Standard 1.4.2 is varied by inserting in alphabetical order in Schedule 1 “ Coumatetralyl Pig, edible offal of [except liver] T0.003 Pig fat T*0.001 Pig liver T0.004 Pig meat T*0.001 ” “ Warfarin Pig, edible offal [except liver] T0.007 Pig fat T0.007 Pig liver T0.04 Pig meat T0.007 ” Attachment B Explanatory Statement – 1. Authority Section 13 of the Food Standards Australia New Zealand Act 1991 (the FSANZ Act) provides that the functions of Food Standards Australia New Zealand (the Authority) include the development of standards and variations of standards for inclusion in the Australia New Zealand Food Standards Code (the Code). Division 2 of Part 3 of the FSANZ Act specifies that the Authority may prepare a proposal for the development or variation of food regulatory measures, including standards. This Division also stipulates the procedure for considering a proposal for the development or variation of food regulatory measures. The Authority prepared Proposal M1012 to consider introducing certain temporary maximum residue limits (MRLs) for residues of agricultural and veterinary (agvet) chemicals that may occur in food, in order to align standards with the Australian Pesticides and Veterinary Medicines Authority (APVMA) temporary MRLs for coumatetralyl and warfarin in pork commodities. The Authority considered the Proposal in accordance with Division 2 of Part 3 and has approved a draft variation. Following consideration by the Australia and New Zealand Ministerial Forum on Food Regulation, section 92 of the FSANZ Act stipulates that the Authority must publish a notice about the standard or draft variation of a standard. Section 94 of the FSANZ Act specifies that a standard, or a variation of a standard, in relation to which a notice is published under section 92 is a legislative instrument, but is not subject to parliamentary disallowance or sunsetting under the Legislative Instruments Act 2003. 2. Purpose
SCHEDULE [1] Standard 1.4.2 is varied by inserting in alphabetical order in Schedule 1 “ Coumatetralyl Pig, edible offal of [except liver] T0.003 Pig fat T*0.001 Pig liver T0.004 Pig meat T*0.001 ” “ Warfarin Pig, edible offal [except liver] T0.007 Pig fat T0.007 Pig liver T0.04 Pig meat T0.007 ” Attachment B – Explanatory Statement 1. Authority Section 13 of the Food Standards Australia New Zealand Act 1991 (the FSANZ Act) provides that the functions of Food Standards Australia New Zealand (the Authority) include the development of standards and variations of standards for inclusion in the Australia New Zealand Food Standards Code (the Code). Division 2 of Part 3 of the FSANZ Act specifies that the Authority may prepare a proposal for the development or variation of food regulatory measures, including standards. This Division also stipulates the procedure for considering a proposal for the development or variation of food regulatory measures. The Authority prepared Proposal M1012 to consider introducing certain temporary maximum residue limits (MRLs) for residues of agricultural and veterinary (agvet) chemicals that may occur in food, in order to align standards with the Australian Pesticides and Veterinary Medicines Authority (APVMA) temporary MRLs for coumatetralyl and warfarin in pork commodities. The Authority considered the Proposal in accordance with Division 2 of Part 3 and has approved a draft variation. Following consideration by the Australia and New Zealand Ministerial Forum on Food Regulation, section 92 of the FSANZ Act stipulates that the Authority must publish a notice about the standard or draft variation of a standard. Section 94 of the FSANZ Act specifies that a standard, or a variation of a standard, in relation to which a notice is published under section 92 is a legislative instrument, but is not subject to parliamentary disallowance or sunsetting under the Legislative Instruments Act 2003. 2. Purpose
0.988412
[ 0, 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, 55, 53, 54, 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 ]
M1012%20Amendments%20to%20Std%201.4.2%20AppR.docx
task-1431-30
11
[ [ 453, 82, 545, 98 ], [ 119, 109, 139, 125 ], [ 190, 109, 263, 125 ], [ 268, 109, 305, 125 ], [ 310, 109, 322, 125 ], [ 327, 109, 372, 125 ], [ 377, 109, 395, 125 ], [ 399, 109, 463, 125 ], [ 467, 109, 480, 125 ], [ 485, 109, 575, 125 ], [ 580, 109, 619, 125 ], [ 623, 109, 636, 125 ], [ 641, 109, 711, 125 ], [ 716, 109, 725, 125 ], [ 119, 140, 124, 153 ], [ 251, 165, 344, 180 ], [ 119, 179, 145, 194 ], [ 149, 179, 189, 194 ], [ 194, 179, 222, 194 ], [ 226, 179, 239, 194 ], [ 243, 179, 292, 194 ], [ 296, 179, 328, 194 ], [ 430, 179, 477, 194 ], [ 119, 194, 141, 209 ], [ 145, 194, 162, 209 ], [ 424, 194, 477, 209 ], [ 119, 209, 141, 223 ], [ 145, 209, 173, 223 ], [ 430, 209, 477, 223 ], [ 119, 223, 141, 238 ], [ 145, 223, 178, 238 ], [ 424, 223, 477, 238 ], [ 497, 239, 502, 252 ], [ 119, 267, 124, 280 ], [ 269, 292, 326, 306 ], [ 119, 306, 145, 321 ], [ 149, 306, 189, 321 ], [ 194, 306, 222, 321 ], [ 226, 306, 275, 321 ], [ 279, 306, 311, 321 ], [ 430, 306, 477, 321 ], [ 119, 321, 141, 335 ], [ 145, 321, 162, 335 ], [ 430, 321, 477, 335 ], [ 119, 335, 141, 350 ], [ 145, 335, 173, 350 ], [ 438, 335, 477, 350 ], [ 119, 350, 141, 365 ], [ 145, 350, 178, 365 ], [ 430, 350, 477, 365 ], [ 497, 366, 502, 379 ], [ 119, 421, 248, 444 ], [ 255, 421, 272, 444 ], [ 298, 421, 433, 444 ], [ 439, 421, 553, 444 ], [ 278, 424, 291, 443 ], [ 119, 455, 134, 473 ], [ 166, 455, 248, 473 ], [ 119, 485, 180, 503 ], [ 186, 485, 206, 503 ], [ 211, 485, 227, 503 ], [ 232, 485, 258, 503 ], [ 263, 485, 305, 503 ], [ 310, 485, 394, 503 ], [ 399, 485, 471, 503 ], [ 476, 485, 513, 503 ], [ 518, 485, 585, 503 ], [ 590, 485, 617, 503 ], [ 622, 485, 663, 503 ], [ 668, 485, 700, 503 ], [ 706, 485, 766, 503 ], [ 771, 485, 804, 503 ], [ 809, 485, 879, 503 ], [ 119, 500, 150, 518 ], [ 155, 500, 181, 518 ], [ 185, 500, 260, 518 ], [ 265, 500, 280, 518 ], [ 285, 500, 327, 518 ], [ 333, 500, 417, 518 ], [ 422, 500, 494, 518 ], [ 499, 500, 536, 518 ], [ 541, 500, 608, 518 ], [ 613, 500, 645, 518 ], [ 650, 500, 729, 518 ], [ 734, 500, 793, 518 ], [ 798, 500, 824, 518 ], [ 119, 515, 224, 533 ], [ 230, 515, 245, 533 ], [ 250, 515, 331, 533 ], [ 337, 515, 367, 533 ], [ 373, 515, 452, 533 ], [ 457, 515, 472, 533 ], [ 477, 515, 559, 533 ], [ 564, 515, 585, 533 ], [ 590, 515, 662, 533 ], [ 667, 515, 682, 533 ], [ 687, 515, 713, 533 ], [ 718, 515, 790, 533 ], [ 795, 515, 832, 533 ], [ 119, 530, 185, 548 ], [ 191, 530, 233, 548 ], [ 238, 530, 322, 548 ], [ 327, 530, 372, 548 ], [ 377, 530, 409, 548 ], [ 414, 530, 469, 548 ], [ 119, 560, 183, 578 ], [ 188, 560, 199, 578 ], [ 204, 560, 219, 578 ], [ 225, 560, 258, 578 ], [ 264, 560, 274, 578 ], [ 279, 560, 294, 578 ], [ 299, 560, 325, 578 ], [ 330, 560, 391, 578 ], [ 396, 560, 423, 578 ], [ 428, 560, 500, 578 ], [ 505, 560, 536, 578 ], [ 541, 560, 567, 578 ], [ 572, 560, 645, 578 ], [ 650, 560, 685, 578 ], [ 690, 560, 754, 578 ], [ 759, 560, 769, 578 ], [ 774, 560, 845, 578 ], [ 850, 560, 872, 578 ], [ 119, 575, 145, 593 ], [ 150, 575, 255, 593 ], [ 261, 575, 277, 593 ], [ 282, 575, 352, 593 ], [ 357, 575, 372, 593 ], [ 378, 575, 414, 593 ], [ 419, 575, 501, 593 ], [ 506, 575, 593, 593 ], [ 598, 575, 671, 593 ], [ 676, 575, 762, 593 ], [ 767, 575, 802, 593 ], [ 807, 575, 872, 593 ], [ 119, 590, 153, 608 ], [ 158, 590, 236, 608 ], [ 241, 590, 267, 608 ], [ 272, 590, 355, 608 ], [ 360, 590, 382, 608 ], [ 387, 590, 481, 608 ], [ 487, 590, 497, 608 ], [ 502, 590, 573, 608 ], [ 578, 590, 600, 608 ], [ 605, 590, 631, 608 ], [ 636, 590, 741, 608 ], [ 747, 590, 763, 608 ], [ 768, 590, 838, 608 ], [ 843, 590, 858, 608 ], [ 119, 605, 155, 623 ], [ 160, 605, 242, 623 ], [ 247, 605, 333, 623 ], [ 119, 635, 151, 653 ], [ 156, 635, 229, 653 ], [ 234, 635, 308, 653 ], [ 313, 635, 386, 653 ], [ 391, 635, 447, 653 ], [ 453, 635, 468, 653 ], [ 473, 635, 543, 653 ], [ 548, 635, 638, 653 ], [ 644, 635, 699, 653 ], [ 704, 635, 787, 653 ], [ 793, 635, 873, 653 ], [ 119, 650, 179, 668 ], [ 185, 650, 227, 668 ], [ 232, 650, 292, 668 ], [ 297, 650, 319, 668 ], [ 324, 650, 394, 668 ], [ 399, 650, 415, 668 ], [ 420, 650, 510, 668 ], [ 515, 650, 546, 668 ], [ 551, 650, 633, 668 ], [ 638, 650, 695, 668 ], [ 700, 650, 782, 668 ], [ 788, 650, 818, 668 ], [ 823, 650, 859, 668 ], [ 119, 665, 164, 683 ], [ 169, 665, 184, 683 ], [ 188, 665, 230, 683 ], [ 235, 665, 249, 683 ], [ 255, 665, 298, 683 ], [ 303, 665, 318, 683 ], [ 323, 665, 362, 683 ], [ 367, 665, 449, 683 ], [ 454, 665, 486, 683 ], [ 492, 665, 517, 683 ], [ 522, 665, 605, 683 ], [ 610, 665, 694, 683 ], [ 699, 665, 730, 683 ], [ 735, 665, 819, 683 ], [ 119, 680, 202, 698 ], [ 207, 680, 280, 698 ], [ 285, 680, 362, 698 ], [ 367, 680, 450, 698 ], [ 456, 680, 504, 698 ], [ 509, 680, 530, 698 ], [ 536, 680, 645, 698 ], [ 651, 680, 682, 698 ], [ 687, 680, 753, 698 ], [ 758, 680, 772, 698 ], [ 777, 680, 813, 698 ], [ 119, 695, 228, 713 ], [ 233, 695, 265, 713 ], [ 270, 695, 343, 713 ], [ 348, 695, 438, 713 ], [ 443, 695, 469, 713 ], [ 474, 695, 547, 713 ], [ 552, 695, 567, 713 ], [ 572, 695, 667, 713 ], [ 673, 695, 705, 713 ], [ 711, 695, 775, 713 ], [ 780, 695, 790, 713 ], [ 796, 695, 811, 713 ], [ 816, 695, 850, 713 ], [ 856, 695, 866, 713 ], [ 119, 710, 150, 728 ], [ 155, 710, 185, 728 ], [ 190, 710, 267, 728 ], [ 272, 710, 282, 728 ], [ 287, 710, 324, 728 ], [ 329, 710, 404, 728 ], [ 119, 741, 197, 759 ], [ 202, 741, 312, 759 ], [ 317, 741, 336, 759 ], [ 341, 741, 367, 759 ], [ 372, 741, 444, 759 ], [ 449, 741, 480, 759 ], [ 486, 741, 523, 759 ], [ 528, 741, 594, 759 ], [ 599, 741, 682, 759 ], [ 688, 741, 741, 759 ], [ 746, 741, 767, 759 ], [ 772, 741, 814, 759 ], [ 119, 756, 212, 774 ], [ 217, 756, 276, 774 ], [ 281, 756, 302, 774 ], [ 307, 756, 322, 774 ], [ 327, 756, 353, 774 ], [ 358, 756, 419, 774 ], [ 424, 756, 451, 774 ], [ 456, 756, 534, 774 ], [ 539, 756, 570, 774 ], [ 575, 756, 601, 774 ], [ 606, 756, 679, 774 ], [ 684, 756, 724, 774 ], [ 729, 756, 787, 774 ], [ 793, 756, 803, 774 ], [ 808, 756, 858, 774 ], [ 119, 771, 165, 789 ], [ 170, 771, 196, 789 ], [ 201, 771, 273, 789 ], [ 278, 771, 295, 789 ], [ 300, 771, 337, 789 ], [ 342, 771, 412, 789 ], [ 417, 771, 432, 789 ], [ 437, 771, 448, 789 ], [ 453, 771, 530, 789 ], [ 119, 801, 180, 819 ], [ 186, 801, 206, 819 ], [ 211, 801, 227, 819 ], [ 232, 801, 258, 819 ], [ 263, 801, 323, 819 ], [ 328, 801, 355, 819 ], [ 360, 801, 432, 819 ], [ 437, 801, 468, 819 ], [ 473, 801, 484, 819 ], [ 489, 801, 566, 819 ], [ 571, 801, 587, 819 ], [ 592, 801, 603, 819 ], [ 608, 801, 678, 819 ], [ 683, 801, 698, 819 ], [ 704, 801, 714, 819 ], [ 719, 801, 796, 819 ], [ 801, 801, 815, 819 ], [ 119, 816, 179, 834 ], [ 185, 816, 200, 834 ], [ 205, 816, 252, 834 ], [ 257, 816, 268, 834 ], [ 273, 816, 322, 834 ], [ 327, 816, 341, 834 ], [ 346, 816, 425, 834 ], [ 430, 816, 477, 834 ], [ 483, 816, 541, 834 ], [ 546, 816, 567, 834 ], [ 572, 816, 585, 834 ], [ 591, 816, 601, 834 ], [ 606, 816, 687, 834 ], [ 692, 816, 784, 834 ], [ 789, 816, 814, 834 ], [ 820, 816, 833, 834 ], [ 838, 816, 864, 834 ], [ 119, 831, 177, 849 ], [ 182, 831, 198, 849 ], [ 203, 831, 315, 849 ], [ 320, 831, 426, 849 ], [ 431, 831, 447, 849 ], [ 453, 831, 537, 849 ], [ 542, 831, 589, 849 ], [ 594, 831, 620, 849 ], [ 625, 831, 713, 849 ], [ 718, 831, 814, 849 ], [ 819, 831, 846, 849 ], [ 119, 846, 165, 864 ], [ 119, 876, 134, 894 ], [ 166, 876, 240, 894 ] ]
[ [ 453, 82, 545, 98 ], [ 119, 109, 139, 125 ], [ 190, 109, 263, 125 ], [ 268, 109, 305, 125 ], [ 310, 109, 322, 125 ], [ 327, 109, 372, 125 ], [ 377, 109, 395, 125 ], [ 399, 109, 463, 125 ], [ 467, 109, 480, 125 ], [ 485, 109, 575, 125 ], [ 580, 109, 619, 125 ], [ 623, 109, 636, 125 ], [ 641, 109, 711, 125 ], [ 716, 109, 725, 125 ], [ 119, 140, 124, 153 ], [ 251, 165, 344, 180 ], [ 119, 179, 145, 194 ], [ 149, 179, 189, 194 ], [ 194, 179, 222, 194 ], [ 226, 179, 239, 194 ], [ 243, 179, 292, 194 ], [ 296, 179, 328, 194 ], [ 430, 179, 477, 194 ], [ 119, 194, 141, 209 ], [ 145, 194, 162, 209 ], [ 424, 194, 477, 209 ], [ 119, 209, 141, 223 ], [ 145, 209, 173, 223 ], [ 430, 209, 477, 223 ], [ 119, 223, 141, 238 ], [ 145, 223, 178, 238 ], [ 424, 223, 477, 238 ], [ 497, 239, 502, 252 ], [ 119, 267, 124, 280 ], [ 269, 292, 326, 306 ], [ 119, 306, 145, 321 ], [ 149, 306, 189, 321 ], [ 194, 306, 222, 321 ], [ 226, 306, 275, 321 ], [ 279, 306, 311, 321 ], [ 430, 306, 477, 321 ], [ 119, 321, 141, 335 ], [ 145, 321, 162, 335 ], [ 430, 321, 477, 335 ], [ 119, 335, 141, 350 ], [ 145, 335, 173, 350 ], [ 438, 335, 477, 350 ], [ 119, 350, 141, 365 ], [ 145, 350, 178, 365 ], [ 430, 350, 477, 365 ], [ 497, 366, 502, 379 ], [ 119, 421, 248, 444 ], [ 255, 421, 272, 444 ], [ 278, 424, 291, 443 ], [ 298, 421, 433, 444 ], [ 439, 421, 553, 444 ], [ 119, 455, 134, 473 ], [ 166, 455, 248, 473 ], [ 119, 485, 180, 503 ], [ 186, 485, 206, 503 ], [ 211, 485, 227, 503 ], [ 232, 485, 258, 503 ], [ 263, 485, 305, 503 ], [ 310, 485, 394, 503 ], [ 399, 485, 471, 503 ], [ 476, 485, 513, 503 ], [ 518, 485, 585, 503 ], [ 590, 485, 617, 503 ], [ 622, 485, 663, 503 ], [ 668, 485, 700, 503 ], [ 706, 485, 766, 503 ], [ 771, 485, 804, 503 ], [ 809, 485, 879, 503 ], [ 119, 500, 150, 518 ], [ 155, 500, 181, 518 ], [ 185, 500, 260, 518 ], [ 265, 500, 280, 518 ], [ 285, 500, 327, 518 ], [ 333, 500, 417, 518 ], [ 422, 500, 494, 518 ], [ 499, 500, 536, 518 ], [ 541, 500, 608, 518 ], [ 613, 500, 645, 518 ], [ 650, 500, 729, 518 ], [ 734, 500, 793, 518 ], [ 798, 500, 824, 518 ], [ 119, 515, 224, 533 ], [ 230, 515, 245, 533 ], [ 250, 515, 331, 533 ], [ 337, 515, 367, 533 ], [ 373, 515, 452, 533 ], [ 457, 515, 472, 533 ], [ 477, 515, 559, 533 ], [ 564, 515, 585, 533 ], [ 590, 515, 662, 533 ], [ 667, 515, 682, 533 ], [ 687, 515, 713, 533 ], [ 718, 515, 790, 533 ], [ 795, 515, 832, 533 ], [ 119, 530, 185, 548 ], [ 191, 530, 233, 548 ], [ 238, 530, 322, 548 ], [ 327, 530, 372, 548 ], [ 377, 530, 409, 548 ], [ 414, 530, 469, 548 ], [ 119, 560, 183, 578 ], [ 188, 560, 199, 578 ], [ 204, 560, 219, 578 ], [ 225, 560, 258, 578 ], [ 264, 560, 274, 578 ], [ 279, 560, 294, 578 ], [ 299, 560, 325, 578 ], [ 330, 560, 391, 578 ], [ 396, 560, 423, 578 ], [ 428, 560, 500, 578 ], [ 505, 560, 536, 578 ], [ 541, 560, 567, 578 ], [ 572, 560, 645, 578 ], [ 650, 560, 685, 578 ], [ 690, 560, 754, 578 ], [ 759, 560, 769, 578 ], [ 774, 560, 845, 578 ], [ 850, 560, 872, 578 ], [ 119, 575, 145, 593 ], [ 150, 575, 255, 593 ], [ 261, 575, 277, 593 ], [ 282, 575, 352, 593 ], [ 357, 575, 372, 593 ], [ 378, 575, 414, 593 ], [ 419, 575, 501, 593 ], [ 506, 575, 593, 593 ], [ 598, 575, 671, 593 ], [ 676, 575, 762, 593 ], [ 767, 575, 802, 593 ], [ 807, 575, 872, 593 ], [ 119, 590, 153, 608 ], [ 158, 590, 236, 608 ], [ 241, 590, 267, 608 ], [ 272, 590, 355, 608 ], [ 360, 590, 382, 608 ], [ 387, 590, 481, 608 ], [ 487, 590, 497, 608 ], [ 502, 590, 573, 608 ], [ 578, 590, 600, 608 ], [ 605, 590, 631, 608 ], [ 636, 590, 741, 608 ], [ 747, 590, 763, 608 ], [ 768, 590, 838, 608 ], [ 843, 590, 858, 608 ], [ 119, 605, 155, 623 ], [ 160, 605, 242, 623 ], [ 247, 605, 333, 623 ], [ 119, 635, 151, 653 ], [ 156, 635, 229, 653 ], [ 234, 635, 308, 653 ], [ 313, 635, 386, 653 ], [ 391, 635, 447, 653 ], [ 453, 635, 468, 653 ], [ 473, 635, 543, 653 ], [ 548, 635, 638, 653 ], [ 644, 635, 699, 653 ], [ 704, 635, 787, 653 ], [ 793, 635, 873, 653 ], [ 119, 650, 179, 668 ], [ 185, 650, 227, 668 ], [ 232, 650, 292, 668 ], [ 297, 650, 319, 668 ], [ 324, 650, 394, 668 ], [ 399, 650, 415, 668 ], [ 420, 650, 510, 668 ], [ 515, 650, 546, 668 ], [ 551, 650, 633, 668 ], [ 638, 650, 695, 668 ], [ 700, 650, 782, 668 ], [ 788, 650, 818, 668 ], [ 823, 650, 859, 668 ], [ 119, 665, 164, 683 ], [ 169, 665, 184, 683 ], [ 188, 665, 230, 683 ], [ 235, 665, 249, 683 ], [ 255, 665, 298, 683 ], [ 303, 665, 318, 683 ], [ 323, 665, 362, 683 ], [ 367, 665, 449, 683 ], [ 454, 665, 486, 683 ], [ 492, 665, 517, 683 ], [ 522, 665, 605, 683 ], [ 610, 665, 694, 683 ], [ 699, 665, 730, 683 ], [ 735, 665, 819, 683 ], [ 119, 680, 202, 698 ], [ 207, 680, 280, 698 ], [ 285, 680, 362, 698 ], [ 367, 680, 450, 698 ], [ 456, 680, 504, 698 ], [ 509, 680, 530, 698 ], [ 536, 680, 645, 698 ], [ 651, 680, 682, 698 ], [ 687, 680, 753, 698 ], [ 758, 680, 772, 698 ], [ 777, 680, 813, 698 ], [ 119, 695, 228, 713 ], [ 233, 695, 265, 713 ], [ 270, 695, 343, 713 ], [ 348, 695, 438, 713 ], [ 443, 695, 469, 713 ], [ 474, 695, 547, 713 ], [ 552, 695, 567, 713 ], [ 572, 695, 667, 713 ], [ 673, 695, 705, 713 ], [ 711, 695, 775, 713 ], [ 780, 695, 790, 713 ], [ 796, 695, 811, 713 ], [ 816, 695, 850, 713 ], [ 856, 695, 866, 713 ], [ 119, 710, 150, 728 ], [ 155, 710, 185, 728 ], [ 190, 710, 267, 728 ], [ 272, 710, 282, 728 ], [ 287, 710, 324, 728 ], [ 329, 710, 404, 728 ], [ 119, 741, 197, 759 ], [ 202, 741, 312, 759 ], [ 317, 741, 336, 759 ], [ 341, 741, 367, 759 ], [ 372, 741, 444, 759 ], [ 449, 741, 480, 759 ], [ 486, 741, 523, 759 ], [ 528, 741, 594, 759 ], [ 599, 741, 682, 759 ], [ 688, 741, 741, 759 ], [ 746, 741, 767, 759 ], [ 772, 741, 814, 759 ], [ 119, 756, 212, 774 ], [ 217, 756, 276, 774 ], [ 281, 756, 302, 774 ], [ 307, 756, 322, 774 ], [ 327, 756, 353, 774 ], [ 358, 756, 419, 774 ], [ 424, 756, 451, 774 ], [ 456, 756, 534, 774 ], [ 539, 756, 570, 774 ], [ 575, 756, 601, 774 ], [ 606, 756, 679, 774 ], [ 684, 756, 724, 774 ], [ 729, 756, 787, 774 ], [ 793, 756, 803, 774 ], [ 808, 756, 858, 774 ], [ 119, 771, 165, 789 ], [ 170, 771, 196, 789 ], [ 201, 771, 273, 789 ], [ 278, 771, 295, 789 ], [ 300, 771, 337, 789 ], [ 342, 771, 412, 789 ], [ 417, 771, 432, 789 ], [ 437, 771, 448, 789 ], [ 453, 771, 530, 789 ], [ 119, 801, 180, 819 ], [ 186, 801, 206, 819 ], [ 211, 801, 227, 819 ], [ 232, 801, 258, 819 ], [ 263, 801, 323, 819 ], [ 328, 801, 355, 819 ], [ 360, 801, 432, 819 ], [ 437, 801, 468, 819 ], [ 473, 801, 484, 819 ], [ 489, 801, 566, 819 ], [ 571, 801, 587, 819 ], [ 592, 801, 603, 819 ], [ 608, 801, 678, 819 ], [ 683, 801, 698, 819 ], [ 704, 801, 714, 819 ], [ 719, 801, 796, 819 ], [ 801, 801, 815, 819 ], [ 119, 816, 179, 834 ], [ 185, 816, 200, 834 ], [ 205, 816, 252, 834 ], [ 257, 816, 268, 834 ], [ 273, 816, 322, 834 ], [ 327, 816, 341, 834 ], [ 346, 816, 425, 834 ], [ 430, 816, 477, 834 ], [ 483, 816, 541, 834 ], [ 546, 816, 567, 834 ], [ 572, 816, 585, 834 ], [ 591, 816, 601, 834 ], [ 606, 816, 687, 834 ], [ 692, 816, 784, 834 ], [ 789, 816, 814, 834 ], [ 820, 816, 833, 834 ], [ 838, 816, 864, 834 ], [ 119, 831, 177, 849 ], [ 182, 831, 198, 849 ], [ 203, 831, 315, 849 ], [ 320, 831, 426, 849 ], [ 431, 831, 447, 849 ], [ 453, 831, 537, 849 ], [ 542, 831, 589, 849 ], [ 594, 831, 620, 849 ], [ 625, 831, 713, 849 ], [ 718, 831, 814, 849 ], [ 819, 831, 846, 849 ], [ 119, 846, 165, 864 ], [ 119, 876, 134, 894 ], [ 166, 876, 240, 894 ] ]
Fruit, stone, group 12 Cherries None 0.01 New US Chemical not listed <1% <1% 0.01 Pyridaben 94% Hops, dry None 10 New US Hop, dried cones 10 Chemical not listed N/A N/A Pyrimethanil 32% Berries and other small fruits [except T5 None Deleted FSANZ grapes; strawberry] Berries and other Berries and other small fruits small fruits [except Blackberries 15 Blackberries 15; Not Not [except 15 New Codex blueberries; Raspberries 15 Raspberries 15 (2016) required required grapes; grapes; strawberry] strawberry] T5 Berries Not Not and other required required small fruits Blueberries Blueberries [except 8 New Codex Blueberries 8 8 (2016) grapes; strawberry] T5 Onion, bulb, subgroup Not Not Onion, bulb 0.1 0.2 Increased US Onion, bulb 0.2 (2008) 3-07A 0.2 required required Pome fruits 7 15 Increased Codex Pome fruits 15 Pome fruits 15 (2014) Not Not required required Not Not Potato *0.01 0.05 Increased Codex Potato 0.05 Potato 0.05 (2008) required required Vegetable, tuberous Not Not Sweet potato None 0.05 New US and corm, subgroup 1C Commodity not listed required required 0.05 Quintozene Banana 1 None Deleted APVMA Banana
Cherries None 0.01 New US Fruit, stone, group 12 0.01 Chemical not listed <1% <1% Pyridaben 94% Hops, dry None 10 New US Hop, dried cones 10 Chemical not listed N/A N/A Pyrimethanil 32% Berries and other small fruits [except grapes; strawberry] T5 None Deleted FSANZ Berries and other small fruits [except blueberries; grapes; strawberry] Berries and other small fruits [except grapes; strawberry] T5 15 New Codex Blackberries 15 Raspberries 15 Blackberries 15; Raspberries 15 (2016) Not required Not required Blueberries Berries and other small fruits [except grapes; strawberry] T5 8 New Codex Blueberries 8 Blueberries 8 (2016) Not required Not required Onion, bulb 0.1 0.2 Increased US Onion, bulb, subgroup 3-07A 0.2 Onion, bulb 0.2 (2008) Not required Not required Pome fruits 7 15 Increased Codex Pome fruits 15 Pome fruits 15 (2014) Not required Not required Potato *0.01 0.05 Increased Codex Potato 0.05 Potato 0.05 (2008) Not required Not required Sweet potato None 0.05 New US Vegetable, tuberous and corm, subgroup 1C 0.05 Commodity not listed Not required Not required Quintozene Banana 1 None Deleted APVMA Banana
0.59958
[ 4, 5, 6, 7, 8, 0, 1, 2, 3, 14, 9, 10, 11, 12, 13, 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, 44, 45, 40, 41, 42, 43, 49, 50, 51, 54, 55, 56, 67, 76, 77, 46, 47, 48, 52, 53, 63, 75, 78, 79, 64, 65, 66, 57, 58, 68, 69, 59, 60, 70, 71, 72, 61, 73, 62, 74, 90, 80, 83, 84, 87, 88, 91, 99, 100, 101, 92, 93, 94, 95, 96, 89, 97, 98, 81, 85, 82, 86, 107, 108, 109, 110, 111, 112, 102, 103, 104, 117, 118, 113, 114, 115, 116, 105, 119, 106, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 136, 135, 137, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 138, 150, 139, 151, 156, 157, 158, 159, 160, 161, 152, 153, 162, 163, 164, 165, 171, 166, 167, 168, 154, 169, 155, 170, 172, 173, 174, 175, 176, 177, 178 ]
M1014%20MRLs%20(2016)%20SD1%20DEAs.docx
task-1431-34
26
[ [ 500, 237, 524, 258 ], [ 527, 237, 557, 258 ], [ 560, 237, 587, 258 ], [ 590, 237, 602, 258 ], [ 107, 246, 148, 266 ], [ 230, 246, 256, 266 ], [ 300, 246, 321, 266 ], [ 367, 246, 389, 266 ], [ 443, 246, 457, 266 ], [ 636, 246, 681, 266 ], [ 684, 246, 699, 266 ], [ 702, 246, 727, 266 ], [ 819, 246, 841, 266 ], [ 883, 246, 904, 266 ], [ 540, 254, 561, 275 ], [ 90, 275, 147, 298 ], [ 763, 276, 785, 297 ], [ 107, 297, 135, 318 ], [ 138, 297, 153, 318 ], [ 230, 297, 256, 318 ], [ 305, 297, 317, 318 ], [ 367, 297, 389, 318 ], [ 443, 297, 457, 318 ], [ 503, 297, 526, 318 ], [ 529, 297, 552, 318 ], [ 555, 297, 584, 318 ], [ 587, 297, 599, 318 ], [ 636, 297, 681, 318 ], [ 684, 297, 699, 318 ], [ 702, 297, 727, 318 ], [ 821, 297, 839, 318 ], [ 885, 297, 902, 318 ], [ 90, 318, 161, 341 ], [ 763, 319, 785, 340 ], [ 107, 340, 141, 361 ], [ 144, 340, 162, 361 ], [ 165, 340, 189, 361 ], [ 107, 357, 132, 378 ], [ 135, 357, 159, 378 ], [ 162, 357, 196, 378 ], [ 237, 357, 249, 378 ], [ 298, 357, 323, 378 ], [ 360, 357, 397, 378 ], [ 432, 357, 467, 378 ], [ 107, 375, 143, 396 ], [ 146, 375, 199, 396 ], [ 226, 395, 260, 416 ], [ 220, 412, 238, 433 ], [ 241, 412, 266, 433 ], [ 107, 421, 141, 442 ], [ 144, 421, 162, 442 ], [ 165, 421, 189, 442 ], [ 217, 430, 242, 450 ], [ 245, 430, 268, 450 ], [ 107, 438, 132, 459 ], [ 135, 438, 159, 459 ], [ 162, 438, 196, 459 ], [ 514, 438, 573, 459 ], [ 576, 438, 588, 459 ], [ 643, 438, 702, 459 ], [ 705, 438, 720, 459 ], [ 822, 438, 838, 459 ], [ 885, 438, 902, 459 ], [ 226, 447, 260, 468 ], [ 305, 447, 317, 468 ], [ 367, 447, 389, 468 ], [ 434, 447, 465, 468 ], [ 107, 456, 163, 476 ], [ 515, 456, 572, 476 ], [ 575, 456, 587, 476 ], [ 628, 456, 686, 476 ], [ 689, 456, 701, 476 ], [ 704, 456, 735, 476 ], [ 810, 456, 850, 476 ], [ 874, 456, 913, 476 ], [ 225, 464, 261, 485 ], [ 107, 473, 143, 494 ], [ 146, 473, 199, 494 ], [ 216, 482, 269, 503 ], [ 237, 499, 249, 520 ], [ 226, 519, 260, 540 ], [ 822, 519, 838, 540 ], [ 885, 519, 902, 540 ], [ 220, 537, 238, 557 ], [ 241, 537, 266, 557 ], [ 810, 537, 850, 557 ], [ 874, 537, 913, 557 ], [ 217, 554, 242, 575 ], [ 245, 554, 268, 575 ], [ 654, 563, 708, 583 ], [ 107, 571, 161, 592 ], [ 226, 571, 260, 592 ], [ 308, 571, 314, 592 ], [ 367, 571, 389, 592 ], [ 434, 571, 465, 592 ], [ 519, 571, 573, 592 ], [ 577, 571, 582, 592 ], [ 661, 580, 667, 601 ], [ 670, 580, 701, 601 ], [ 225, 589, 261, 610 ], [ 216, 606, 269, 627 ], [ 237, 624, 249, 644 ], [ 498, 644, 530, 664 ], [ 533, 644, 556, 664 ], [ 559, 644, 604, 664 ], [ 822, 644, 838, 664 ], [ 885, 644, 902, 664 ], [ 107, 652, 139, 673 ], [ 142, 652, 162, 673 ], [ 236, 652, 250, 673 ], [ 303, 652, 318, 673 ], [ 355, 652, 402, 673 ], [ 443, 652, 457, 673 ], [ 628, 652, 660, 673 ], [ 663, 652, 683, 673 ], [ 686, 652, 701, 673 ], [ 704, 652, 735, 673 ], [ 528, 661, 556, 682 ], [ 559, 661, 574, 682 ], [ 810, 661, 850, 682 ], [ 874, 661, 913, 682 ], [ 107, 681, 135, 702 ], [ 138, 681, 161, 702 ], [ 240, 681, 246, 702 ], [ 305, 681, 317, 702 ], [ 355, 681, 402, 702 ], [ 434, 681, 465, 702 ], [ 516, 681, 544, 702 ], [ 547, 681, 570, 702 ], [ 574, 681, 585, 702 ], [ 630, 681, 658, 702 ], [ 661, 681, 684, 702 ], [ 687, 681, 699, 702 ], [ 702, 681, 733, 702 ], [ 822, 681, 838, 702 ], [ 885, 681, 902, 702 ], [ 810, 699, 850, 719 ], [ 874, 699, 913, 719 ], [ 822, 718, 838, 739 ], [ 885, 718, 902, 739 ], [ 107, 727, 138, 748 ], [ 230, 727, 255, 748 ], [ 300, 727, 321, 748 ], [ 355, 727, 402, 748 ], [ 434, 727, 465, 748 ], [ 524, 727, 554, 748 ], [ 557, 727, 578, 748 ], [ 637, 727, 668, 748 ], [ 671, 727, 692, 748 ], [ 695, 727, 726, 748 ], [ 810, 736, 850, 757 ], [ 874, 736, 913, 757 ], [ 503, 756, 554, 777 ], [ 557, 756, 599, 777 ], [ 822, 756, 838, 777 ], [ 885, 756, 902, 777 ], [ 107, 773, 137, 794 ], [ 140, 773, 170, 794 ], [ 230, 773, 256, 794 ], [ 300, 773, 321, 794 ], [ 367, 773, 389, 794 ], [ 443, 773, 457, 794 ], [ 495, 773, 513, 794 ], [ 516, 773, 543, 794 ], [ 546, 773, 590, 794 ], [ 593, 773, 607, 794 ], [ 631, 773, 686, 794 ], [ 689, 773, 703, 794 ], [ 706, 773, 731, 794 ], [ 810, 773, 850, 794 ], [ 874, 773, 913, 794 ], [ 540, 791, 561, 812 ], [ 90, 811, 154, 834 ], [ 107, 835, 144, 855 ], [ 240, 835, 246, 855 ], [ 298, 835, 323, 855 ], [ 360, 835, 397, 855 ], [ 431, 835, 468, 855 ], [ 533, 835, 569, 855 ] ]
[ [ 107, 246, 148, 266 ], [ 230, 246, 256, 266 ], [ 300, 246, 321, 266 ], [ 367, 246, 389, 266 ], [ 443, 246, 457, 266 ], [ 500, 237, 524, 258 ], [ 527, 237, 557, 258 ], [ 560, 237, 587, 258 ], [ 590, 237, 602, 258 ], [ 540, 254, 561, 275 ], [ 636, 246, 681, 266 ], [ 684, 246, 699, 266 ], [ 702, 246, 727, 266 ], [ 819, 246, 841, 266 ], [ 883, 246, 904, 266 ], [ 90, 275, 147, 298 ], [ 763, 276, 785, 297 ], [ 107, 297, 135, 318 ], [ 138, 297, 153, 318 ], [ 230, 297, 256, 318 ], [ 305, 297, 317, 318 ], [ 367, 297, 389, 318 ], [ 443, 297, 457, 318 ], [ 503, 297, 526, 318 ], [ 529, 297, 552, 318 ], [ 555, 297, 584, 318 ], [ 587, 297, 599, 318 ], [ 636, 297, 681, 318 ], [ 684, 297, 699, 318 ], [ 702, 297, 727, 318 ], [ 821, 297, 839, 318 ], [ 885, 297, 902, 318 ], [ 90, 318, 161, 341 ], [ 763, 319, 785, 340 ], [ 107, 340, 141, 361 ], [ 144, 340, 162, 361 ], [ 165, 340, 189, 361 ], [ 107, 357, 132, 378 ], [ 135, 357, 159, 378 ], [ 162, 357, 196, 378 ], [ 107, 375, 143, 396 ], [ 146, 375, 199, 396 ], [ 237, 357, 249, 378 ], [ 298, 357, 323, 378 ], [ 360, 357, 397, 378 ], [ 432, 357, 467, 378 ], [ 107, 421, 141, 442 ], [ 144, 421, 162, 442 ], [ 165, 421, 189, 442 ], [ 107, 438, 132, 459 ], [ 135, 438, 159, 459 ], [ 162, 438, 196, 459 ], [ 107, 456, 163, 476 ], [ 107, 473, 143, 494 ], [ 146, 473, 199, 494 ], [ 226, 395, 260, 416 ], [ 220, 412, 238, 433 ], [ 241, 412, 266, 433 ], [ 217, 430, 242, 450 ], [ 245, 430, 268, 450 ], [ 226, 447, 260, 468 ], [ 225, 464, 261, 485 ], [ 216, 482, 269, 503 ], [ 237, 499, 249, 520 ], [ 305, 447, 317, 468 ], [ 367, 447, 389, 468 ], [ 434, 447, 465, 468 ], [ 514, 438, 573, 459 ], [ 576, 438, 588, 459 ], [ 515, 456, 572, 476 ], [ 575, 456, 587, 476 ], [ 643, 438, 702, 459 ], [ 705, 438, 720, 459 ], [ 628, 456, 686, 476 ], [ 689, 456, 701, 476 ], [ 704, 456, 735, 476 ], [ 822, 438, 838, 459 ], [ 810, 456, 850, 476 ], [ 885, 438, 902, 459 ], [ 874, 456, 913, 476 ], [ 107, 571, 161, 592 ], [ 226, 519, 260, 540 ], [ 220, 537, 238, 557 ], [ 241, 537, 266, 557 ], [ 217, 554, 242, 575 ], [ 245, 554, 268, 575 ], [ 226, 571, 260, 592 ], [ 225, 589, 261, 610 ], [ 216, 606, 269, 627 ], [ 237, 624, 249, 644 ], [ 308, 571, 314, 592 ], [ 367, 571, 389, 592 ], [ 434, 571, 465, 592 ], [ 519, 571, 573, 592 ], [ 577, 571, 582, 592 ], [ 654, 563, 708, 583 ], [ 661, 580, 667, 601 ], [ 670, 580, 701, 601 ], [ 822, 519, 838, 540 ], [ 810, 537, 850, 557 ], [ 885, 519, 902, 540 ], [ 874, 537, 913, 557 ], [ 107, 652, 139, 673 ], [ 142, 652, 162, 673 ], [ 236, 652, 250, 673 ], [ 303, 652, 318, 673 ], [ 355, 652, 402, 673 ], [ 443, 652, 457, 673 ], [ 498, 644, 530, 664 ], [ 533, 644, 556, 664 ], [ 559, 644, 604, 664 ], [ 528, 661, 556, 682 ], [ 559, 661, 574, 682 ], [ 628, 652, 660, 673 ], [ 663, 652, 683, 673 ], [ 686, 652, 701, 673 ], [ 704, 652, 735, 673 ], [ 822, 644, 838, 664 ], [ 810, 661, 850, 682 ], [ 885, 644, 902, 664 ], [ 874, 661, 913, 682 ], [ 107, 681, 135, 702 ], [ 138, 681, 161, 702 ], [ 240, 681, 246, 702 ], [ 305, 681, 317, 702 ], [ 355, 681, 402, 702 ], [ 434, 681, 465, 702 ], [ 516, 681, 544, 702 ], [ 547, 681, 570, 702 ], [ 574, 681, 585, 702 ], [ 630, 681, 658, 702 ], [ 661, 681, 684, 702 ], [ 687, 681, 699, 702 ], [ 702, 681, 733, 702 ], [ 822, 681, 838, 702 ], [ 810, 699, 850, 719 ], [ 885, 681, 902, 702 ], [ 874, 699, 913, 719 ], [ 107, 727, 138, 748 ], [ 230, 727, 255, 748 ], [ 300, 727, 321, 748 ], [ 355, 727, 402, 748 ], [ 434, 727, 465, 748 ], [ 524, 727, 554, 748 ], [ 557, 727, 578, 748 ], [ 637, 727, 668, 748 ], [ 671, 727, 692, 748 ], [ 695, 727, 726, 748 ], [ 822, 718, 838, 739 ], [ 810, 736, 850, 757 ], [ 885, 718, 902, 739 ], [ 874, 736, 913, 757 ], [ 107, 773, 137, 794 ], [ 140, 773, 170, 794 ], [ 230, 773, 256, 794 ], [ 300, 773, 321, 794 ], [ 367, 773, 389, 794 ], [ 443, 773, 457, 794 ], [ 503, 756, 554, 777 ], [ 557, 756, 599, 777 ], [ 495, 773, 513, 794 ], [ 516, 773, 543, 794 ], [ 546, 773, 590, 794 ], [ 593, 773, 607, 794 ], [ 540, 791, 561, 812 ], [ 631, 773, 686, 794 ], [ 689, 773, 703, 794 ], [ 706, 773, 731, 794 ], [ 822, 756, 838, 777 ], [ 810, 773, 850, 794 ], [ 885, 756, 902, 777 ], [ 874, 773, 913, 794 ], [ 90, 811, 154, 834 ], [ 107, 835, 144, 855 ], [ 240, 835, 246, 855 ], [ 298, 835, 323, 855 ], [ 360, 835, 397, 855 ], [ 431, 835, 468, 855 ], [ 533, 835, 569, 855 ] ]
(the following is to be filled out at the end of the workshop) PLEASE CIRCLE TO WHAT EXTENT YOU AGREE OR DISAGREE WITH THE FOLLOWING STATEMENTS: Neither Strongly Strongly Agree Agree nor Disagree Agree Disagree Disagree Subject matter was adequately 5 4 3 2 1 covered by the Contingency Planning Guide and the reading materials in this workshop guide. Workshop was suitable for my 5 4 3 2 1 background and experience Workshop was well-paced 5 4 3 2 1 The draft CP is of good quality. 5 4 3 2 1 The Draft CP produced represents 5 4 3 2 1 the consensus of this working group Workshop participants were 5 4 3 2 1 encouraged to take an active part. 7. I am confident that this plan will lead 5 4 3 2 1 to a better humanitarian response if the planned-for scenario does occur. 8. Was the workshop length: Correct? Too short? Too long ? 9. Were there: Just enough participants? Too few? Too many ? 10. Which areas, if any, received too much or too little time? 11. Do you have any suggestions that you feel could improve this workshop or the CP draft that was produced? 12. Any other comments?
(the following is to be filled out at the end of the workshop) PLEASE CIRCLE TO WHAT EXTENT YOU AGREE OR DISAGREE WITH THE FOLLOWING STATEMENTS: Strongly Agree Agree Neither Agree nor Disagree Disagree Strongly Disagree Subject matter was adequately covered by the Contingency Planning Guide and the reading materials in this workshop guide. 5 4 3 2 1 Workshop was suitable for my background and experience 5 4 3 2 1 Workshop was well-paced 5 4 3 2 1 The draft CP is of good quality. 5 4 3 2 1 The Draft CP produced represents the consensus of this working group 5 4 3 2 1 Workshop participants were encouraged to take an active part. 5 4 3 2 1 7. I am confident that this plan will lead to a better humanitarian response if the planned-for scenario does occur. 5 4 3 2 1 8. Was the workshop length: Correct? Too short? Too long ? 9. Were there: Just enough participants? Too few? Too many ? 10. Which areas, if any, received too much or too little time? 11. Do you have any suggestions that you feel could improve this workshop or the CP draft that was produced? 12. Any other comments?
0.850429
[ 0, 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, 27, 33, 29, 26, 30, 31, 35, 32, 28, 34, 36, 37, 38, 39, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 40, 41, 42, 43, 44, 59, 60, 61, 62, 63, 69, 70, 71, 64, 65, 66, 67, 68, 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, 102, 103, 104, 105, 106, 107, 97, 98, 99, 100, 101, 108, 109, 110, 116, 117, 118, 119, 120, 121, 111, 112, 113, 114, 115, 122, 123, 124, 125, 126, 127, 128, 129, 130, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 131, 132, 133, 134, 135, 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 ]
M1_2_5_1%20IFRC%20developing%20a%20contingency%20plan.docx
task-1431-378
47
[ [ 264, 65, 295, 81 ], [ 299, 65, 373, 81 ], [ 378, 65, 392, 81 ], [ 396, 65, 412, 81 ], [ 417, 65, 437, 81 ], [ 441, 65, 480, 81 ], [ 485, 65, 511, 81 ], [ 516, 65, 531, 81 ], [ 535, 65, 561, 81 ], [ 565, 65, 595, 81 ], [ 600, 65, 615, 81 ], [ 620, 65, 645, 81 ], [ 650, 65, 735, 81 ], [ 244, 107, 309, 124 ], [ 314, 107, 376, 124 ], [ 380, 107, 404, 124 ], [ 408, 107, 458, 124 ], [ 463, 107, 529, 124 ], [ 534, 107, 570, 124 ], [ 575, 107, 633, 124 ], [ 638, 107, 663, 124 ], [ 668, 107, 755, 124 ], [ 345, 121, 388, 137 ], [ 393, 121, 426, 137 ], [ 431, 121, 532, 137 ], [ 536, 121, 654, 137 ], [ 632, 150, 689, 166 ], [ 424, 157, 492, 173 ], [ 829, 157, 897, 173 ], [ 535, 163, 583, 180 ], [ 621, 163, 668, 180 ], [ 673, 163, 700, 180 ], [ 726, 163, 797, 180 ], [ 434, 170, 482, 187 ], [ 828, 170, 898, 187 ], [ 625, 177, 696, 193 ], [ 125, 202, 181, 219 ], [ 186, 202, 233, 219 ], [ 238, 202, 268, 219 ], [ 272, 202, 355, 219 ], [ 453, 202, 463, 219 ], [ 555, 202, 564, 219 ], [ 656, 202, 665, 219 ], [ 757, 202, 766, 219 ], [ 858, 202, 868, 219 ], [ 125, 216, 185, 232 ], [ 189, 216, 207, 232 ], [ 212, 216, 235, 232 ], [ 240, 216, 333, 232 ], [ 125, 230, 190, 246 ], [ 195, 230, 240, 246 ], [ 244, 230, 272, 246 ], [ 277, 230, 300, 246 ], [ 305, 230, 361, 246 ], [ 125, 243, 193, 260 ], [ 198, 243, 211, 260 ], [ 215, 243, 241, 260 ], [ 246, 243, 318, 260 ], [ 323, 243, 369, 260 ], [ 125, 265, 201, 281 ], [ 205, 265, 235, 281 ], [ 240, 265, 298, 281 ], [ 302, 265, 322, 281 ], [ 327, 265, 349, 281 ], [ 453, 265, 463, 281 ], [ 555, 265, 564, 281 ], [ 656, 265, 665, 281 ], [ 757, 265, 766, 281 ], [ 858, 265, 868, 281 ], [ 125, 279, 213, 295 ], [ 217, 279, 245, 295 ], [ 250, 279, 332, 295 ], [ 125, 300, 201, 317 ], [ 205, 300, 235, 317 ], [ 240, 300, 320, 317 ], [ 453, 300, 463, 317 ], [ 555, 300, 564, 317 ], [ 656, 300, 665, 317 ], [ 757, 300, 766, 317 ], [ 858, 300, 868, 317 ], [ 125, 322, 154, 338 ], [ 159, 322, 192, 338 ], [ 197, 322, 220, 338 ], [ 225, 322, 237, 338 ], [ 242, 322, 255, 338 ], [ 260, 322, 298, 338 ], [ 302, 322, 355, 338 ], [ 453, 322, 463, 338 ], [ 555, 322, 564, 338 ], [ 656, 322, 665, 338 ], [ 757, 322, 766, 338 ], [ 858, 322, 868, 338 ], [ 125, 344, 154, 360 ], [ 159, 344, 195, 360 ], [ 200, 344, 223, 360 ], [ 228, 344, 298, 360 ], [ 302, 344, 382, 360 ], [ 453, 344, 463, 360 ], [ 555, 344, 564, 360 ], [ 656, 344, 665, 360 ], [ 757, 344, 766, 360 ], [ 858, 344, 868, 360 ], [ 125, 357, 148, 374 ], [ 153, 357, 233, 374 ], [ 238, 357, 252, 374 ], [ 257, 357, 283, 374 ], [ 288, 357, 345, 374 ], [ 350, 357, 393, 374 ], [ 125, 379, 201, 395 ], [ 205, 379, 291, 395 ], [ 296, 379, 332, 395 ], [ 453, 379, 463, 395 ], [ 555, 379, 564, 395 ], [ 656, 379, 665, 395 ], [ 757, 379, 766, 395 ], [ 858, 379, 868, 395 ], [ 125, 393, 214, 409 ], [ 218, 393, 232, 409 ], [ 237, 393, 269, 409 ], [ 274, 393, 292, 409 ], [ 297, 393, 341, 409 ], [ 345, 393, 379, 409 ], [ 95, 414, 109, 431 ], [ 125, 414, 130, 431 ], [ 134, 414, 158, 431 ], [ 163, 414, 230, 431 ], [ 235, 414, 263, 431 ], [ 268, 414, 294, 431 ], [ 299, 414, 330, 431 ], [ 335, 414, 358, 431 ], [ 363, 414, 395, 431 ], [ 453, 414, 463, 431 ], [ 555, 414, 564, 431 ], [ 656, 414, 665, 431 ], [ 757, 414, 766, 431 ], [ 858, 414, 868, 431 ], [ 125, 428, 139, 444 ], [ 144, 428, 153, 444 ], [ 158, 428, 201, 444 ], [ 205, 428, 302, 444 ], [ 307, 428, 376, 444 ], [ 381, 428, 389, 444 ], [ 125, 442, 148, 458 ], [ 153, 442, 238, 458 ], [ 243, 442, 306, 458 ], [ 311, 442, 347, 458 ], [ 352, 442, 398, 458 ], [ 95, 494, 109, 511 ], [ 125, 494, 158, 511 ], [ 163, 494, 186, 511 ], [ 191, 494, 263, 511 ], [ 267, 494, 318, 511 ], [ 367, 494, 431, 511 ], [ 503, 494, 532, 511 ], [ 536, 494, 583, 511 ], [ 647, 494, 676, 511 ], [ 680, 494, 712, 511 ], [ 716, 494, 726, 511 ], [ 95, 522, 109, 539 ], [ 125, 522, 165, 539 ], [ 170, 522, 212, 539 ], [ 246, 522, 277, 539 ], [ 281, 522, 337, 539 ], [ 342, 522, 437, 539 ], [ 503, 522, 532, 539 ], [ 536, 522, 572, 539 ], [ 647, 522, 676, 539 ], [ 680, 522, 721, 539 ], [ 726, 522, 735, 539 ], [ 95, 550, 118, 566 ], [ 125, 550, 171, 566 ], [ 176, 550, 223, 566 ], [ 227, 550, 236, 566 ], [ 240, 550, 272, 566 ], [ 277, 550, 340, 566 ], [ 345, 550, 368, 566 ], [ 373, 550, 414, 566 ], [ 419, 550, 434, 566 ], [ 438, 550, 462, 566 ], [ 466, 550, 496, 566 ], [ 501, 550, 542, 566 ], [ 95, 687, 118, 703 ], [ 125, 687, 146, 703 ], [ 155, 687, 182, 703 ], [ 190, 687, 226, 703 ], [ 235, 687, 262, 703 ], [ 271, 687, 360, 703 ], [ 369, 687, 397, 703 ], [ 406, 687, 432, 703 ], [ 441, 687, 468, 703 ], [ 477, 687, 517, 703 ], [ 525, 687, 585, 703 ], [ 594, 687, 620, 703 ], [ 628, 687, 700, 703 ], [ 709, 687, 724, 703 ], [ 732, 687, 755, 703 ], [ 764, 687, 787, 703 ], [ 796, 687, 830, 703 ], [ 838, 687, 866, 703 ], [ 875, 687, 904, 703 ], [ 125, 700, 204, 716 ], [ 95, 837, 118, 853 ], [ 125, 837, 154, 853 ], [ 158, 837, 196, 853 ], [ 201, 837, 288, 853 ] ]
[ [ 264, 65, 295, 81 ], [ 299, 65, 373, 81 ], [ 378, 65, 392, 81 ], [ 396, 65, 412, 81 ], [ 417, 65, 437, 81 ], [ 441, 65, 480, 81 ], [ 485, 65, 511, 81 ], [ 516, 65, 531, 81 ], [ 535, 65, 561, 81 ], [ 565, 65, 595, 81 ], [ 600, 65, 615, 81 ], [ 620, 65, 645, 81 ], [ 650, 65, 735, 81 ], [ 244, 107, 309, 124 ], [ 314, 107, 376, 124 ], [ 380, 107, 404, 124 ], [ 408, 107, 458, 124 ], [ 463, 107, 529, 124 ], [ 534, 107, 570, 124 ], [ 575, 107, 633, 124 ], [ 638, 107, 663, 124 ], [ 668, 107, 755, 124 ], [ 345, 121, 388, 137 ], [ 393, 121, 426, 137 ], [ 431, 121, 532, 137 ], [ 536, 121, 654, 137 ], [ 424, 157, 492, 173 ], [ 434, 170, 482, 187 ], [ 535, 163, 583, 180 ], [ 632, 150, 689, 166 ], [ 621, 163, 668, 180 ], [ 673, 163, 700, 180 ], [ 625, 177, 696, 193 ], [ 726, 163, 797, 180 ], [ 829, 157, 897, 173 ], [ 828, 170, 898, 187 ], [ 125, 202, 181, 219 ], [ 186, 202, 233, 219 ], [ 238, 202, 268, 219 ], [ 272, 202, 355, 219 ], [ 125, 216, 185, 232 ], [ 189, 216, 207, 232 ], [ 212, 216, 235, 232 ], [ 240, 216, 333, 232 ], [ 125, 230, 190, 246 ], [ 195, 230, 240, 246 ], [ 244, 230, 272, 246 ], [ 277, 230, 300, 246 ], [ 305, 230, 361, 246 ], [ 125, 243, 193, 260 ], [ 198, 243, 211, 260 ], [ 215, 243, 241, 260 ], [ 246, 243, 318, 260 ], [ 323, 243, 369, 260 ], [ 453, 202, 463, 219 ], [ 555, 202, 564, 219 ], [ 656, 202, 665, 219 ], [ 757, 202, 766, 219 ], [ 858, 202, 868, 219 ], [ 125, 265, 201, 281 ], [ 205, 265, 235, 281 ], [ 240, 265, 298, 281 ], [ 302, 265, 322, 281 ], [ 327, 265, 349, 281 ], [ 125, 279, 213, 295 ], [ 217, 279, 245, 295 ], [ 250, 279, 332, 295 ], [ 453, 265, 463, 281 ], [ 555, 265, 564, 281 ], [ 656, 265, 665, 281 ], [ 757, 265, 766, 281 ], [ 858, 265, 868, 281 ], [ 125, 300, 201, 317 ], [ 205, 300, 235, 317 ], [ 240, 300, 320, 317 ], [ 453, 300, 463, 317 ], [ 555, 300, 564, 317 ], [ 656, 300, 665, 317 ], [ 757, 300, 766, 317 ], [ 858, 300, 868, 317 ], [ 125, 322, 154, 338 ], [ 159, 322, 192, 338 ], [ 197, 322, 220, 338 ], [ 225, 322, 237, 338 ], [ 242, 322, 255, 338 ], [ 260, 322, 298, 338 ], [ 302, 322, 355, 338 ], [ 453, 322, 463, 338 ], [ 555, 322, 564, 338 ], [ 656, 322, 665, 338 ], [ 757, 322, 766, 338 ], [ 858, 322, 868, 338 ], [ 125, 344, 154, 360 ], [ 159, 344, 195, 360 ], [ 200, 344, 223, 360 ], [ 228, 344, 298, 360 ], [ 302, 344, 382, 360 ], [ 125, 357, 148, 374 ], [ 153, 357, 233, 374 ], [ 238, 357, 252, 374 ], [ 257, 357, 283, 374 ], [ 288, 357, 345, 374 ], [ 350, 357, 393, 374 ], [ 453, 344, 463, 360 ], [ 555, 344, 564, 360 ], [ 656, 344, 665, 360 ], [ 757, 344, 766, 360 ], [ 858, 344, 868, 360 ], [ 125, 379, 201, 395 ], [ 205, 379, 291, 395 ], [ 296, 379, 332, 395 ], [ 125, 393, 214, 409 ], [ 218, 393, 232, 409 ], [ 237, 393, 269, 409 ], [ 274, 393, 292, 409 ], [ 297, 393, 341, 409 ], [ 345, 393, 379, 409 ], [ 453, 379, 463, 395 ], [ 555, 379, 564, 395 ], [ 656, 379, 665, 395 ], [ 757, 379, 766, 395 ], [ 858, 379, 868, 395 ], [ 95, 414, 109, 431 ], [ 125, 414, 130, 431 ], [ 134, 414, 158, 431 ], [ 163, 414, 230, 431 ], [ 235, 414, 263, 431 ], [ 268, 414, 294, 431 ], [ 299, 414, 330, 431 ], [ 335, 414, 358, 431 ], [ 363, 414, 395, 431 ], [ 125, 428, 139, 444 ], [ 144, 428, 153, 444 ], [ 158, 428, 201, 444 ], [ 205, 428, 302, 444 ], [ 307, 428, 376, 444 ], [ 381, 428, 389, 444 ], [ 125, 442, 148, 458 ], [ 153, 442, 238, 458 ], [ 243, 442, 306, 458 ], [ 311, 442, 347, 458 ], [ 352, 442, 398, 458 ], [ 453, 414, 463, 431 ], [ 555, 414, 564, 431 ], [ 656, 414, 665, 431 ], [ 757, 414, 766, 431 ], [ 858, 414, 868, 431 ], [ 95, 494, 109, 511 ], [ 125, 494, 158, 511 ], [ 163, 494, 186, 511 ], [ 191, 494, 263, 511 ], [ 267, 494, 318, 511 ], [ 367, 494, 431, 511 ], [ 503, 494, 532, 511 ], [ 536, 494, 583, 511 ], [ 647, 494, 676, 511 ], [ 680, 494, 712, 511 ], [ 716, 494, 726, 511 ], [ 95, 522, 109, 539 ], [ 125, 522, 165, 539 ], [ 170, 522, 212, 539 ], [ 246, 522, 277, 539 ], [ 281, 522, 337, 539 ], [ 342, 522, 437, 539 ], [ 503, 522, 532, 539 ], [ 536, 522, 572, 539 ], [ 647, 522, 676, 539 ], [ 680, 522, 721, 539 ], [ 726, 522, 735, 539 ], [ 95, 550, 118, 566 ], [ 125, 550, 171, 566 ], [ 176, 550, 223, 566 ], [ 227, 550, 236, 566 ], [ 240, 550, 272, 566 ], [ 277, 550, 340, 566 ], [ 345, 550, 368, 566 ], [ 373, 550, 414, 566 ], [ 419, 550, 434, 566 ], [ 438, 550, 462, 566 ], [ 466, 550, 496, 566 ], [ 501, 550, 542, 566 ], [ 95, 687, 118, 703 ], [ 125, 687, 146, 703 ], [ 155, 687, 182, 703 ], [ 190, 687, 226, 703 ], [ 235, 687, 262, 703 ], [ 271, 687, 360, 703 ], [ 369, 687, 397, 703 ], [ 406, 687, 432, 703 ], [ 441, 687, 468, 703 ], [ 477, 687, 517, 703 ], [ 525, 687, 585, 703 ], [ 594, 687, 620, 703 ], [ 628, 687, 700, 703 ], [ 709, 687, 724, 703 ], [ 732, 687, 755, 703 ], [ 764, 687, 787, 703 ], [ 796, 687, 830, 703 ], [ 838, 687, 866, 703 ], [ 875, 687, 904, 703 ], [ 125, 700, 204, 716 ], [ 95, 837, 118, 853 ], [ 125, 837, 154, 853 ], [ 158, 837, 196, 853 ], [ 201, 837, 288, 853 ] ]
required required Phosmet 92% Currants, black, Currants (black, red None 2 New EU Commodity not listed 2% 1% red, white and white) Not Phosphorous acid required Berries and other small fruits [except Not Not T50 None Deleted APVMA riberries; required required strawberry] Not Not Grapes None 200 New APVMA required required Piperonyl butoxide 73% All other foods Not Not except animal food None 0.5 New FSANZ required required commodities Not Not Herbs None 8 New APVMA required required Pirimicarb Coriander (leaves, Not Not T20 None Deleted APVMA roots, stems) required required Not Not Herbs T20 None Deleted APVMA required required Not Not Hops, dry 0.5 None Deleted APVMA required required Not Not Lemon balm T20 None Deleted APVMA required required Profenofos 1% All other foods Not Not except animal food None 0.02 New FSANZ required required commodities Peppers, chili None 3 New Codex Peppers Chili Peppers Chili 3 (2012) <1% <1% Peppers Chili, dried 20 Peppers, chili (dry) None 20 New Codex Peppers Chili, dried <1% <1% (2012) Not Propachlor required Garlic 2.5 None Deleted APVMA Not Not
required required Phosmet 92% Currants, black, red, white None 2 New EU Currants (black, red and white) Commodity not listed 2% 1% Phosphorous acid Not required Berries and other small fruits [except riberries; strawberry] T50 None Deleted APVMA Not required Not required Grapes None 200 New APVMA Not required Not required Piperonyl butoxide 73% All other foods except animal food commodities None 0.5 New FSANZ Not required Not required Herbs None 8 New APVMA Not required Not required Pirimicarb Coriander (leaves, roots, stems) T20 None Deleted APVMA Not required Not required Herbs T20 None Deleted APVMA Not required Not required Hops, dry 0.5 None Deleted APVMA Not required Not required Lemon balm T20 None Deleted APVMA Not required Not required Profenofos 1% All other foods except animal food commodities None 0.02 New FSANZ Not required Not required Peppers, chili None 3 New Codex Peppers Chili Peppers Chili 3 (2012) <1% <1% Peppers, chili (dry) None 20 New Codex Peppers Chili, dried Peppers Chili, dried 20 (2012) <1% <1% Propachlor Not required Garlic 2.5 None Deleted APVMA Not Not
0.55738
[ 0, 1, 2, 3, 4, 5, 18, 19, 9, 10, 11, 12, 6, 7, 8, 20, 21, 13, 14, 15, 16, 17, 23, 24, 22, 25, 26, 27, 28, 29, 30, 31, 38, 41, 34, 35, 36, 37, 32, 39, 33, 40, 44, 45, 46, 47, 48, 42, 49, 43, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 68, 62, 63, 64, 65, 57, 66, 58, 67, 71, 72, 73, 74, 75, 69, 76, 70, 77, 78, 79, 80, 87, 88, 83, 84, 85, 86, 81, 89, 82, 90, 93, 94, 95, 96, 97, 91, 98, 92, 99, 102, 103, 104, 105, 106, 107, 100, 108, 101, 109, 112, 113, 114, 115, 116, 117, 110, 118, 111, 119, 120, 121, 122, 123, 124, 127, 128, 129, 136, 130, 131, 132, 133, 125, 134, 126, 135, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 151, 152, 153, 154, 167, 165, 166, 169, 168, 170, 171, 172, 173, 174, 175, 176, 177 ]
M1015%20-%20Supporting%20Document%201.docx
task-1431-38
24
[ [ 810, 201, 850, 222 ], [ 871, 201, 910, 222 ], [ 89, 219, 139, 242 ], [ 760, 221, 782, 241 ], [ 107, 240, 151, 260 ], [ 154, 240, 182, 260 ], [ 498, 240, 539, 260 ], [ 542, 240, 574, 260 ], [ 577, 240, 592, 260 ], [ 225, 248, 251, 269 ], [ 302, 248, 308, 269 ], [ 365, 248, 386, 269 ], [ 440, 248, 455, 269 ], [ 626, 248, 680, 269 ], [ 683, 248, 698, 269 ], [ 701, 248, 726, 269 ], [ 822, 248, 838, 269 ], [ 882, 248, 898, 269 ], [ 107, 257, 125, 278 ], [ 129, 257, 153, 278 ], [ 521, 257, 538, 278 ], [ 541, 257, 570, 278 ], [ 763, 275, 780, 296 ], [ 89, 283, 166, 306 ], [ 169, 283, 193, 306 ], [ 752, 293, 791, 313 ], [ 107, 311, 141, 332 ], [ 144, 311, 162, 332 ], [ 165, 311, 189, 332 ], [ 107, 328, 132, 349 ], [ 135, 328, 158, 349 ], [ 161, 328, 196, 349 ], [ 822, 328, 838, 349 ], [ 882, 328, 899, 349 ], [ 229, 337, 247, 358 ], [ 292, 337, 318, 358 ], [ 357, 337, 394, 358 ], [ 428, 337, 466, 358 ], [ 107, 346, 149, 367 ], [ 810, 346, 850, 367 ], [ 871, 346, 910, 367 ], [ 107, 363, 160, 384 ], [ 822, 381, 838, 402 ], [ 882, 381, 899, 402 ], [ 107, 390, 142, 411 ], [ 225, 390, 251, 411 ], [ 296, 390, 314, 411 ], [ 365, 390, 386, 411 ], [ 428, 390, 466, 411 ], [ 810, 399, 850, 420 ], [ 871, 399, 910, 420 ], [ 89, 416, 143, 440 ], [ 147, 416, 196, 440 ], [ 760, 418, 782, 439 ], [ 107, 437, 119, 458 ], [ 122, 437, 146, 458 ], [ 149, 437, 175, 458 ], [ 822, 446, 838, 467 ], [ 882, 446, 899, 467 ], [ 107, 454, 138, 475 ], [ 141, 454, 173, 475 ], [ 176, 454, 197, 475 ], [ 225, 454, 251, 475 ], [ 298, 454, 313, 475 ], [ 365, 454, 386, 475 ], [ 430, 454, 465, 475 ], [ 810, 463, 850, 484 ], [ 871, 463, 910, 484 ], [ 107, 472, 167, 493 ], [ 822, 490, 838, 511 ], [ 882, 490, 899, 511 ], [ 107, 499, 136, 520 ], [ 225, 499, 251, 520 ], [ 302, 499, 308, 520 ], [ 365, 499, 386, 520 ], [ 428, 499, 466, 520 ], [ 810, 507, 850, 528 ], [ 871, 507, 910, 528 ], [ 89, 525, 147, 548 ], [ 107, 546, 154, 567 ], [ 157, 546, 194, 567 ], [ 822, 546, 838, 567 ], [ 882, 546, 899, 567 ], [ 229, 555, 247, 575 ], [ 292, 555, 318, 575 ], [ 357, 555, 394, 575 ], [ 428, 555, 466, 575 ], [ 107, 563, 134, 584 ], [ 137, 563, 169, 584 ], [ 810, 563, 850, 584 ], [ 871, 563, 910, 584 ], [ 822, 581, 838, 602 ], [ 882, 581, 899, 602 ], [ 107, 590, 136, 611 ], [ 229, 590, 247, 611 ], [ 292, 590, 318, 611 ], [ 357, 590, 394, 611 ], [ 428, 590, 466, 611 ], [ 810, 599, 850, 620 ], [ 871, 599, 910, 620 ], [ 822, 617, 838, 638 ], [ 882, 617, 899, 638 ], [ 107, 626, 135, 647 ], [ 138, 626, 153, 647 ], [ 230, 626, 245, 647 ], [ 292, 626, 318, 647 ], [ 357, 626, 394, 647 ], [ 428, 626, 466, 647 ], [ 810, 634, 850, 655 ], [ 871, 634, 910, 655 ], [ 822, 653, 838, 674 ], [ 882, 653, 899, 674 ], [ 107, 661, 140, 682 ], [ 143, 661, 166, 682 ], [ 229, 661, 247, 682 ], [ 292, 661, 318, 682 ], [ 357, 661, 394, 682 ], [ 428, 661, 466, 682 ], [ 810, 670, 850, 691 ], [ 871, 670, 910, 691 ], [ 89, 688, 152, 711 ], [ 763, 689, 779, 710 ], [ 107, 708, 119, 729 ], [ 122, 708, 146, 729 ], [ 149, 708, 175, 729 ], [ 822, 717, 838, 738 ], [ 882, 717, 899, 738 ], [ 107, 726, 138, 747 ], [ 141, 726, 173, 747 ], [ 176, 726, 197, 747 ], [ 225, 726, 251, 747 ], [ 295, 726, 316, 747 ], [ 365, 726, 386, 747 ], [ 430, 726, 465, 747 ], [ 810, 735, 850, 755 ], [ 871, 735, 910, 755 ], [ 107, 743, 167, 764 ], [ 107, 761, 150, 782 ], [ 153, 761, 171, 782 ], [ 225, 761, 251, 782 ], [ 302, 761, 308, 782 ], [ 365, 761, 386, 782 ], [ 432, 761, 463, 782 ], [ 513, 761, 553, 782 ], [ 556, 761, 577, 782 ], [ 622, 761, 662, 782 ], [ 665, 761, 686, 782 ], [ 689, 761, 695, 782 ], [ 698, 761, 729, 782 ], [ 819, 761, 841, 782 ], [ 879, 761, 901, 782 ], [ 621, 780, 661, 801 ], [ 664, 780, 688, 801 ], [ 691, 780, 715, 801 ], [ 718, 780, 730, 801 ], [ 107, 788, 150, 809 ], [ 153, 788, 171, 809 ], [ 174, 788, 196, 809 ], [ 225, 788, 251, 809 ], [ 299, 788, 311, 809 ], [ 365, 788, 386, 809 ], [ 432, 788, 463, 809 ], [ 498, 788, 538, 809 ], [ 541, 788, 565, 809 ], [ 568, 788, 592, 809 ], [ 819, 788, 841, 809 ], [ 879, 788, 901, 809 ], [ 660, 797, 691, 818 ], [ 763, 815, 780, 836 ], [ 89, 823, 152, 846 ], [ 752, 833, 791, 853 ], [ 107, 851, 135, 872 ], [ 230, 851, 245, 872 ], [ 292, 851, 318, 872 ], [ 357, 851, 394, 872 ], [ 428, 851, 466, 872 ], [ 822, 851, 838, 872 ], [ 882, 851, 899, 872 ] ]
[ [ 810, 201, 850, 222 ], [ 871, 201, 910, 222 ], [ 89, 219, 139, 242 ], [ 760, 221, 782, 241 ], [ 107, 240, 151, 260 ], [ 154, 240, 182, 260 ], [ 107, 257, 125, 278 ], [ 129, 257, 153, 278 ], [ 225, 248, 251, 269 ], [ 302, 248, 308, 269 ], [ 365, 248, 386, 269 ], [ 440, 248, 455, 269 ], [ 498, 240, 539, 260 ], [ 542, 240, 574, 260 ], [ 577, 240, 592, 260 ], [ 521, 257, 538, 278 ], [ 541, 257, 570, 278 ], [ 626, 248, 680, 269 ], [ 683, 248, 698, 269 ], [ 701, 248, 726, 269 ], [ 822, 248, 838, 269 ], [ 882, 248, 898, 269 ], [ 89, 283, 166, 306 ], [ 169, 283, 193, 306 ], [ 763, 275, 780, 296 ], [ 752, 293, 791, 313 ], [ 107, 311, 141, 332 ], [ 144, 311, 162, 332 ], [ 165, 311, 189, 332 ], [ 107, 328, 132, 349 ], [ 135, 328, 158, 349 ], [ 161, 328, 196, 349 ], [ 107, 346, 149, 367 ], [ 107, 363, 160, 384 ], [ 229, 337, 247, 358 ], [ 292, 337, 318, 358 ], [ 357, 337, 394, 358 ], [ 428, 337, 466, 358 ], [ 822, 328, 838, 349 ], [ 810, 346, 850, 367 ], [ 882, 328, 899, 349 ], [ 871, 346, 910, 367 ], [ 107, 390, 142, 411 ], [ 225, 390, 251, 411 ], [ 296, 390, 314, 411 ], [ 365, 390, 386, 411 ], [ 428, 390, 466, 411 ], [ 822, 381, 838, 402 ], [ 810, 399, 850, 420 ], [ 882, 381, 899, 402 ], [ 871, 399, 910, 420 ], [ 89, 416, 143, 440 ], [ 147, 416, 196, 440 ], [ 760, 418, 782, 439 ], [ 107, 437, 119, 458 ], [ 122, 437, 146, 458 ], [ 149, 437, 175, 458 ], [ 107, 454, 138, 475 ], [ 141, 454, 173, 475 ], [ 176, 454, 197, 475 ], [ 107, 472, 167, 493 ], [ 225, 454, 251, 475 ], [ 298, 454, 313, 475 ], [ 365, 454, 386, 475 ], [ 430, 454, 465, 475 ], [ 822, 446, 838, 467 ], [ 810, 463, 850, 484 ], [ 882, 446, 899, 467 ], [ 871, 463, 910, 484 ], [ 107, 499, 136, 520 ], [ 225, 499, 251, 520 ], [ 302, 499, 308, 520 ], [ 365, 499, 386, 520 ], [ 428, 499, 466, 520 ], [ 822, 490, 838, 511 ], [ 810, 507, 850, 528 ], [ 882, 490, 899, 511 ], [ 871, 507, 910, 528 ], [ 89, 525, 147, 548 ], [ 107, 546, 154, 567 ], [ 157, 546, 194, 567 ], [ 107, 563, 134, 584 ], [ 137, 563, 169, 584 ], [ 229, 555, 247, 575 ], [ 292, 555, 318, 575 ], [ 357, 555, 394, 575 ], [ 428, 555, 466, 575 ], [ 822, 546, 838, 567 ], [ 810, 563, 850, 584 ], [ 882, 546, 899, 567 ], [ 871, 563, 910, 584 ], [ 107, 590, 136, 611 ], [ 229, 590, 247, 611 ], [ 292, 590, 318, 611 ], [ 357, 590, 394, 611 ], [ 428, 590, 466, 611 ], [ 822, 581, 838, 602 ], [ 810, 599, 850, 620 ], [ 882, 581, 899, 602 ], [ 871, 599, 910, 620 ], [ 107, 626, 135, 647 ], [ 138, 626, 153, 647 ], [ 230, 626, 245, 647 ], [ 292, 626, 318, 647 ], [ 357, 626, 394, 647 ], [ 428, 626, 466, 647 ], [ 822, 617, 838, 638 ], [ 810, 634, 850, 655 ], [ 882, 617, 899, 638 ], [ 871, 634, 910, 655 ], [ 107, 661, 140, 682 ], [ 143, 661, 166, 682 ], [ 229, 661, 247, 682 ], [ 292, 661, 318, 682 ], [ 357, 661, 394, 682 ], [ 428, 661, 466, 682 ], [ 822, 653, 838, 674 ], [ 810, 670, 850, 691 ], [ 882, 653, 899, 674 ], [ 871, 670, 910, 691 ], [ 89, 688, 152, 711 ], [ 763, 689, 779, 710 ], [ 107, 708, 119, 729 ], [ 122, 708, 146, 729 ], [ 149, 708, 175, 729 ], [ 107, 726, 138, 747 ], [ 141, 726, 173, 747 ], [ 176, 726, 197, 747 ], [ 107, 743, 167, 764 ], [ 225, 726, 251, 747 ], [ 295, 726, 316, 747 ], [ 365, 726, 386, 747 ], [ 430, 726, 465, 747 ], [ 822, 717, 838, 738 ], [ 810, 735, 850, 755 ], [ 882, 717, 899, 738 ], [ 871, 735, 910, 755 ], [ 107, 761, 150, 782 ], [ 153, 761, 171, 782 ], [ 225, 761, 251, 782 ], [ 302, 761, 308, 782 ], [ 365, 761, 386, 782 ], [ 432, 761, 463, 782 ], [ 513, 761, 553, 782 ], [ 556, 761, 577, 782 ], [ 622, 761, 662, 782 ], [ 665, 761, 686, 782 ], [ 689, 761, 695, 782 ], [ 698, 761, 729, 782 ], [ 819, 761, 841, 782 ], [ 879, 761, 901, 782 ], [ 107, 788, 150, 809 ], [ 153, 788, 171, 809 ], [ 174, 788, 196, 809 ], [ 225, 788, 251, 809 ], [ 299, 788, 311, 809 ], [ 365, 788, 386, 809 ], [ 432, 788, 463, 809 ], [ 498, 788, 538, 809 ], [ 541, 788, 565, 809 ], [ 568, 788, 592, 809 ], [ 621, 780, 661, 801 ], [ 664, 780, 688, 801 ], [ 691, 780, 715, 801 ], [ 718, 780, 730, 801 ], [ 660, 797, 691, 818 ], [ 819, 788, 841, 809 ], [ 879, 788, 901, 809 ], [ 89, 823, 152, 846 ], [ 763, 815, 780, 836 ], [ 752, 833, 791, 853 ], [ 107, 851, 135, 872 ], [ 230, 851, 245, 872 ], [ 292, 851, 318, 872 ], [ 357, 851, 394, 872 ], [ 428, 851, 466, 872 ], [ 822, 851, 838, 872 ], [ 882, 851, 899, 872 ] ]
Check that your answers are sensible, significant figures, units and that you have documented your answer with comments and statements of physical principles. The problem type is free fall uniformly accelerated motion in – the vertical Y direction: = -g = -9.81 m.s-2 and the displacement corresponds to the a s changes in the vertical position of the ball. We can solve the problem using the equations (1) (2) (3) (4) (5) Case (a) Initial state: = 0 = 0 = 0 = -9.81 m.s-2 t s u a = -g Final state when = 1.23 s: = ? m = ? m.s-1 t s v Eq(1) Eq(2) Final state when = -40.0 m (as ball strikes ground): = ? s v = ? s t
Check that your answers are sensible, significant figures, units and that you have documented your answer with comments and statements of physical principles. The problem type is free fall – uniformly accelerated motion in the vertical Y direction: a = -g = -9.81 m.s-2 and the displacement s corresponds to the changes in the vertical position of the ball. We can solve the problem using the equations (1) (2) (3) (4) (5) Case (a) Initial state: t = 0 s = 0 u = 0 a = -g = -9.81 m.s-2 Final state when t = 1.23 s: s = ? m v = ? m.s-1 Eq(1) Eq(2) Final state when s = -40.0 m (as ball strikes ground): v = ? t = ? s
0.697371
[ 0, 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, 33, 29, 30, 31, 32, 34, 35, 36, 37, 49, 38, 39, 40, 41, 42, 43, 44, 45, 50, 46, 47, 48, 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, 85, 76, 77, 86, 78, 79, 87, 80, 81, 88, 89, 90, 82, 83, 84, 91, 92, 93, 103, 94, 95, 96, 104, 97, 98, 99, 105, 100, 101, 102, 106, 107, 108, 109, 110, 120, 111, 112, 113, 114, 115, 116, 117, 121, 118, 119, 125, 122, 123, 124 ]
m1_aconstant.docx
task-1431-387
10
[ [ 153, 66, 221, 91 ], [ 228, 66, 268, 91 ], [ 275, 66, 324, 91 ], [ 331, 66, 418, 91 ], [ 424, 66, 457, 91 ], [ 464, 66, 557, 91 ], [ 564, 66, 678, 91 ], [ 684, 66, 766, 91 ], [ 772, 66, 824, 91 ], [ 153, 99, 192, 124 ], [ 198, 99, 239, 124 ], [ 245, 99, 285, 124 ], [ 292, 99, 343, 124 ], [ 350, 99, 481, 124 ], [ 488, 99, 537, 124 ], [ 544, 99, 620, 124 ], [ 627, 99, 674, 124 ], [ 681, 99, 792, 124 ], [ 799, 99, 837, 124 ], [ 153, 131, 266, 157 ], [ 273, 131, 295, 157 ], [ 302, 131, 392, 157 ], [ 398, 131, 511, 157 ], [ 153, 164, 194, 189 ], [ 201, 164, 291, 189 ], [ 297, 164, 343, 189 ], [ 350, 164, 368, 189 ], [ 375, 164, 417, 189 ], [ 423, 164, 459, 189 ], [ 493, 164, 600, 189 ], [ 607, 164, 728, 189 ], [ 735, 164, 811, 189 ], [ 818, 164, 839, 189 ], [ 466, 167, 479, 188 ], [ 153, 197, 186, 222 ], [ 192, 197, 273, 222 ], [ 279, 197, 299, 222 ], [ 306, 197, 409, 222 ], [ 173, 230, 188, 255 ], [ 195, 230, 217, 255 ], [ 224, 230, 239, 255 ], [ 246, 230, 302, 255 ], [ 309, 230, 369, 255 ], [ 382, 230, 421, 255 ], [ 428, 230, 461, 255 ], [ 467, 230, 609, 255 ], [ 633, 230, 763, 255 ], [ 770, 230, 791, 255 ], [ 797, 230, 830, 255 ], [ 153, 232, 166, 255 ], [ 616, 232, 626, 255 ], [ 153, 262, 239, 288 ], [ 246, 262, 267, 288 ], [ 274, 262, 307, 288 ], [ 313, 262, 394, 288 ], [ 400, 262, 487, 288 ], [ 494, 262, 516, 288 ], [ 523, 262, 556, 288 ], [ 562, 262, 609, 288 ], [ 153, 295, 190, 321 ], [ 197, 295, 234, 321 ], [ 241, 295, 297, 321 ], [ 304, 295, 337, 321 ], [ 344, 295, 433, 321 ], [ 440, 295, 498, 321 ], [ 505, 295, 538, 321 ], [ 544, 295, 648, 321 ], [ 213, 328, 244, 353 ], [ 213, 361, 244, 386 ], [ 213, 394, 244, 419 ], [ 213, 426, 244, 452 ], [ 213, 459, 244, 485 ], [ 153, 493, 208, 519 ], [ 215, 493, 246, 519 ], [ 153, 560, 217, 585 ], [ 223, 560, 280, 585 ], [ 315, 560, 330, 585 ], [ 336, 560, 350, 585 ], [ 387, 560, 402, 585 ], [ 409, 560, 422, 585 ], [ 463, 560, 478, 585 ], [ 485, 560, 498, 585 ], [ 592, 560, 608, 585 ], [ 614, 560, 670, 585 ], [ 677, 560, 737, 585 ], [ 300, 562, 308, 585 ], [ 370, 562, 381, 585 ], [ 443, 562, 456, 585 ], [ 518, 562, 532, 585 ], [ 538, 562, 557, 585 ], [ 563, 562, 586, 585 ], [ 153, 627, 208, 652 ], [ 215, 627, 264, 652 ], [ 270, 627, 329, 652 ], [ 350, 627, 365, 652 ], [ 372, 627, 419, 652 ], [ 426, 627, 443, 652 ], [ 467, 627, 482, 652 ], [ 489, 627, 501, 652 ], [ 508, 627, 529, 652 ], [ 568, 627, 583, 652 ], [ 589, 627, 601, 652 ], [ 609, 627, 669, 652 ], [ 335, 629, 343, 652 ], [ 450, 629, 461, 652 ], [ 549, 629, 561, 652 ], [ 153, 695, 214, 720 ], [ 153, 762, 214, 788 ], [ 153, 830, 208, 855 ], [ 215, 830, 264, 855 ], [ 270, 830, 329, 855 ], [ 353, 830, 368, 855 ], [ 375, 830, 431, 855 ], [ 438, 830, 458, 855 ], [ 465, 830, 496, 855 ], [ 503, 830, 543, 855 ], [ 550, 830, 620, 855 ], [ 627, 830, 720, 855 ], [ 759, 830, 774, 855 ], [ 780, 830, 792, 855 ], [ 335, 832, 346, 855 ], [ 740, 832, 752, 855 ], [ 321, 863, 336, 888 ], [ 343, 863, 355, 888 ], [ 362, 863, 373, 888 ], [ 307, 865, 315, 888 ] ]
[ [ 153, 66, 221, 91 ], [ 228, 66, 268, 91 ], [ 275, 66, 324, 91 ], [ 331, 66, 418, 91 ], [ 424, 66, 457, 91 ], [ 464, 66, 557, 91 ], [ 564, 66, 678, 91 ], [ 684, 66, 766, 91 ], [ 772, 66, 824, 91 ], [ 153, 99, 192, 124 ], [ 198, 99, 239, 124 ], [ 245, 99, 285, 124 ], [ 292, 99, 343, 124 ], [ 350, 99, 481, 124 ], [ 488, 99, 537, 124 ], [ 544, 99, 620, 124 ], [ 627, 99, 674, 124 ], [ 681, 99, 792, 124 ], [ 799, 99, 837, 124 ], [ 153, 131, 266, 157 ], [ 273, 131, 295, 157 ], [ 302, 131, 392, 157 ], [ 398, 131, 511, 157 ], [ 153, 164, 194, 189 ], [ 201, 164, 291, 189 ], [ 297, 164, 343, 189 ], [ 350, 164, 368, 189 ], [ 375, 164, 417, 189 ], [ 423, 164, 459, 189 ], [ 466, 167, 479, 188 ], [ 493, 164, 600, 189 ], [ 607, 164, 728, 189 ], [ 735, 164, 811, 189 ], [ 818, 164, 839, 189 ], [ 153, 197, 186, 222 ], [ 192, 197, 273, 222 ], [ 279, 197, 299, 222 ], [ 306, 197, 409, 222 ], [ 153, 232, 166, 255 ], [ 173, 230, 188, 255 ], [ 195, 230, 217, 255 ], [ 224, 230, 239, 255 ], [ 246, 230, 302, 255 ], [ 309, 230, 369, 255 ], [ 382, 230, 421, 255 ], [ 428, 230, 461, 255 ], [ 467, 230, 609, 255 ], [ 616, 232, 626, 255 ], [ 633, 230, 763, 255 ], [ 770, 230, 791, 255 ], [ 797, 230, 830, 255 ], [ 153, 262, 239, 288 ], [ 246, 262, 267, 288 ], [ 274, 262, 307, 288 ], [ 313, 262, 394, 288 ], [ 400, 262, 487, 288 ], [ 494, 262, 516, 288 ], [ 523, 262, 556, 288 ], [ 562, 262, 609, 288 ], [ 153, 295, 190, 321 ], [ 197, 295, 234, 321 ], [ 241, 295, 297, 321 ], [ 304, 295, 337, 321 ], [ 344, 295, 433, 321 ], [ 440, 295, 498, 321 ], [ 505, 295, 538, 321 ], [ 544, 295, 648, 321 ], [ 213, 328, 244, 353 ], [ 213, 361, 244, 386 ], [ 213, 394, 244, 419 ], [ 213, 426, 244, 452 ], [ 213, 459, 244, 485 ], [ 153, 493, 208, 519 ], [ 215, 493, 246, 519 ], [ 153, 560, 217, 585 ], [ 223, 560, 280, 585 ], [ 300, 562, 308, 585 ], [ 315, 560, 330, 585 ], [ 336, 560, 350, 585 ], [ 370, 562, 381, 585 ], [ 387, 560, 402, 585 ], [ 409, 560, 422, 585 ], [ 443, 562, 456, 585 ], [ 463, 560, 478, 585 ], [ 485, 560, 498, 585 ], [ 518, 562, 532, 585 ], [ 538, 562, 557, 585 ], [ 563, 562, 586, 585 ], [ 592, 560, 608, 585 ], [ 614, 560, 670, 585 ], [ 677, 560, 737, 585 ], [ 153, 627, 208, 652 ], [ 215, 627, 264, 652 ], [ 270, 627, 329, 652 ], [ 335, 629, 343, 652 ], [ 350, 627, 365, 652 ], [ 372, 627, 419, 652 ], [ 426, 627, 443, 652 ], [ 450, 629, 461, 652 ], [ 467, 627, 482, 652 ], [ 489, 627, 501, 652 ], [ 508, 627, 529, 652 ], [ 549, 629, 561, 652 ], [ 568, 627, 583, 652 ], [ 589, 627, 601, 652 ], [ 609, 627, 669, 652 ], [ 153, 695, 214, 720 ], [ 153, 762, 214, 788 ], [ 153, 830, 208, 855 ], [ 215, 830, 264, 855 ], [ 270, 830, 329, 855 ], [ 335, 832, 346, 855 ], [ 353, 830, 368, 855 ], [ 375, 830, 431, 855 ], [ 438, 830, 458, 855 ], [ 465, 830, 496, 855 ], [ 503, 830, 543, 855 ], [ 550, 830, 620, 855 ], [ 627, 830, 720, 855 ], [ 740, 832, 752, 855 ], [ 759, 830, 774, 855 ], [ 780, 830, 792, 855 ], [ 307, 865, 315, 888 ], [ 321, 863, 336, 888 ], [ 343, 863, 355, 888 ], [ 362, 863, 373, 888 ] ]
Unit vectors Specify the units Physical Symbol Scalar S.I. Other quantity vector unit units time minute scalar: second hour s day year time interval minute scalar: second hour s day year distance scalar: metre mm travelled m km displacement mm (position vector m km vector) average speed scalar: m.s-1 km.h-1 speed scalar: m.s-1 km.h-1 (instantaneous) average vector m.s-1 km.h-1 velocity velocity vector m.s-1 km.h-1 (instantaneous) average vector m.s-2 acceleration acceleration vector m.s-2
Unit vectors Specify the units Physical quantity Symbol Scalar vector S.I. unit Other units time scalar: second s minute hour day year time interval scalar: second s minute hour day year distance travelled scalar: metre m mm km displacement (position vector) vector m mm km average speed scalar: m.s-1 km.h-1 speed (instantaneous) scalar: m.s-1 km.h-1 average velocity vector m.s-1 km.h-1 velocity (instantaneous) vector m.s-1 km.h-1 average acceleration vector m.s-2 acceleration vector m.s-2
0.355998
[ 0, 1, 2, 3, 4, 5, 10, 6, 7, 11, 8, 12, 9, 13, 14, 16, 17, 19, 15, 18, 20, 21, 22, 23, 25, 26, 28, 24, 27, 29, 30, 31, 35, 32, 33, 36, 34, 37, 38, 40, 44, 41, 42, 39, 43, 45, 46, 47, 48, 49, 50, 54, 51, 52, 53, 55, 59, 56, 57, 58, 60, 64, 61, 62, 63, 65, 68, 66, 67, 69, 70, 71 ]
m1_B.docx
task-1431-394
1
[ [ 178, 64, 226, 89 ], [ 233, 64, 310, 89 ], [ 178, 108, 260, 133 ], [ 267, 108, 300, 133 ], [ 307, 108, 359, 133 ], [ 185, 241, 278, 259 ], [ 339, 241, 422, 259 ], [ 462, 241, 532, 259 ], [ 588, 241, 628, 259 ], [ 687, 241, 751, 259 ], [ 184, 267, 279, 285 ], [ 461, 267, 532, 285 ], [ 586, 267, 631, 285 ], [ 691, 267, 747, 285 ], [ 152, 294, 196, 311 ], [ 684, 294, 754, 311 ], [ 462, 320, 531, 337 ], [ 573, 320, 644, 337 ], [ 696, 320, 742, 337 ], [ 603, 346, 614, 363 ], [ 701, 346, 737, 363 ], [ 697, 372, 742, 389 ], [ 152, 399, 196, 416 ], [ 204, 399, 280, 416 ], [ 684, 399, 754, 416 ], [ 462, 425, 531, 442 ], [ 573, 425, 644, 442 ], [ 696, 425, 742, 442 ], [ 603, 450, 614, 468 ], [ 701, 450, 737, 468 ], [ 697, 477, 742, 494 ], [ 152, 503, 235, 520 ], [ 462, 503, 531, 520 ], [ 578, 503, 638, 520 ], [ 700, 503, 739, 520 ], [ 152, 529, 240, 546 ], [ 599, 529, 618, 546 ], [ 704, 529, 735, 546 ], [ 152, 556, 285, 573 ], [ 700, 569, 739, 586 ], [ 152, 582, 240, 599 ], [ 465, 582, 528, 599 ], [ 599, 582, 618, 599 ], [ 704, 595, 735, 612 ], [ 152, 608, 224, 625 ], [ 152, 634, 233, 652 ], [ 240, 634, 300, 652 ], [ 462, 634, 531, 652 ], [ 579, 647, 638, 664 ], [ 683, 647, 756, 664 ], [ 152, 687, 211, 704 ], [ 462, 687, 531, 704 ], [ 579, 700, 638, 717 ], [ 683, 700, 756, 717 ], [ 152, 713, 312, 730 ], [ 152, 739, 233, 757 ], [ 465, 752, 528, 770 ], [ 579, 752, 638, 770 ], [ 683, 752, 756, 770 ], [ 152, 765, 229, 783 ], [ 152, 792, 229, 809 ], [ 465, 805, 528, 822 ], [ 579, 805, 638, 822 ], [ 683, 805, 756, 822 ], [ 152, 818, 312, 835 ], [ 152, 844, 233, 862 ], [ 465, 857, 528, 875 ], [ 579, 857, 638, 875 ], [ 152, 870, 273, 888 ], [ 152, 897, 273, 914 ], [ 465, 897, 528, 914 ], [ 579, 897, 638, 914 ] ]
[ [ 178, 64, 226, 89 ], [ 233, 64, 310, 89 ], [ 178, 108, 260, 133 ], [ 267, 108, 300, 133 ], [ 307, 108, 359, 133 ], [ 185, 241, 278, 259 ], [ 184, 267, 279, 285 ], [ 339, 241, 422, 259 ], [ 462, 241, 532, 259 ], [ 461, 267, 532, 285 ], [ 588, 241, 628, 259 ], [ 586, 267, 631, 285 ], [ 687, 241, 751, 259 ], [ 691, 267, 747, 285 ], [ 152, 294, 196, 311 ], [ 462, 320, 531, 337 ], [ 573, 320, 644, 337 ], [ 603, 346, 614, 363 ], [ 684, 294, 754, 311 ], [ 696, 320, 742, 337 ], [ 701, 346, 737, 363 ], [ 697, 372, 742, 389 ], [ 152, 399, 196, 416 ], [ 204, 399, 280, 416 ], [ 462, 425, 531, 442 ], [ 573, 425, 644, 442 ], [ 603, 450, 614, 468 ], [ 684, 399, 754, 416 ], [ 696, 425, 742, 442 ], [ 701, 450, 737, 468 ], [ 697, 477, 742, 494 ], [ 152, 503, 235, 520 ], [ 152, 529, 240, 546 ], [ 462, 503, 531, 520 ], [ 578, 503, 638, 520 ], [ 599, 529, 618, 546 ], [ 700, 503, 739, 520 ], [ 704, 529, 735, 546 ], [ 152, 556, 285, 573 ], [ 152, 582, 240, 599 ], [ 152, 608, 224, 625 ], [ 465, 582, 528, 599 ], [ 599, 582, 618, 599 ], [ 700, 569, 739, 586 ], [ 704, 595, 735, 612 ], [ 152, 634, 233, 652 ], [ 240, 634, 300, 652 ], [ 462, 634, 531, 652 ], [ 579, 647, 638, 664 ], [ 683, 647, 756, 664 ], [ 152, 687, 211, 704 ], [ 152, 713, 312, 730 ], [ 462, 687, 531, 704 ], [ 579, 700, 638, 717 ], [ 683, 700, 756, 717 ], [ 152, 739, 233, 757 ], [ 152, 765, 229, 783 ], [ 465, 752, 528, 770 ], [ 579, 752, 638, 770 ], [ 683, 752, 756, 770 ], [ 152, 792, 229, 809 ], [ 152, 818, 312, 835 ], [ 465, 805, 528, 822 ], [ 579, 805, 638, 822 ], [ 683, 805, 756, 822 ], [ 152, 844, 233, 862 ], [ 152, 870, 273, 888 ], [ 465, 857, 528, 875 ], [ 579, 857, 638, 875 ], [ 152, 897, 273, 914 ], [ 465, 897, 528, 914 ], [ 579, 897, 638, 914 ] ]
average speed S.I. units average velocity N.B. very different values for the average speed and average velocity. Often the same symbol is used for speed and velocity. You always need to state whether the symbol represents the speed or velocity. Our tram speeds up continually until it reaches the Origin, it then slows down and stops at the right end of the track. In the return journey, it continually speeds up until it reaches the Origin it then slows down and stops at the left end of the track. The speed and velocity are always changing. Hence, it is more useful to talk around instantaneous values rather than average values. The instantaneous velocity is a vector quantity whose magnitude is equal to the instantaneous speed and who instantaneous direction is in the same sense to that in which the particle is moving at that instant. The velocity vector is always tangential to the trajectory of the particle at that instant. Remember, speed and velocity are
average speed S.I. units average velocity N.B. very different values for the average speed and average velocity. Often the same symbol is used for speed and velocity. You always need to state whether the symbol represents the speed or velocity. Our tram speeds up continually until it reaches the Origin, it then slows down and stops at the right end of the track. In the return journey, it continually speeds up until it reaches the Origin it then slows down and stops at the left end of the track. The speed and velocity are always changing. Hence, it is more useful to talk around instantaneous values rather than average values. The instantaneous velocity is a vector quantity whose magnitude is equal to the instantaneous speed and who instantaneous direction is in the same sense to that in which the particle is moving at that instant. The velocity vector is always tangential to the trajectory of the particle at that instant. Remember, speed and velocity are
1
[ 0, 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 ]
m1_dva.docx
task-1431-401
4
[ [ 142, 64, 226, 89 ], [ 233, 64, 294, 89 ], [ 257, 132, 294, 157 ], [ 301, 132, 353, 157 ], [ 142, 199, 226, 224 ], [ 233, 199, 319, 224 ], [ 203, 336, 254, 362 ], [ 267, 336, 315, 362 ], [ 321, 336, 414, 362 ], [ 421, 336, 490, 362 ], [ 496, 336, 528, 362 ], [ 534, 336, 567, 362 ], [ 574, 336, 657, 362 ], [ 664, 336, 725, 362 ], [ 732, 336, 771, 362 ], [ 203, 369, 286, 394 ], [ 293, 369, 386, 394 ], [ 393, 369, 454, 394 ], [ 461, 369, 494, 394 ], [ 501, 369, 556, 394 ], [ 562, 369, 641, 394 ], [ 648, 369, 666, 394 ], [ 673, 369, 722, 394 ], [ 729, 369, 761, 394 ], [ 203, 402, 264, 427 ], [ 271, 402, 310, 427 ], [ 316, 402, 410, 427 ], [ 416, 402, 462, 427 ], [ 469, 402, 544, 427 ], [ 551, 402, 601, 427 ], [ 608, 402, 629, 427 ], [ 636, 402, 685, 427 ], [ 203, 435, 289, 460 ], [ 296, 435, 329, 460 ], [ 336, 435, 415, 460 ], [ 422, 435, 530, 460 ], [ 537, 435, 570, 460 ], [ 577, 435, 638, 460 ], [ 645, 435, 667, 460 ], [ 674, 435, 767, 460 ], [ 142, 570, 184, 595 ], [ 191, 570, 240, 595 ], [ 247, 570, 318, 595 ], [ 325, 570, 352, 595 ], [ 359, 570, 480, 595 ], [ 486, 570, 536, 595 ], [ 543, 570, 558, 595 ], [ 564, 570, 645, 595 ], [ 652, 570, 684, 595 ], [ 691, 570, 768, 595 ], [ 775, 570, 790, 595 ], [ 796, 570, 843, 595 ], [ 142, 603, 204, 628 ], [ 210, 603, 270, 628 ], [ 277, 603, 316, 628 ], [ 323, 603, 378, 628 ], [ 385, 603, 404, 628 ], [ 411, 603, 443, 628 ], [ 450, 603, 501, 628 ], [ 508, 603, 546, 628 ], [ 553, 603, 576, 628 ], [ 582, 603, 615, 628 ], [ 622, 603, 682, 628 ], [ 689, 603, 711, 628 ], [ 718, 603, 751, 628 ], [ 758, 603, 822, 628 ], [ 142, 635, 231, 661 ], [ 238, 635, 253, 661 ], [ 260, 635, 380, 661 ], [ 387, 635, 458, 661 ], [ 465, 635, 492, 661 ], [ 499, 635, 548, 661 ], [ 555, 635, 570, 661 ], [ 577, 635, 657, 661 ], [ 664, 635, 697, 661 ], [ 704, 635, 774, 661 ], [ 781, 635, 796, 661 ], [ 802, 635, 849, 661 ], [ 142, 668, 204, 693 ], [ 210, 668, 270, 693 ], [ 277, 668, 316, 693 ], [ 323, 668, 378, 693 ], [ 385, 668, 404, 693 ], [ 411, 668, 443, 693 ], [ 450, 668, 486, 693 ], [ 493, 668, 531, 693 ], [ 538, 668, 561, 693 ], [ 567, 668, 600, 693 ], [ 607, 668, 667, 693 ], [ 674, 668, 716, 693 ], [ 722, 668, 784, 693 ], [ 790, 668, 829, 693 ], [ 142, 701, 229, 726 ], [ 236, 701, 268, 726 ], [ 275, 701, 350, 726 ], [ 357, 701, 462, 726 ], [ 468, 701, 544, 726 ], [ 551, 701, 566, 726 ], [ 572, 701, 590, 726 ], [ 597, 701, 652, 726 ], [ 659, 701, 725, 726 ], [ 731, 701, 752, 726 ], [ 759, 701, 799, 726 ], [ 142, 734, 217, 759 ], [ 224, 734, 382, 760 ], [ 389, 734, 457, 759 ], [ 464, 734, 527, 759 ], [ 533, 734, 580, 759 ], [ 587, 734, 670, 759 ], [ 677, 734, 752, 759 ], [ 759, 734, 800, 759 ], [ 142, 767, 289, 792 ], [ 296, 767, 382, 792 ], [ 395, 767, 413, 792 ], [ 420, 767, 432, 792 ], [ 439, 767, 506, 792 ], [ 513, 767, 601, 792 ], [ 607, 767, 676, 792 ], [ 683, 767, 796, 792 ], [ 803, 767, 821, 792 ], [ 142, 799, 201, 825 ], [ 207, 799, 228, 825 ], [ 235, 799, 268, 825 ], [ 274, 799, 421, 825 ], [ 428, 799, 489, 825 ], [ 502, 799, 541, 825 ], [ 548, 799, 594, 825 ], [ 601, 799, 747, 825 ], [ 754, 799, 849, 825 ], [ 142, 832, 160, 857 ], [ 167, 832, 188, 857 ], [ 195, 832, 227, 857 ], [ 234, 832, 289, 857 ], [ 296, 832, 354, 857 ], [ 361, 832, 382, 857 ], [ 389, 832, 429, 857 ], [ 436, 832, 457, 857 ], [ 463, 832, 529, 857 ], [ 536, 832, 569, 857 ], [ 576, 832, 656, 857 ], [ 663, 832, 680, 857 ], [ 688, 832, 770, 857 ], [ 777, 832, 796, 857 ], [ 803, 832, 843, 857 ], [ 142, 865, 221, 890 ], [ 228, 865, 269, 890 ], [ 276, 865, 363, 890 ], [ 369, 865, 436, 890 ], [ 443, 865, 461, 890 ], [ 468, 865, 542, 890 ], [ 549, 865, 655, 890 ], [ 662, 865, 683, 890 ], [ 690, 865, 722, 890 ], [ 729, 865, 832, 890 ], [ 142, 898, 165, 923 ], [ 172, 898, 205, 923 ], [ 211, 898, 292, 923 ], [ 298, 898, 318, 923 ], [ 324, 898, 365, 923 ], [ 371, 898, 450, 923 ], [ 457, 898, 581, 923 ], [ 588, 898, 649, 923 ], [ 656, 898, 695, 923 ], [ 701, 898, 788, 923 ], [ 795, 898, 828, 923 ] ]
[ [ 142, 64, 226, 89 ], [ 233, 64, 294, 89 ], [ 257, 132, 294, 157 ], [ 301, 132, 353, 157 ], [ 142, 199, 226, 224 ], [ 233, 199, 319, 224 ], [ 203, 336, 254, 362 ], [ 267, 336, 315, 362 ], [ 321, 336, 414, 362 ], [ 421, 336, 490, 362 ], [ 496, 336, 528, 362 ], [ 534, 336, 567, 362 ], [ 574, 336, 657, 362 ], [ 664, 336, 725, 362 ], [ 732, 336, 771, 362 ], [ 203, 369, 286, 394 ], [ 293, 369, 386, 394 ], [ 393, 369, 454, 394 ], [ 461, 369, 494, 394 ], [ 501, 369, 556, 394 ], [ 562, 369, 641, 394 ], [ 648, 369, 666, 394 ], [ 673, 369, 722, 394 ], [ 729, 369, 761, 394 ], [ 203, 402, 264, 427 ], [ 271, 402, 310, 427 ], [ 316, 402, 410, 427 ], [ 416, 402, 462, 427 ], [ 469, 402, 544, 427 ], [ 551, 402, 601, 427 ], [ 608, 402, 629, 427 ], [ 636, 402, 685, 427 ], [ 203, 435, 289, 460 ], [ 296, 435, 329, 460 ], [ 336, 435, 415, 460 ], [ 422, 435, 530, 460 ], [ 537, 435, 570, 460 ], [ 577, 435, 638, 460 ], [ 645, 435, 667, 460 ], [ 674, 435, 767, 460 ], [ 142, 570, 184, 595 ], [ 191, 570, 240, 595 ], [ 247, 570, 318, 595 ], [ 325, 570, 352, 595 ], [ 359, 570, 480, 595 ], [ 486, 570, 536, 595 ], [ 543, 570, 558, 595 ], [ 564, 570, 645, 595 ], [ 652, 570, 684, 595 ], [ 691, 570, 768, 595 ], [ 775, 570, 790, 595 ], [ 796, 570, 843, 595 ], [ 142, 603, 204, 628 ], [ 210, 603, 270, 628 ], [ 277, 603, 316, 628 ], [ 323, 603, 378, 628 ], [ 385, 603, 404, 628 ], [ 411, 603, 443, 628 ], [ 450, 603, 501, 628 ], [ 508, 603, 546, 628 ], [ 553, 603, 576, 628 ], [ 582, 603, 615, 628 ], [ 622, 603, 682, 628 ], [ 689, 603, 711, 628 ], [ 718, 603, 751, 628 ], [ 758, 603, 822, 628 ], [ 142, 635, 231, 661 ], [ 238, 635, 253, 661 ], [ 260, 635, 380, 661 ], [ 387, 635, 458, 661 ], [ 465, 635, 492, 661 ], [ 499, 635, 548, 661 ], [ 555, 635, 570, 661 ], [ 577, 635, 657, 661 ], [ 664, 635, 697, 661 ], [ 704, 635, 774, 661 ], [ 781, 635, 796, 661 ], [ 802, 635, 849, 661 ], [ 142, 668, 204, 693 ], [ 210, 668, 270, 693 ], [ 277, 668, 316, 693 ], [ 323, 668, 378, 693 ], [ 385, 668, 404, 693 ], [ 411, 668, 443, 693 ], [ 450, 668, 486, 693 ], [ 493, 668, 531, 693 ], [ 538, 668, 561, 693 ], [ 567, 668, 600, 693 ], [ 607, 668, 667, 693 ], [ 674, 668, 716, 693 ], [ 722, 668, 784, 693 ], [ 790, 668, 829, 693 ], [ 142, 701, 229, 726 ], [ 236, 701, 268, 726 ], [ 275, 701, 350, 726 ], [ 357, 701, 462, 726 ], [ 468, 701, 544, 726 ], [ 551, 701, 566, 726 ], [ 572, 701, 590, 726 ], [ 597, 701, 652, 726 ], [ 659, 701, 725, 726 ], [ 731, 701, 752, 726 ], [ 759, 701, 799, 726 ], [ 142, 734, 217, 759 ], [ 224, 734, 382, 760 ], [ 389, 734, 457, 759 ], [ 464, 734, 527, 759 ], [ 533, 734, 580, 759 ], [ 587, 734, 670, 759 ], [ 677, 734, 752, 759 ], [ 759, 734, 800, 759 ], [ 142, 767, 289, 792 ], [ 296, 767, 382, 792 ], [ 395, 767, 413, 792 ], [ 420, 767, 432, 792 ], [ 439, 767, 506, 792 ], [ 513, 767, 601, 792 ], [ 607, 767, 676, 792 ], [ 683, 767, 796, 792 ], [ 803, 767, 821, 792 ], [ 142, 799, 201, 825 ], [ 207, 799, 228, 825 ], [ 235, 799, 268, 825 ], [ 274, 799, 421, 825 ], [ 428, 799, 489, 825 ], [ 502, 799, 541, 825 ], [ 548, 799, 594, 825 ], [ 601, 799, 747, 825 ], [ 754, 799, 849, 825 ], [ 142, 832, 160, 857 ], [ 167, 832, 188, 857 ], [ 195, 832, 227, 857 ], [ 234, 832, 289, 857 ], [ 296, 832, 354, 857 ], [ 361, 832, 382, 857 ], [ 389, 832, 429, 857 ], [ 436, 832, 457, 857 ], [ 463, 832, 529, 857 ], [ 536, 832, 569, 857 ], [ 576, 832, 656, 857 ], [ 663, 832, 680, 857 ], [ 688, 832, 770, 857 ], [ 777, 832, 796, 857 ], [ 803, 832, 843, 857 ], [ 142, 865, 221, 890 ], [ 228, 865, 269, 890 ], [ 276, 865, 363, 890 ], [ 369, 865, 436, 890 ], [ 443, 865, 461, 890 ], [ 468, 865, 542, 890 ], [ 549, 865, 655, 890 ], [ 662, 865, 683, 890 ], [ 690, 865, 722, 890 ], [ 729, 865, 832, 890 ], [ 142, 898, 165, 923 ], [ 172, 898, 205, 923 ], [ 211, 898, 292, 923 ], [ 298, 898, 318, 923 ], [ 324, 898, 365, 923 ], [ 371, 898, 450, 923 ], [ 457, 898, 581, 923 ], [ 588, 898, 649, 923 ], [ 656, 898, 695, 923 ], [ 701, 898, 788, 923 ], [ 795, 898, 828, 923 ] ]
required required Not Not Olive oil, crude T2 None Deleted APVMA required required Not Not Olives T1 None Deleted APVMA required required Peppers None T0.1 New APVMA 14% 4% Persimmon, None 0.5 New APVMA 6% 2% American Potato None *0.01 New APVMA 3% 1% Not Not Pulses 0.1 None Deleted APVMA required required Root and tuber Not Not *0.01 None Deleted APVMA vegetables required required Not Not Strawberry *0.01 None Deleted APVMA required required Vegetables [except garlic; lettuce, head; Not Not 0.1 None Deleted APVMA lettuce, leaf; onion, required required bulb; root and tuber vegetables] Methomyl 44% Not Not Blackberries 2 None Deleted APVMA required required Not Not Coffee beans T1 None Deleted APVMA required required Not Not Fig T0.7 None Deleted APVMA required required Fruiting vegetables, other than cucurbits Not Not None 1 New APVMA [except peppers; required required sweet corn Fruiting vegetables, other Not Not 1 None Deleted APVMA than cucurbits required required [except peppers]
required required Olive oil, crude T2 None Deleted APVMA Not required Not required Olives T1 None Deleted APVMA Not required Not required Peppers None T0.1 New APVMA 14% 4% Persimmon, American None 0.5 New APVMA 6% 2% Potato None *0.01 New APVMA 3% 1% Pulses 0.1 None Deleted APVMA Not required Not required Root and tuber vegetables *0.01 None Deleted APVMA Not required Not required Strawberry *0.01 None Deleted APVMA Not required Not required Vegetables [except garlic; lettuce, head; lettuce, leaf; onion, bulb; root and tuber vegetables] 0.1 None Deleted APVMA Not required Not required Methomyl 44% Blackberries 2 None Deleted APVMA Not required Not required Coffee beans T1 None Deleted APVMA Not required Not required Fig T0.7 None Deleted APVMA Not required Not required Fruiting vegetables, other than cucurbits [except peppers; sweet corn None 1 New APVMA Not required Not required Fruiting vegetables, other than cucurbits [except peppers] 1 None Deleted APVMA Not required Not required
0.511376
[ 0, 1, 4, 5, 6, 7, 8, 9, 10, 2, 11, 3, 12, 15, 16, 17, 18, 19, 13, 20, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 36, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40, 41, 42, 43, 46, 47, 48, 49, 50, 44, 51, 45, 52, 53, 54, 55, 62, 58, 59, 60, 61, 56, 63, 57, 64, 67, 68, 69, 70, 71, 65, 72, 66, 73, 74, 75, 76, 77, 78, 85, 86, 87, 90, 91, 92, 93, 94, 81, 82, 83, 84, 79, 88, 80, 89, 95, 96, 99, 100, 101, 102, 103, 97, 104, 98, 105, 108, 109, 110, 111, 112, 113, 106, 114, 107, 115, 118, 119, 120, 121, 122, 116, 123, 117, 124, 125, 126, 127, 128, 129, 136, 137, 140, 141, 132, 133, 134, 135, 130, 138, 131, 139, 142, 143, 144, 151, 152, 155, 156, 147, 148, 149, 150, 145, 153, 146, 154 ]
M1015_Supporting%20Document%201.docx
task-1431-41
19
[ [ 810, 197, 850, 218 ], [ 871, 197, 910, 218 ], [ 822, 215, 838, 236 ], [ 882, 215, 899, 236 ], [ 107, 224, 131, 245 ], [ 134, 224, 148, 245 ], [ 151, 224, 178, 245 ], [ 232, 224, 244, 245 ], [ 292, 224, 318, 245 ], [ 357, 224, 394, 245 ], [ 428, 224, 466, 245 ], [ 810, 233, 850, 253 ], [ 871, 233, 910, 253 ], [ 822, 251, 838, 272 ], [ 882, 251, 899, 272 ], [ 107, 260, 137, 280 ], [ 232, 260, 244, 280 ], [ 292, 260, 318, 280 ], [ 357, 260, 394, 280 ], [ 428, 260, 466, 280 ], [ 810, 268, 850, 289 ], [ 871, 268, 910, 289 ], [ 107, 287, 147, 307 ], [ 225, 287, 251, 307 ], [ 294, 287, 316, 307 ], [ 365, 287, 386, 307 ], [ 428, 287, 466, 307 ], [ 819, 287, 841, 307 ], [ 882, 287, 898, 307 ], [ 107, 305, 164, 326 ], [ 225, 314, 251, 334 ], [ 298, 314, 313, 334 ], [ 365, 314, 386, 334 ], [ 428, 314, 466, 334 ], [ 822, 314, 838, 334 ], [ 882, 314, 898, 334 ], [ 107, 322, 152, 343 ], [ 107, 341, 138, 361 ], [ 225, 341, 251, 361 ], [ 293, 341, 318, 361 ], [ 365, 341, 386, 361 ], [ 428, 341, 466, 361 ], [ 822, 341, 838, 361 ], [ 882, 341, 898, 361 ], [ 822, 359, 838, 379 ], [ 882, 359, 899, 379 ], [ 107, 367, 139, 388 ], [ 230, 367, 245, 388 ], [ 292, 367, 318, 388 ], [ 357, 367, 394, 388 ], [ 428, 367, 466, 388 ], [ 810, 376, 850, 397 ], [ 871, 376, 910, 397 ], [ 107, 394, 130, 415 ], [ 133, 394, 150, 415 ], [ 153, 394, 178, 415 ], [ 822, 394, 838, 415 ], [ 882, 394, 899, 415 ], [ 225, 403, 250, 424 ], [ 292, 403, 318, 424 ], [ 357, 403, 394, 424 ], [ 428, 403, 466, 424 ], [ 107, 412, 159, 432 ], [ 810, 412, 850, 432 ], [ 871, 412, 910, 432 ], [ 822, 430, 838, 451 ], [ 882, 430, 899, 451 ], [ 107, 438, 159, 459 ], [ 225, 438, 250, 459 ], [ 292, 438, 318, 459 ], [ 357, 438, 394, 459 ], [ 428, 438, 466, 459 ], [ 810, 447, 850, 468 ], [ 871, 447, 910, 468 ], [ 107, 465, 160, 486 ], [ 107, 483, 141, 504 ], [ 144, 483, 173, 504 ], [ 107, 500, 142, 521 ], [ 144, 500, 171, 521 ], [ 822, 500, 838, 521 ], [ 882, 500, 899, 521 ], [ 230, 509, 245, 530 ], [ 292, 509, 318, 530 ], [ 357, 509, 394, 530 ], [ 428, 509, 466, 530 ], [ 107, 518, 142, 539 ], [ 144, 518, 165, 539 ], [ 168, 518, 197, 539 ], [ 810, 518, 850, 539 ], [ 871, 518, 910, 539 ], [ 107, 535, 130, 556 ], [ 133, 535, 152, 556 ], [ 155, 535, 173, 556 ], [ 107, 552, 131, 573 ], [ 135, 552, 189, 573 ], [ 89, 570, 145, 593 ], [ 760, 572, 782, 592 ], [ 822, 591, 838, 612 ], [ 882, 591, 899, 612 ], [ 107, 600, 166, 620 ], [ 235, 600, 241, 620 ], [ 292, 600, 318, 620 ], [ 357, 600, 394, 620 ], [ 428, 600, 466, 620 ], [ 810, 608, 850, 629 ], [ 871, 608, 910, 629 ], [ 822, 626, 838, 647 ], [ 882, 626, 899, 647 ], [ 107, 635, 139, 656 ], [ 142, 635, 171, 656 ], [ 232, 635, 244, 656 ], [ 292, 635, 318, 656 ], [ 357, 635, 394, 656 ], [ 428, 635, 466, 656 ], [ 810, 644, 850, 664 ], [ 871, 644, 910, 664 ], [ 822, 662, 838, 683 ], [ 882, 662, 899, 683 ], [ 107, 671, 122, 691 ], [ 227, 671, 248, 691 ], [ 292, 671, 318, 691 ], [ 357, 671, 394, 691 ], [ 428, 671, 466, 691 ], [ 810, 679, 850, 700 ], [ 871, 679, 910, 700 ], [ 107, 698, 143, 719 ], [ 107, 715, 162, 736 ], [ 165, 715, 189, 736 ], [ 107, 732, 128, 753 ], [ 131, 732, 174, 753 ], [ 822, 732, 838, 753 ], [ 882, 732, 899, 753 ], [ 225, 741, 251, 762 ], [ 302, 741, 308, 762 ], [ 365, 741, 386, 762 ], [ 428, 741, 466, 762 ], [ 107, 750, 141, 771 ], [ 144, 750, 186, 771 ], [ 810, 750, 850, 771 ], [ 871, 750, 910, 771 ], [ 107, 767, 135, 788 ], [ 138, 767, 159, 788 ], [ 107, 803, 143, 824 ], [ 107, 820, 162, 841 ], [ 165, 820, 189, 841 ], [ 822, 820, 838, 841 ], [ 882, 820, 899, 841 ], [ 235, 829, 241, 850 ], [ 292, 829, 318, 850 ], [ 357, 829, 394, 850 ], [ 428, 829, 466, 850 ], [ 107, 838, 128, 858 ], [ 131, 838, 174, 858 ], [ 810, 838, 850, 858 ], [ 871, 838, 910, 858 ], [ 107, 855, 141, 876 ], [ 144, 855, 186, 876 ] ]
[ [ 810, 197, 850, 218 ], [ 871, 197, 910, 218 ], [ 107, 224, 131, 245 ], [ 134, 224, 148, 245 ], [ 151, 224, 178, 245 ], [ 232, 224, 244, 245 ], [ 292, 224, 318, 245 ], [ 357, 224, 394, 245 ], [ 428, 224, 466, 245 ], [ 822, 215, 838, 236 ], [ 810, 233, 850, 253 ], [ 882, 215, 899, 236 ], [ 871, 233, 910, 253 ], [ 107, 260, 137, 280 ], [ 232, 260, 244, 280 ], [ 292, 260, 318, 280 ], [ 357, 260, 394, 280 ], [ 428, 260, 466, 280 ], [ 822, 251, 838, 272 ], [ 810, 268, 850, 289 ], [ 882, 251, 899, 272 ], [ 871, 268, 910, 289 ], [ 107, 287, 147, 307 ], [ 225, 287, 251, 307 ], [ 294, 287, 316, 307 ], [ 365, 287, 386, 307 ], [ 428, 287, 466, 307 ], [ 819, 287, 841, 307 ], [ 882, 287, 898, 307 ], [ 107, 305, 164, 326 ], [ 107, 322, 152, 343 ], [ 225, 314, 251, 334 ], [ 298, 314, 313, 334 ], [ 365, 314, 386, 334 ], [ 428, 314, 466, 334 ], [ 822, 314, 838, 334 ], [ 882, 314, 898, 334 ], [ 107, 341, 138, 361 ], [ 225, 341, 251, 361 ], [ 293, 341, 318, 361 ], [ 365, 341, 386, 361 ], [ 428, 341, 466, 361 ], [ 822, 341, 838, 361 ], [ 882, 341, 898, 361 ], [ 107, 367, 139, 388 ], [ 230, 367, 245, 388 ], [ 292, 367, 318, 388 ], [ 357, 367, 394, 388 ], [ 428, 367, 466, 388 ], [ 822, 359, 838, 379 ], [ 810, 376, 850, 397 ], [ 882, 359, 899, 379 ], [ 871, 376, 910, 397 ], [ 107, 394, 130, 415 ], [ 133, 394, 150, 415 ], [ 153, 394, 178, 415 ], [ 107, 412, 159, 432 ], [ 225, 403, 250, 424 ], [ 292, 403, 318, 424 ], [ 357, 403, 394, 424 ], [ 428, 403, 466, 424 ], [ 822, 394, 838, 415 ], [ 810, 412, 850, 432 ], [ 882, 394, 899, 415 ], [ 871, 412, 910, 432 ], [ 107, 438, 159, 459 ], [ 225, 438, 250, 459 ], [ 292, 438, 318, 459 ], [ 357, 438, 394, 459 ], [ 428, 438, 466, 459 ], [ 822, 430, 838, 451 ], [ 810, 447, 850, 468 ], [ 882, 430, 899, 451 ], [ 871, 447, 910, 468 ], [ 107, 465, 160, 486 ], [ 107, 483, 141, 504 ], [ 144, 483, 173, 504 ], [ 107, 500, 142, 521 ], [ 144, 500, 171, 521 ], [ 107, 518, 142, 539 ], [ 144, 518, 165, 539 ], [ 168, 518, 197, 539 ], [ 107, 535, 130, 556 ], [ 133, 535, 152, 556 ], [ 155, 535, 173, 556 ], [ 107, 552, 131, 573 ], [ 135, 552, 189, 573 ], [ 230, 509, 245, 530 ], [ 292, 509, 318, 530 ], [ 357, 509, 394, 530 ], [ 428, 509, 466, 530 ], [ 822, 500, 838, 521 ], [ 810, 518, 850, 539 ], [ 882, 500, 899, 521 ], [ 871, 518, 910, 539 ], [ 89, 570, 145, 593 ], [ 760, 572, 782, 592 ], [ 107, 600, 166, 620 ], [ 235, 600, 241, 620 ], [ 292, 600, 318, 620 ], [ 357, 600, 394, 620 ], [ 428, 600, 466, 620 ], [ 822, 591, 838, 612 ], [ 810, 608, 850, 629 ], [ 882, 591, 899, 612 ], [ 871, 608, 910, 629 ], [ 107, 635, 139, 656 ], [ 142, 635, 171, 656 ], [ 232, 635, 244, 656 ], [ 292, 635, 318, 656 ], [ 357, 635, 394, 656 ], [ 428, 635, 466, 656 ], [ 822, 626, 838, 647 ], [ 810, 644, 850, 664 ], [ 882, 626, 899, 647 ], [ 871, 644, 910, 664 ], [ 107, 671, 122, 691 ], [ 227, 671, 248, 691 ], [ 292, 671, 318, 691 ], [ 357, 671, 394, 691 ], [ 428, 671, 466, 691 ], [ 822, 662, 838, 683 ], [ 810, 679, 850, 700 ], [ 882, 662, 899, 683 ], [ 871, 679, 910, 700 ], [ 107, 698, 143, 719 ], [ 107, 715, 162, 736 ], [ 165, 715, 189, 736 ], [ 107, 732, 128, 753 ], [ 131, 732, 174, 753 ], [ 107, 750, 141, 771 ], [ 144, 750, 186, 771 ], [ 107, 767, 135, 788 ], [ 138, 767, 159, 788 ], [ 225, 741, 251, 762 ], [ 302, 741, 308, 762 ], [ 365, 741, 386, 762 ], [ 428, 741, 466, 762 ], [ 822, 732, 838, 753 ], [ 810, 750, 850, 771 ], [ 882, 732, 899, 753 ], [ 871, 750, 910, 771 ], [ 107, 803, 143, 824 ], [ 107, 820, 162, 841 ], [ 165, 820, 189, 841 ], [ 107, 838, 128, 858 ], [ 131, 838, 174, 858 ], [ 107, 855, 141, 876 ], [ 144, 855, 186, 876 ], [ 235, 829, 241, 850 ], [ 292, 829, 318, 850 ], [ 357, 829, 394, 850 ], [ 428, 829, 466, 850 ], [ 822, 820, 838, 841 ], [ 810, 838, 850, 858 ], [ 882, 820, 899, 841 ], [ 871, 838, 910, 858 ] ]
Not Not Strawberry None *0.1 New EU Strawberries Chemical not listed required. required <1%5 Not Trichlorfon required Tree nuts Not Not Macadamia nuts 0.1 Maintained APVMA 0.1 required required Not Not Tree nuts 0.1 None Deleted APVMA required required Not Tridemorph required Not Not Banana T*0.05 None Deleted APVMA required required Not Not Barley 0.1 None Deleted APVMA required required Fruiting Not Not vegetables, 0.1 None Deleted APVMA required required cucurbits Trifloxystrobin 23% Raspberries, red, Raspberries (red and Not Not None 3 New EU Commodity not listed black yellow) required required Trifluralin 9% All other foods Not Not except animal food None 0.01 New FSANZ required required commodities Not Not Almonds None 0.05 New US Nut, tree, group 14 Chemical not listed required required Not Tylosin required Not Not Fish muscle T*0.002 None Deleted APVMA required required
Strawberry None *0.1 New EU Strawberries Chemical not listed Not required Not required. <1%5 Trichlorfon Not required Macadamia nuts Tree nuts 0.1 0.1 Maintained APVMA Not required Not required Tree nuts 0.1 None Deleted APVMA Not required Not required Tridemorph Not required Banana T*0.05 None Deleted APVMA Not required Not required Barley 0.1 None Deleted APVMA Not required Not required Fruiting vegetables, cucurbits 0.1 None Deleted APVMA Not required Not required Trifloxystrobin 23% Raspberries, red, black None 3 New EU Raspberries (red and yellow) Commodity not listed Not required Not required Trifluralin 9% All other foods except animal food commodities None 0.01 New FSANZ Not required Not required Almonds None 0.05 New US Nut, tree, group 14 Chemical not listed Not required Not required Tylosin Not required Fish muscle T*0.002 None Deleted APVMA Not required Not required
0.462045
[ 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 12, 0, 11, 13, 15, 14, 16, 21, 22, 17, 18, 26, 23, 24, 25, 19, 27, 20, 28, 31, 32, 33, 34, 35, 36, 29, 37, 30, 38, 40, 39, 41, 44, 45, 46, 47, 48, 42, 49, 43, 50, 53, 54, 55, 56, 57, 51, 58, 52, 59, 60, 63, 70, 64, 65, 66, 67, 61, 68, 62, 69, 71, 72, 73, 74, 87, 80, 81, 82, 83, 75, 76, 77, 88, 84, 85, 86, 78, 89, 79, 90, 91, 92, 93, 94, 95, 98, 99, 100, 107, 101, 102, 103, 104, 96, 105, 97, 106, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 108, 122, 109, 123, 125, 124, 126, 129, 130, 131, 132, 133, 134, 127, 135, 128, 136 ]
M1015_Supporting%20Document%201.docx
task-1431-41
28
[ [ 882, 197, 899, 218 ], [ 822, 206, 838, 227 ], [ 107, 214, 159, 235 ], [ 225, 214, 251, 235 ], [ 296, 214, 315, 235 ], [ 365, 214, 386, 235 ], [ 440, 214, 455, 235 ], [ 515, 214, 575, 235 ], [ 630, 214, 675, 235 ], [ 678, 214, 693, 235 ], [ 696, 214, 721, 235 ], [ 869, 214, 911, 235 ], [ 810, 223, 850, 244 ], [ 876, 232, 904, 253 ], [ 763, 250, 780, 271 ], [ 89, 257, 152, 280 ], [ 752, 267, 791, 288 ], [ 215, 286, 237, 306 ], [ 240, 286, 260, 306 ], [ 822, 286, 838, 306 ], [ 882, 286, 899, 306 ], [ 107, 294, 162, 315 ], [ 165, 294, 185, 315 ], [ 298, 294, 313, 315 ], [ 349, 294, 402, 315 ], [ 428, 294, 466, 315 ], [ 230, 303, 245, 324 ], [ 810, 303, 850, 324 ], [ 871, 303, 910, 324 ], [ 822, 321, 838, 342 ], [ 882, 321, 899, 342 ], [ 107, 330, 129, 351 ], [ 132, 330, 152, 351 ], [ 230, 330, 245, 351 ], [ 292, 330, 318, 351 ], [ 357, 330, 394, 351 ], [ 428, 330, 466, 351 ], [ 810, 339, 850, 359 ], [ 871, 339, 910, 359 ], [ 763, 357, 780, 378 ], [ 89, 364, 155, 387 ], [ 752, 374, 791, 395 ], [ 822, 393, 838, 413 ], [ 882, 393, 899, 413 ], [ 107, 401, 144, 422 ], [ 222, 401, 253, 422 ], [ 292, 401, 318, 422 ], [ 357, 401, 394, 422 ], [ 428, 401, 466, 422 ], [ 810, 410, 850, 431 ], [ 871, 410, 910, 431 ], [ 822, 428, 838, 449 ], [ 882, 428, 899, 449 ], [ 107, 437, 137, 458 ], [ 230, 437, 245, 458 ], [ 292, 437, 318, 458 ], [ 357, 437, 394, 458 ], [ 428, 437, 466, 458 ], [ 810, 446, 850, 466 ], [ 871, 446, 910, 466 ], [ 107, 464, 143, 485 ], [ 822, 473, 838, 493 ], [ 882, 473, 899, 493 ], [ 107, 481, 162, 502 ], [ 230, 481, 245, 502 ], [ 292, 481, 318, 502 ], [ 357, 481, 394, 502 ], [ 428, 481, 466, 502 ], [ 810, 490, 850, 511 ], [ 871, 490, 910, 511 ], [ 107, 499, 150, 519 ], [ 89, 516, 172, 540 ], [ 760, 518, 782, 539 ], [ 107, 537, 168, 558 ], [ 171, 537, 189, 558 ], [ 495, 537, 552, 558 ], [ 555, 537, 575, 558 ], [ 578, 537, 595, 558 ], [ 822, 537, 838, 558 ], [ 882, 537, 899, 558 ], [ 225, 546, 251, 567 ], [ 302, 546, 308, 567 ], [ 365, 546, 386, 567 ], [ 440, 546, 455, 567 ], [ 626, 546, 680, 567 ], [ 683, 546, 698, 567 ], [ 701, 546, 726, 567 ], [ 107, 554, 132, 575 ], [ 528, 554, 562, 575 ], [ 810, 554, 850, 575 ], [ 871, 554, 910, 575 ], [ 89, 572, 144, 595 ], [ 763, 574, 779, 594 ], [ 107, 593, 119, 613 ], [ 122, 593, 146, 613 ], [ 149, 593, 175, 613 ], [ 822, 601, 838, 622 ], [ 882, 601, 899, 622 ], [ 107, 610, 138, 631 ], [ 141, 610, 173, 631 ], [ 176, 610, 197, 631 ], [ 225, 610, 251, 631 ], [ 295, 610, 316, 631 ], [ 365, 610, 386, 631 ], [ 430, 610, 465, 631 ], [ 810, 619, 850, 640 ], [ 871, 619, 910, 640 ], [ 107, 628, 167, 648 ], [ 822, 646, 838, 667 ], [ 882, 646, 899, 667 ], [ 107, 654, 149, 675 ], [ 225, 654, 251, 675 ], [ 295, 654, 316, 675 ], [ 365, 654, 386, 675 ], [ 440, 654, 455, 675 ], [ 501, 654, 520, 675 ], [ 523, 654, 545, 675 ], [ 548, 654, 575, 675 ], [ 578, 654, 590, 675 ], [ 630, 654, 675, 675 ], [ 678, 654, 693, 675 ], [ 696, 654, 721, 675 ], [ 810, 663, 850, 684 ], [ 871, 663, 910, 684 ], [ 763, 681, 780, 702 ], [ 89, 689, 131, 712 ], [ 752, 699, 791, 720 ], [ 822, 717, 838, 738 ], [ 882, 717, 899, 738 ], [ 107, 726, 127, 746 ], [ 130, 726, 164, 746 ], [ 219, 726, 256, 746 ], [ 292, 726, 318, 746 ], [ 357, 726, 394, 746 ], [ 428, 726, 466, 746 ], [ 810, 734, 850, 755 ], [ 871, 734, 910, 755 ] ]
[ [ 107, 214, 159, 235 ], [ 225, 214, 251, 235 ], [ 296, 214, 315, 235 ], [ 365, 214, 386, 235 ], [ 440, 214, 455, 235 ], [ 515, 214, 575, 235 ], [ 630, 214, 675, 235 ], [ 678, 214, 693, 235 ], [ 696, 214, 721, 235 ], [ 822, 206, 838, 227 ], [ 810, 223, 850, 244 ], [ 882, 197, 899, 218 ], [ 869, 214, 911, 235 ], [ 876, 232, 904, 253 ], [ 89, 257, 152, 280 ], [ 763, 250, 780, 271 ], [ 752, 267, 791, 288 ], [ 107, 294, 162, 315 ], [ 165, 294, 185, 315 ], [ 215, 286, 237, 306 ], [ 240, 286, 260, 306 ], [ 230, 303, 245, 324 ], [ 298, 294, 313, 315 ], [ 349, 294, 402, 315 ], [ 428, 294, 466, 315 ], [ 822, 286, 838, 306 ], [ 810, 303, 850, 324 ], [ 882, 286, 899, 306 ], [ 871, 303, 910, 324 ], [ 107, 330, 129, 351 ], [ 132, 330, 152, 351 ], [ 230, 330, 245, 351 ], [ 292, 330, 318, 351 ], [ 357, 330, 394, 351 ], [ 428, 330, 466, 351 ], [ 822, 321, 838, 342 ], [ 810, 339, 850, 359 ], [ 882, 321, 899, 342 ], [ 871, 339, 910, 359 ], [ 89, 364, 155, 387 ], [ 763, 357, 780, 378 ], [ 752, 374, 791, 395 ], [ 107, 401, 144, 422 ], [ 222, 401, 253, 422 ], [ 292, 401, 318, 422 ], [ 357, 401, 394, 422 ], [ 428, 401, 466, 422 ], [ 822, 393, 838, 413 ], [ 810, 410, 850, 431 ], [ 882, 393, 899, 413 ], [ 871, 410, 910, 431 ], [ 107, 437, 137, 458 ], [ 230, 437, 245, 458 ], [ 292, 437, 318, 458 ], [ 357, 437, 394, 458 ], [ 428, 437, 466, 458 ], [ 822, 428, 838, 449 ], [ 810, 446, 850, 466 ], [ 882, 428, 899, 449 ], [ 871, 446, 910, 466 ], [ 107, 464, 143, 485 ], [ 107, 481, 162, 502 ], [ 107, 499, 150, 519 ], [ 230, 481, 245, 502 ], [ 292, 481, 318, 502 ], [ 357, 481, 394, 502 ], [ 428, 481, 466, 502 ], [ 822, 473, 838, 493 ], [ 810, 490, 850, 511 ], [ 882, 473, 899, 493 ], [ 871, 490, 910, 511 ], [ 89, 516, 172, 540 ], [ 760, 518, 782, 539 ], [ 107, 537, 168, 558 ], [ 171, 537, 189, 558 ], [ 107, 554, 132, 575 ], [ 225, 546, 251, 567 ], [ 302, 546, 308, 567 ], [ 365, 546, 386, 567 ], [ 440, 546, 455, 567 ], [ 495, 537, 552, 558 ], [ 555, 537, 575, 558 ], [ 578, 537, 595, 558 ], [ 528, 554, 562, 575 ], [ 626, 546, 680, 567 ], [ 683, 546, 698, 567 ], [ 701, 546, 726, 567 ], [ 822, 537, 838, 558 ], [ 810, 554, 850, 575 ], [ 882, 537, 899, 558 ], [ 871, 554, 910, 575 ], [ 89, 572, 144, 595 ], [ 763, 574, 779, 594 ], [ 107, 593, 119, 613 ], [ 122, 593, 146, 613 ], [ 149, 593, 175, 613 ], [ 107, 610, 138, 631 ], [ 141, 610, 173, 631 ], [ 176, 610, 197, 631 ], [ 107, 628, 167, 648 ], [ 225, 610, 251, 631 ], [ 295, 610, 316, 631 ], [ 365, 610, 386, 631 ], [ 430, 610, 465, 631 ], [ 822, 601, 838, 622 ], [ 810, 619, 850, 640 ], [ 882, 601, 899, 622 ], [ 871, 619, 910, 640 ], [ 107, 654, 149, 675 ], [ 225, 654, 251, 675 ], [ 295, 654, 316, 675 ], [ 365, 654, 386, 675 ], [ 440, 654, 455, 675 ], [ 501, 654, 520, 675 ], [ 523, 654, 545, 675 ], [ 548, 654, 575, 675 ], [ 578, 654, 590, 675 ], [ 630, 654, 675, 675 ], [ 678, 654, 693, 675 ], [ 696, 654, 721, 675 ], [ 822, 646, 838, 667 ], [ 810, 663, 850, 684 ], [ 882, 646, 899, 667 ], [ 871, 663, 910, 684 ], [ 89, 689, 131, 712 ], [ 763, 681, 780, 702 ], [ 752, 699, 791, 720 ], [ 107, 726, 127, 746 ], [ 130, 726, 164, 746 ], [ 219, 726, 256, 746 ], [ 292, 726, 318, 746 ], [ 357, 726, 394, 746 ], [ 428, 726, 466, 746 ], [ 822, 717, 838, 738 ], [ 810, 734, 850, 755 ], [ 882, 717, 899, 738 ], [ 871, 734, 910, 755 ] ]
Change Date June 25, 2015 a. Resolution Use the table below to resolve shipping exceptions for source material sent to for Common the scanning vendors. Exceptions Exception Type VA Action (CACI) VA Action (SMS) RMN or UPS In the CACI (Omega) portal In the Data Dimensions (dd) Tracker Tracking Keying Error/Numbers search for the record on the search for the record using the Not Found in Reconciliation tab, and Search feature, and Vendor Portal if the record does not exist if the record does not exist under under the RMN or tracking the RMN or tracking number, then number, then create a new use the Create function to enter it entry, or as a new shipment be sure to save the new entry if the record is keyed in once all the information is incorrectly, then entered, and click Shipping then Search and enter either the RMN or once entered and saved, use the tracking number as it is Search function to confirm that the currently in the system manifest entry was successfully click Search then SELECT created, or if a record exists but is next to the entry, and entered incorrectly, such as the edit the tracking number and wrong UPS tracking number being RMN fields on the right side associated with an RMN, ROs as necessary and click Update should Record. use the Search function to look up existing entries with the relevant RMN and UPS tracking number double-click on the search result update the entry to reflect the information provided in the exception description, and do use Create to try to add a not new manifest entry, as it will result in a duplicate keying error. Extra Folder Not ROs should not request the return of Determine if the Veteran's on Manifest or extra claims folder exceptions except documents should have been sent Folder does not as a last resort. The preferred method for conversion. If the Veteran have DCS. of resolution is falls within the parameters of the VBMS exclusions list, request the folder be returned to the RO. use VBMS to create a new DCS sheet(s) for the extra record(s) If there is no VBMS exclusion
Change Date June 25, 2015 a. Resolution for Common Exceptions Use the table below to resolve shipping exceptions for source material sent to the scanning vendors. Exception Type VA Action (CACI) VA Action (SMS) RMN or UPS Tracking Keying Error/Numbers Not Found in Vendor Portal In the CACI (Omega) portal search for the record on the Reconciliation tab, and if the record does not exist under the RMN or tracking number, then create a new entry, or if the record is keyed in incorrectly, then click Shipping then Search and enter either the RMN or tracking number as it is currently in the system click Search then SELECT next to the entry, and edit the tracking number and RMN fields on the right side as necessary and click Update Record. In the Data Dimensions (dd) Tracker search for the record using the Search feature, and if the record does not exist under the RMN or tracking number, then use the Create function to enter it as a new shipment be sure to save the new entry once all the information is entered, and once entered and saved, use the Search function to confirm that the manifest entry was successfully created, or if a record exists but is entered incorrectly, such as the wrong UPS tracking number being associated with an RMN, ROs should use the Search function to look up existing entries with the relevant RMN and UPS tracking number double-click on the search result update the entry to reflect the information provided in the exception description, and do not use Create to try to add a new manifest entry, as it will result in a duplicate keying error. Extra Folder Not on Manifest or Folder does not have DCS. Determine if the Veteran's documents should have been sent for conversion. If the Veteran falls within the parameters of the VBMS exclusions list, request the folder be returned to the RO. If there is no VBMS exclusion ROs should not request the return of extra claims folder exceptions except as a last resort. The preferred method of resolution is use VBMS to create a new DCS sheet(s) for the extra record(s)
0.74163
[ 0, 1, 2, 3, 4, 5, 6, 20, 21, 25, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 48, 49, 50, 63, 64, 65, 72, 73, 37, 38, 39, 40, 41, 51, 52, 53, 54, 55, 56, 66, 67, 68, 74, 75, 76, 77, 78, 79, 87, 88, 89, 90, 91, 98, 99, 100, 101, 102, 110, 111, 123, 124, 125, 126, 127, 128, 134, 135, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 154, 155, 156, 157, 158, 165, 166, 167, 168, 173, 174, 175, 176, 185, 186, 187, 188, 189, 195, 196, 197, 198, 199, 205, 206, 207, 208, 209, 210, 216, 217, 218, 219, 220, 222, 42, 43, 44, 45, 46, 47, 57, 58, 59, 60, 61, 62, 69, 70, 71, 80, 81, 82, 83, 84, 85, 86, 92, 93, 94, 95, 96, 97, 103, 104, 105, 106, 107, 108, 109, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 129, 130, 131, 132, 133, 136, 137, 148, 149, 150, 151, 152, 153, 159, 160, 161, 162, 163, 164, 169, 170, 171, 172, 177, 178, 179, 180, 181, 182, 183, 184, 190, 191, 192, 193, 194, 200, 201, 202, 203, 204, 211, 212, 213, 214, 215, 221, 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, 266, 259, 260, 261, 262, 263, 264, 265, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 293, 294, 295, 306, 307, 308, 321, 322, 289, 290, 291, 292, 301, 302, 303, 304, 305, 316, 317, 318, 319, 320, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 355, 356, 357, 358, 359, 360, 282, 283, 284, 285, 286, 287, 288, 296, 297, 298, 299, 300, 309, 310, 311, 312, 313, 314, 315, 323, 324, 325, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354 ]
M21-1III_ii_1_F.docx
task-1431-591
10
[ [ 119, 121, 178, 141 ], [ 182, 121, 218, 141 ], [ 258, 121, 294, 141 ], [ 299, 121, 324, 141 ], [ 329, 121, 368, 141 ], [ 117, 171, 131, 191 ], [ 140, 171, 222, 191 ], [ 258, 171, 289, 191 ], [ 294, 171, 318, 191 ], [ 323, 171, 361, 191 ], [ 365, 171, 413, 191 ], [ 418, 171, 434, 191 ], [ 439, 171, 495, 191 ], [ 500, 171, 568, 191 ], [ 573, 171, 656, 191 ], [ 661, 171, 684, 191 ], [ 689, 171, 740, 191 ], [ 745, 171, 809, 191 ], [ 814, 171, 846, 191 ], [ 851, 171, 866, 191 ], [ 117, 188, 140, 207 ], [ 145, 188, 216, 207 ], [ 258, 188, 282, 208 ], [ 287, 188, 357, 208 ], [ 362, 188, 429, 208 ], [ 117, 203, 201, 223 ], [ 121, 237, 205, 258 ], [ 210, 237, 253, 258 ], [ 336, 237, 365, 258 ], [ 370, 237, 425, 258 ], [ 430, 237, 493, 258 ], [ 654, 237, 682, 258 ], [ 687, 237, 742, 258 ], [ 747, 237, 800, 258 ], [ 119, 255, 163, 275 ], [ 168, 255, 184, 275 ], [ 189, 255, 225, 275 ], [ 273, 255, 289, 275 ], [ 294, 255, 318, 275 ], [ 323, 255, 370, 275 ], [ 375, 255, 445, 275 ], [ 449, 255, 495, 275 ], [ 575, 255, 591, 275 ], [ 595, 255, 619, 275 ], [ 625, 255, 661, 275 ], [ 666, 255, 760, 275 ], [ 765, 255, 798, 275 ], [ 803, 255, 863, 275 ], [ 119, 272, 189, 293 ], [ 194, 272, 252, 293 ], [ 119, 290, 237, 310 ], [ 286, 291, 336, 311 ], [ 341, 291, 364, 311 ], [ 369, 291, 393, 311 ], [ 397, 291, 448, 311 ], [ 453, 291, 472, 311 ], [ 477, 291, 501, 311 ], [ 587, 291, 637, 311 ], [ 642, 291, 665, 311 ], [ 670, 291, 694, 311 ], [ 699, 291, 749, 311 ], [ 754, 291, 796, 311 ], [ 801, 291, 825, 311 ], [ 119, 307, 148, 327 ], [ 153, 307, 203, 327 ], [ 208, 307, 223, 327 ], [ 286, 308, 400, 329 ], [ 405, 308, 434, 329 ], [ 439, 308, 467, 329 ], [ 587, 308, 641, 329 ], [ 645, 308, 705, 329 ], [ 710, 308, 738, 329 ], [ 119, 325, 177, 345 ], [ 182, 325, 229, 345 ], [ 301, 327, 313, 347 ], [ 318, 327, 342, 347 ], [ 347, 327, 397, 347 ], [ 402, 327, 438, 347 ], [ 443, 327, 468, 347 ], [ 473, 327, 510, 347 ], [ 603, 327, 615, 347 ], [ 620, 327, 644, 347 ], [ 648, 327, 698, 347 ], [ 703, 327, 739, 347 ], [ 744, 327, 769, 347 ], [ 774, 327, 811, 347 ], [ 816, 327, 861, 347 ], [ 301, 344, 346, 364 ], [ 351, 344, 375, 364 ], [ 380, 344, 424, 364 ], [ 429, 344, 446, 364 ], [ 450, 344, 515, 364 ], [ 603, 344, 627, 364 ], [ 632, 344, 676, 364 ], [ 681, 344, 698, 364 ], [ 702, 344, 767, 364 ], [ 771, 344, 836, 364 ], [ 841, 344, 875, 364 ], [ 301, 362, 366, 382 ], [ 371, 362, 405, 382 ], [ 410, 362, 456, 382 ], [ 461, 362, 470, 382 ], [ 475, 362, 508, 382 ], [ 617, 362, 643, 382 ], [ 648, 362, 672, 382 ], [ 677, 362, 728, 382 ], [ 733, 362, 798, 382 ], [ 803, 362, 818, 382 ], [ 823, 362, 863, 382 ], [ 867, 362, 878, 382 ], [ 301, 379, 346, 399 ], [ 351, 379, 368, 399 ], [ 617, 379, 633, 399 ], [ 638, 379, 647, 399 ], [ 652, 379, 684, 399 ], [ 689, 379, 761, 399 ], [ 617, 396, 635, 417 ], [ 640, 396, 673, 417 ], [ 678, 396, 693, 417 ], [ 698, 396, 733, 417 ], [ 738, 396, 762, 417 ], [ 767, 396, 799, 417 ], [ 804, 396, 845, 417 ], [ 301, 398, 313, 418 ], [ 318, 398, 342, 418 ], [ 347, 398, 397, 418 ], [ 402, 398, 415, 418 ], [ 420, 398, 467, 418 ], [ 472, 398, 487, 418 ], [ 617, 414, 654, 434 ], [ 659, 414, 678, 434 ], [ 683, 414, 707, 434 ], [ 712, 414, 805, 434 ], [ 810, 414, 823, 434 ], [ 301, 415, 391, 435 ], [ 396, 415, 430, 435 ], [ 617, 431, 679, 452 ], [ 684, 431, 713, 452 ], [ 315, 432, 353, 453 ], [ 358, 432, 429, 453 ], [ 434, 432, 468, 453 ], [ 473, 432, 526, 453 ], [ 315, 450, 344, 470 ], [ 349, 450, 388, 470 ], [ 393, 450, 437, 470 ], [ 442, 450, 466, 470 ], [ 471, 450, 516, 470 ], [ 521, 450, 537, 470 ], [ 603, 450, 640, 470 ], [ 645, 450, 702, 470 ], [ 707, 450, 735, 470 ], [ 740, 450, 790, 470 ], [ 795, 450, 821, 470 ], [ 826, 450, 850, 470 ], [ 315, 467, 380, 487 ], [ 384, 467, 444, 487 ], [ 449, 467, 466, 487 ], [ 471, 467, 482, 487 ], [ 486, 467, 500, 487 ], [ 603, 467, 656, 487 ], [ 661, 467, 726, 487 ], [ 731, 467, 746, 487 ], [ 751, 467, 814, 487 ], [ 818, 467, 848, 487 ], [ 853, 467, 877, 487 ], [ 315, 485, 386, 505 ], [ 391, 485, 406, 505 ], [ 411, 485, 435, 505 ], [ 440, 485, 494, 505 ], [ 603, 485, 670, 505 ], [ 675, 485, 716, 505 ], [ 720, 485, 751, 505 ], [ 756, 485, 852, 505 ], [ 315, 502, 353, 522 ], [ 358, 502, 412, 522 ], [ 416, 502, 450, 522 ], [ 455, 502, 527, 522 ], [ 603, 502, 664, 522 ], [ 669, 502, 685, 522 ], [ 690, 502, 702, 522 ], [ 707, 502, 716, 522 ], [ 721, 502, 771, 522 ], [ 776, 502, 821, 522 ], [ 825, 502, 851, 522 ], [ 856, 502, 869, 522 ], [ 315, 520, 349, 540 ], [ 354, 520, 370, 540 ], [ 374, 520, 398, 540 ], [ 403, 520, 448, 540 ], [ 453, 520, 481, 540 ], [ 603, 520, 660, 540 ], [ 665, 520, 755, 540 ], [ 760, 520, 796, 540 ], [ 801, 520, 817, 540 ], [ 822, 520, 846, 540 ], [ 315, 537, 345, 557 ], [ 350, 537, 374, 557 ], [ 379, 537, 443, 557 ], [ 448, 537, 508, 557 ], [ 513, 537, 541, 557 ], [ 603, 537, 653, 557 ], [ 658, 537, 694, 557 ], [ 699, 537, 763, 557 ], [ 768, 537, 828, 557 ], [ 832, 537, 876, 557 ], [ 315, 554, 360, 575 ], [ 365, 554, 409, 575 ], [ 414, 554, 433, 575 ], [ 438, 554, 462, 575 ], [ 467, 554, 504, 575 ], [ 509, 554, 540, 575 ], [ 603, 554, 683, 575 ], [ 688, 554, 723, 575 ], [ 728, 554, 746, 575 ], [ 751, 554, 801, 575 ], [ 806, 554, 841, 575 ], [ 315, 572, 332, 592 ], [ 337, 572, 413, 592 ], [ 418, 572, 446, 592 ], [ 451, 572, 489, 592 ], [ 494, 572, 551, 592 ], [ 603, 572, 655, 592 ], [ 315, 589, 377, 609 ], [ 617, 589, 643, 609 ], [ 648, 589, 672, 609 ], [ 677, 589, 730, 609 ], [ 735, 589, 800, 609 ], [ 805, 589, 821, 609 ], [ 826, 589, 860, 609 ], [ 617, 607, 636, 627 ], [ 641, 607, 704, 627 ], [ 708, 607, 761, 627 ], [ 766, 607, 800, 627 ], [ 805, 607, 829, 627 ], [ 617, 624, 680, 644 ], [ 685, 624, 729, 644 ], [ 734, 624, 763, 644 ], [ 768, 624, 804, 644 ], [ 809, 624, 873, 644 ], [ 617, 642, 677, 662 ], [ 617, 659, 715, 679 ], [ 720, 659, 739, 679 ], [ 744, 659, 768, 679 ], [ 773, 659, 823, 679 ], [ 828, 659, 872, 679 ], [ 617, 676, 669, 697 ], [ 674, 676, 698, 697 ], [ 703, 676, 743, 697 ], [ 748, 676, 763, 697 ], [ 768, 676, 818, 697 ], [ 823, 676, 847, 697 ], [ 617, 694, 709, 714 ], [ 714, 694, 784, 714 ], [ 789, 694, 804, 714 ], [ 809, 694, 833, 714 ], [ 617, 711, 693, 731 ], [ 698, 711, 790, 731 ], [ 795, 711, 823, 731 ], [ 617, 729, 636, 749 ], [ 671, 729, 698, 749 ], [ 702, 729, 753, 749 ], [ 758, 729, 774, 749 ], [ 778, 729, 801, 749 ], [ 805, 729, 821, 749 ], [ 826, 729, 854, 749 ], [ 859, 729, 867, 749 ], [ 641, 730, 666, 749 ], [ 617, 746, 649, 766 ], [ 654, 746, 722, 766 ], [ 727, 746, 772, 766 ], [ 777, 746, 793, 766 ], [ 798, 746, 809, 766 ], [ 814, 746, 844, 766 ], [ 617, 764, 660, 784 ], [ 665, 764, 681, 784 ], [ 685, 764, 694, 784 ], [ 699, 764, 771, 784 ], [ 776, 764, 829, 784 ], [ 834, 764, 877, 784 ], [ 119, 782, 161, 802 ], [ 166, 782, 217, 802 ], [ 222, 782, 251, 802 ], [ 575, 782, 609, 802 ], [ 614, 782, 667, 802 ], [ 672, 782, 697, 802 ], [ 702, 782, 758, 802 ], [ 763, 782, 787, 802 ], [ 792, 782, 839, 802 ], [ 843, 782, 860, 802 ], [ 286, 783, 369, 803 ], [ 374, 783, 386, 803 ], [ 390, 783, 414, 803 ], [ 419, 783, 493, 803 ], [ 119, 799, 138, 819 ], [ 143, 799, 213, 819 ], [ 218, 799, 234, 819 ], [ 575, 799, 614, 819 ], [ 619, 799, 670, 819 ], [ 675, 799, 721, 819 ], [ 726, 799, 810, 819 ], [ 815, 799, 866, 819 ], [ 286, 800, 371, 820 ], [ 376, 800, 428, 820 ], [ 433, 800, 470, 820 ], [ 475, 800, 512, 820 ], [ 517, 800, 548, 820 ], [ 119, 816, 170, 837 ], [ 174, 816, 210, 837 ], [ 215, 816, 240, 837 ], [ 575, 816, 591, 837 ], [ 596, 816, 604, 837 ], [ 609, 816, 636, 837 ], [ 641, 816, 691, 837 ], [ 701, 816, 731, 837 ], [ 736, 816, 808, 837 ], [ 813, 816, 872, 837 ], [ 286, 817, 309, 838 ], [ 314, 817, 405, 838 ], [ 415, 817, 427, 838 ], [ 432, 817, 456, 838 ], [ 461, 817, 523, 838 ], [ 119, 834, 156, 854 ], [ 160, 834, 203, 854 ], [ 575, 834, 591, 854 ], [ 596, 834, 674, 854 ], [ 679, 834, 692, 854 ], [ 286, 835, 320, 855 ], [ 325, 835, 375, 855 ], [ 380, 835, 404, 855 ], [ 409, 835, 495, 855 ], [ 499, 835, 516, 855 ], [ 521, 835, 545, 855 ], [ 286, 852, 341, 873 ], [ 346, 852, 429, 873 ], [ 434, 852, 463, 873 ], [ 468, 852, 525, 873 ], [ 530, 852, 554, 873 ], [ 286, 870, 333, 890 ], [ 338, 870, 356, 890 ], [ 361, 870, 426, 890 ], [ 431, 870, 446, 890 ], [ 451, 870, 475, 890 ], [ 480, 870, 513, 890 ], [ 587, 870, 614, 890 ], [ 618, 870, 674, 890 ], [ 679, 870, 694, 890 ], [ 699, 870, 746, 890 ], [ 751, 870, 760, 890 ], [ 764, 870, 797, 890 ], [ 802, 870, 840, 890 ], [ 587, 887, 648, 907 ], [ 653, 887, 676, 907 ], [ 681, 887, 705, 907 ], [ 710, 887, 749, 907 ], [ 754, 887, 825, 907 ], [ 286, 888, 299, 909 ], [ 304, 888, 343, 909 ], [ 348, 888, 361, 909 ], [ 366, 888, 385, 909 ], [ 390, 888, 446, 909 ], [ 451, 888, 526, 909 ] ]
[ [ 119, 121, 178, 141 ], [ 182, 121, 218, 141 ], [ 258, 121, 294, 141 ], [ 299, 121, 324, 141 ], [ 329, 121, 368, 141 ], [ 117, 171, 131, 191 ], [ 140, 171, 222, 191 ], [ 117, 188, 140, 207 ], [ 145, 188, 216, 207 ], [ 117, 203, 201, 223 ], [ 258, 171, 289, 191 ], [ 294, 171, 318, 191 ], [ 323, 171, 361, 191 ], [ 365, 171, 413, 191 ], [ 418, 171, 434, 191 ], [ 439, 171, 495, 191 ], [ 500, 171, 568, 191 ], [ 573, 171, 656, 191 ], [ 661, 171, 684, 191 ], [ 689, 171, 740, 191 ], [ 745, 171, 809, 191 ], [ 814, 171, 846, 191 ], [ 851, 171, 866, 191 ], [ 258, 188, 282, 208 ], [ 287, 188, 357, 208 ], [ 362, 188, 429, 208 ], [ 121, 237, 205, 258 ], [ 210, 237, 253, 258 ], [ 336, 237, 365, 258 ], [ 370, 237, 425, 258 ], [ 430, 237, 493, 258 ], [ 654, 237, 682, 258 ], [ 687, 237, 742, 258 ], [ 747, 237, 800, 258 ], [ 119, 255, 163, 275 ], [ 168, 255, 184, 275 ], [ 189, 255, 225, 275 ], [ 119, 272, 189, 293 ], [ 194, 272, 252, 293 ], [ 119, 290, 237, 310 ], [ 119, 307, 148, 327 ], [ 153, 307, 203, 327 ], [ 208, 307, 223, 327 ], [ 119, 325, 177, 345 ], [ 182, 325, 229, 345 ], [ 273, 255, 289, 275 ], [ 294, 255, 318, 275 ], [ 323, 255, 370, 275 ], [ 375, 255, 445, 275 ], [ 449, 255, 495, 275 ], [ 286, 291, 336, 311 ], [ 341, 291, 364, 311 ], [ 369, 291, 393, 311 ], [ 397, 291, 448, 311 ], [ 453, 291, 472, 311 ], [ 477, 291, 501, 311 ], [ 286, 308, 400, 329 ], [ 405, 308, 434, 329 ], [ 439, 308, 467, 329 ], [ 301, 327, 313, 347 ], [ 318, 327, 342, 347 ], [ 347, 327, 397, 347 ], [ 402, 327, 438, 347 ], [ 443, 327, 468, 347 ], [ 473, 327, 510, 347 ], [ 301, 344, 346, 364 ], [ 351, 344, 375, 364 ], [ 380, 344, 424, 364 ], [ 429, 344, 446, 364 ], [ 450, 344, 515, 364 ], [ 301, 362, 366, 382 ], [ 371, 362, 405, 382 ], [ 410, 362, 456, 382 ], [ 461, 362, 470, 382 ], [ 475, 362, 508, 382 ], [ 301, 379, 346, 399 ], [ 351, 379, 368, 399 ], [ 301, 398, 313, 418 ], [ 318, 398, 342, 418 ], [ 347, 398, 397, 418 ], [ 402, 398, 415, 418 ], [ 420, 398, 467, 418 ], [ 472, 398, 487, 418 ], [ 301, 415, 391, 435 ], [ 396, 415, 430, 435 ], [ 315, 432, 353, 453 ], [ 358, 432, 429, 453 ], [ 434, 432, 468, 453 ], [ 473, 432, 526, 453 ], [ 315, 450, 344, 470 ], [ 349, 450, 388, 470 ], [ 393, 450, 437, 470 ], [ 442, 450, 466, 470 ], [ 471, 450, 516, 470 ], [ 521, 450, 537, 470 ], [ 315, 467, 380, 487 ], [ 384, 467, 444, 487 ], [ 449, 467, 466, 487 ], [ 471, 467, 482, 487 ], [ 486, 467, 500, 487 ], [ 315, 485, 386, 505 ], [ 391, 485, 406, 505 ], [ 411, 485, 435, 505 ], [ 440, 485, 494, 505 ], [ 315, 502, 353, 522 ], [ 358, 502, 412, 522 ], [ 416, 502, 450, 522 ], [ 455, 502, 527, 522 ], [ 315, 520, 349, 540 ], [ 354, 520, 370, 540 ], [ 374, 520, 398, 540 ], [ 403, 520, 448, 540 ], [ 453, 520, 481, 540 ], [ 315, 537, 345, 557 ], [ 350, 537, 374, 557 ], [ 379, 537, 443, 557 ], [ 448, 537, 508, 557 ], [ 513, 537, 541, 557 ], [ 315, 554, 360, 575 ], [ 365, 554, 409, 575 ], [ 414, 554, 433, 575 ], [ 438, 554, 462, 575 ], [ 467, 554, 504, 575 ], [ 509, 554, 540, 575 ], [ 315, 572, 332, 592 ], [ 337, 572, 413, 592 ], [ 418, 572, 446, 592 ], [ 451, 572, 489, 592 ], [ 494, 572, 551, 592 ], [ 315, 589, 377, 609 ], [ 575, 255, 591, 275 ], [ 595, 255, 619, 275 ], [ 625, 255, 661, 275 ], [ 666, 255, 760, 275 ], [ 765, 255, 798, 275 ], [ 803, 255, 863, 275 ], [ 587, 291, 637, 311 ], [ 642, 291, 665, 311 ], [ 670, 291, 694, 311 ], [ 699, 291, 749, 311 ], [ 754, 291, 796, 311 ], [ 801, 291, 825, 311 ], [ 587, 308, 641, 329 ], [ 645, 308, 705, 329 ], [ 710, 308, 738, 329 ], [ 603, 327, 615, 347 ], [ 620, 327, 644, 347 ], [ 648, 327, 698, 347 ], [ 703, 327, 739, 347 ], [ 744, 327, 769, 347 ], [ 774, 327, 811, 347 ], [ 816, 327, 861, 347 ], [ 603, 344, 627, 364 ], [ 632, 344, 676, 364 ], [ 681, 344, 698, 364 ], [ 702, 344, 767, 364 ], [ 771, 344, 836, 364 ], [ 841, 344, 875, 364 ], [ 617, 362, 643, 382 ], [ 648, 362, 672, 382 ], [ 677, 362, 728, 382 ], [ 733, 362, 798, 382 ], [ 803, 362, 818, 382 ], [ 823, 362, 863, 382 ], [ 867, 362, 878, 382 ], [ 617, 379, 633, 399 ], [ 638, 379, 647, 399 ], [ 652, 379, 684, 399 ], [ 689, 379, 761, 399 ], [ 617, 396, 635, 417 ], [ 640, 396, 673, 417 ], [ 678, 396, 693, 417 ], [ 698, 396, 733, 417 ], [ 738, 396, 762, 417 ], [ 767, 396, 799, 417 ], [ 804, 396, 845, 417 ], [ 617, 414, 654, 434 ], [ 659, 414, 678, 434 ], [ 683, 414, 707, 434 ], [ 712, 414, 805, 434 ], [ 810, 414, 823, 434 ], [ 617, 431, 679, 452 ], [ 684, 431, 713, 452 ], [ 603, 450, 640, 470 ], [ 645, 450, 702, 470 ], [ 707, 450, 735, 470 ], [ 740, 450, 790, 470 ], [ 795, 450, 821, 470 ], [ 826, 450, 850, 470 ], [ 603, 467, 656, 487 ], [ 661, 467, 726, 487 ], [ 731, 467, 746, 487 ], [ 751, 467, 814, 487 ], [ 818, 467, 848, 487 ], [ 853, 467, 877, 487 ], [ 603, 485, 670, 505 ], [ 675, 485, 716, 505 ], [ 720, 485, 751, 505 ], [ 756, 485, 852, 505 ], [ 603, 502, 664, 522 ], [ 669, 502, 685, 522 ], [ 690, 502, 702, 522 ], [ 707, 502, 716, 522 ], [ 721, 502, 771, 522 ], [ 776, 502, 821, 522 ], [ 825, 502, 851, 522 ], [ 856, 502, 869, 522 ], [ 603, 520, 660, 540 ], [ 665, 520, 755, 540 ], [ 760, 520, 796, 540 ], [ 801, 520, 817, 540 ], [ 822, 520, 846, 540 ], [ 603, 537, 653, 557 ], [ 658, 537, 694, 557 ], [ 699, 537, 763, 557 ], [ 768, 537, 828, 557 ], [ 832, 537, 876, 557 ], [ 603, 554, 683, 575 ], [ 688, 554, 723, 575 ], [ 728, 554, 746, 575 ], [ 751, 554, 801, 575 ], [ 806, 554, 841, 575 ], [ 603, 572, 655, 592 ], [ 617, 589, 643, 609 ], [ 648, 589, 672, 609 ], [ 677, 589, 730, 609 ], [ 735, 589, 800, 609 ], [ 805, 589, 821, 609 ], [ 826, 589, 860, 609 ], [ 617, 607, 636, 627 ], [ 641, 607, 704, 627 ], [ 708, 607, 761, 627 ], [ 766, 607, 800, 627 ], [ 805, 607, 829, 627 ], [ 617, 624, 680, 644 ], [ 685, 624, 729, 644 ], [ 734, 624, 763, 644 ], [ 768, 624, 804, 644 ], [ 809, 624, 873, 644 ], [ 617, 642, 677, 662 ], [ 617, 659, 715, 679 ], [ 720, 659, 739, 679 ], [ 744, 659, 768, 679 ], [ 773, 659, 823, 679 ], [ 828, 659, 872, 679 ], [ 617, 676, 669, 697 ], [ 674, 676, 698, 697 ], [ 703, 676, 743, 697 ], [ 748, 676, 763, 697 ], [ 768, 676, 818, 697 ], [ 823, 676, 847, 697 ], [ 617, 694, 709, 714 ], [ 714, 694, 784, 714 ], [ 789, 694, 804, 714 ], [ 809, 694, 833, 714 ], [ 617, 711, 693, 731 ], [ 698, 711, 790, 731 ], [ 795, 711, 823, 731 ], [ 617, 729, 636, 749 ], [ 641, 730, 666, 749 ], [ 671, 729, 698, 749 ], [ 702, 729, 753, 749 ], [ 758, 729, 774, 749 ], [ 778, 729, 801, 749 ], [ 805, 729, 821, 749 ], [ 826, 729, 854, 749 ], [ 859, 729, 867, 749 ], [ 617, 746, 649, 766 ], [ 654, 746, 722, 766 ], [ 727, 746, 772, 766 ], [ 777, 746, 793, 766 ], [ 798, 746, 809, 766 ], [ 814, 746, 844, 766 ], [ 617, 764, 660, 784 ], [ 665, 764, 681, 784 ], [ 685, 764, 694, 784 ], [ 699, 764, 771, 784 ], [ 776, 764, 829, 784 ], [ 834, 764, 877, 784 ], [ 119, 782, 161, 802 ], [ 166, 782, 217, 802 ], [ 222, 782, 251, 802 ], [ 119, 799, 138, 819 ], [ 143, 799, 213, 819 ], [ 218, 799, 234, 819 ], [ 119, 816, 170, 837 ], [ 174, 816, 210, 837 ], [ 215, 816, 240, 837 ], [ 119, 834, 156, 854 ], [ 160, 834, 203, 854 ], [ 286, 783, 369, 803 ], [ 374, 783, 386, 803 ], [ 390, 783, 414, 803 ], [ 419, 783, 493, 803 ], [ 286, 800, 371, 820 ], [ 376, 800, 428, 820 ], [ 433, 800, 470, 820 ], [ 475, 800, 512, 820 ], [ 517, 800, 548, 820 ], [ 286, 817, 309, 838 ], [ 314, 817, 405, 838 ], [ 415, 817, 427, 838 ], [ 432, 817, 456, 838 ], [ 461, 817, 523, 838 ], [ 286, 835, 320, 855 ], [ 325, 835, 375, 855 ], [ 380, 835, 404, 855 ], [ 409, 835, 495, 855 ], [ 499, 835, 516, 855 ], [ 521, 835, 545, 855 ], [ 286, 852, 341, 873 ], [ 346, 852, 429, 873 ], [ 434, 852, 463, 873 ], [ 468, 852, 525, 873 ], [ 530, 852, 554, 873 ], [ 286, 870, 333, 890 ], [ 338, 870, 356, 890 ], [ 361, 870, 426, 890 ], [ 431, 870, 446, 890 ], [ 451, 870, 475, 890 ], [ 480, 870, 513, 890 ], [ 286, 888, 299, 909 ], [ 304, 888, 343, 909 ], [ 348, 888, 361, 909 ], [ 366, 888, 385, 909 ], [ 390, 888, 446, 909 ], [ 451, 888, 526, 909 ], [ 575, 782, 609, 802 ], [ 614, 782, 667, 802 ], [ 672, 782, 697, 802 ], [ 702, 782, 758, 802 ], [ 763, 782, 787, 802 ], [ 792, 782, 839, 802 ], [ 843, 782, 860, 802 ], [ 575, 799, 614, 819 ], [ 619, 799, 670, 819 ], [ 675, 799, 721, 819 ], [ 726, 799, 810, 819 ], [ 815, 799, 866, 819 ], [ 575, 816, 591, 837 ], [ 596, 816, 604, 837 ], [ 609, 816, 636, 837 ], [ 641, 816, 691, 837 ], [ 701, 816, 731, 837 ], [ 736, 816, 808, 837 ], [ 813, 816, 872, 837 ], [ 575, 834, 591, 854 ], [ 596, 834, 674, 854 ], [ 679, 834, 692, 854 ], [ 587, 870, 614, 890 ], [ 618, 870, 674, 890 ], [ 679, 870, 694, 890 ], [ 699, 870, 746, 890 ], [ 751, 870, 760, 890 ], [ 764, 870, 797, 890 ], [ 802, 870, 840, 890 ], [ 587, 887, 648, 907 ], [ 653, 887, 676, 907 ], [ 681, 887, 705, 907 ], [ 710, 887, 749, 907 ], [ 754, 887, 825, 907 ] ]
26 27 28 29 30 L3-1 to 3-7 Quiz L4-2 Parallel & L4-3 Graphing lines L4-4 Investigating graphs Non-Instruction day Perpendicular Lines of linear functions L4-1 Slope of a Line Hand-in Text pages 354 to 356 November 2 3 4 5 6 L4-1 to 4-4 Quiz No Classes L4-5 Slope-point Form Work period L4-6 Slope-Intercept Form Parent-Teacher Interviews 11:00 to 7:00 9 10 11 12 13 L4-7 General Form Work period Remembrance day L4-8 Love those linear L4-5 to 4-7 Quiz equations Doomsday #3 Review Hand-in 16 17 18 19 20 Doomsday #3 L5-1 Solving Linear Work period L5-2 Solving Linear Non-Instruction day Equations Graphically Equations Substitution – – Lecture? Lecture? 23 24 25 26 27 Work period L5-3 Solving Linear Work period L5-4 Linear Equations Work period – Equations Elimination Possible solutions – Lecture? Lecture? 30 December 1 2 3 4 L5-5 Love solving those L5-1 to 5-4 Quiz L6-1 Imperial Measures of L6-2 Math Lab: Measuring Non-instruction day linear equations Length Length and Distance Hand-in Hand-in Text pages 13 to 15 7 8 9 10 11 L6-1 to 6-3 Quiz L6-3 Relating SI and Work period L6-5 Volumes of Right L6-6 Surface Area & Imperial Units Pyramids & Right Cones Volume of a Sphere L6-4 Surface Areas of Right Pyramids & Right Cones 14 15 16 17 18 L6-7 Solving Problems L6-8 Love those L6-4 to 6-7 Quiz Work period L7-2 Using the trig ratios Involving Objects measurements areas and volumes L7-1 Trigonometry – tangent sine cosine Hand-in Tuesday Wednesday Thursday Friday
26 27 28 29 30 L3-1 to 3-7 Quiz L4-1 Slope of a Line L4-2 Parallel & Perpendicular Lines L4-3 Graphing lines L4-4 Investigating graphs of linear functions Hand-in Text pages 354 to 356 Non-Instruction day November 2 3 4 5 6 L4-1 to 4-4 Quiz L4-5 Slope-point Form Work period No Classes Parent-Teacher Interviews 11:00 to 7:00 L4-6 Slope-Intercept Form 9 10 11 12 13 L4-7 General Form Work period Remembrance day L4-8 Love those linear equations Hand-in L4-5 to 4-7 Quiz Doomsday #3 Review 16 17 18 19 20 Doomsday #3 L5-1 Solving Linear Equations – Graphically Lecture? Work period L5-2 Solving Linear Equations – Substitution Lecture? Non-Instruction day 23 24 25 26 27 Work period L5-3 Solving Linear Equations – Elimination Lecture? Work period L5-4 Linear Equations – Possible solutions Lecture? Work period 30 December 1 2 3 4 L5-5 Love solving those linear equations Hand-in L5-1 to 5-4 Quiz L6-1 Imperial Measures of Length L6-2 Math Lab: Measuring Length and Distance Hand-in Text pages 13 to 15 Non-instruction day 7 8 9 10 11 L6-3 Relating SI and Imperial Units L6-1 to 6-3 Quiz L6-4 Surface Areas of Right Pyramids & Right Cones Work period L6-5 Volumes of Right Pyramids & Right Cones L6-6 Surface Area & Volume of a Sphere 14 15 16 17 18 L6-7 Solving Problems Involving Objects L6-8 Love those measurements areas and volumes Hand-in L6-4 to 6-7 Quiz L7-1 Trigonometry – tangent sine cosine Work period L7-2 Using the trig ratios Tuesday Wednesday Thursday Friday
0.647793
[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 25, 26, 27, 28, 29, 9, 10, 11, 20, 21, 12, 13, 14, 15, 16, 17, 22, 23, 24, 30, 31, 32, 33, 34, 35, 18, 19, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 46, 47, 56, 57, 58, 59, 60, 53, 54, 55, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 81, 85, 77, 78, 79, 80, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 103, 107, 104, 109, 96, 97, 98, 99, 100, 105, 108, 106, 110, 101, 102, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 129, 133, 130, 134, 121, 122, 123, 124, 125, 128, 131, 132, 135, 126, 127, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 160, 161, 166, 146, 147, 148, 149, 150, 151, 152, 153, 162, 154, 155, 156, 157, 163, 164, 165, 167, 168, 169, 170, 171, 172, 158, 159, 173, 174, 175, 176, 177, 182, 183, 184, 185, 196, 197, 178, 179, 180, 181, 206, 207, 208, 209, 210, 211, 212, 213, 214, 186, 187, 188, 189, 190, 191, 198, 199, 200, 201, 192, 193, 194, 195, 202, 203, 204, 205, 215, 216, 217, 218, 219, 220, 221, 222, 237, 238, 223, 224, 225, 239, 240, 241, 242, 249, 226, 227, 228, 229, 243, 244, 245, 246, 247, 248, 230, 231, 232, 233, 234, 235, 236, 250, 251, 252, 253 ]
M10c%202015-16%20sem%201%20gen.docx
task-1431-60
1
[ [ 109, 92, 123, 115 ], [ 277, 92, 291, 115 ], [ 445, 92, 459, 115 ], [ 613, 92, 627, 115 ], [ 781, 92, 795, 115 ], [ 109, 111, 135, 134 ], [ 138, 111, 150, 134 ], [ 153, 111, 172, 134 ], [ 175, 111, 202, 134 ], [ 277, 111, 302, 134 ], [ 306, 111, 348, 134 ], [ 351, 111, 360, 134 ], [ 445, 111, 470, 134 ], [ 474, 111, 526, 134 ], [ 529, 111, 555, 134 ], [ 613, 111, 638, 134 ], [ 642, 111, 713, 134 ], [ 716, 111, 755, 134 ], [ 781, 111, 875, 134 ], [ 879, 111, 901, 134 ], [ 277, 130, 354, 152 ], [ 358, 130, 388, 152 ], [ 613, 130, 624, 152 ], [ 627, 130, 658, 152 ], [ 662, 130, 712, 152 ], [ 109, 149, 134, 171 ], [ 137, 149, 170, 171 ], [ 173, 149, 184, 171 ], [ 187, 149, 194, 171 ], [ 198, 149, 222, 171 ], [ 659, 150, 703, 172 ], [ 613, 169, 638, 191 ], [ 641, 169, 676, 191 ], [ 679, 169, 700, 191 ], [ 704, 169, 714, 191 ], [ 718, 169, 739, 191 ], [ 109, 189, 170, 211 ], [ 174, 189, 181, 211 ], [ 277, 189, 284, 211 ], [ 445, 189, 452, 211 ], [ 613, 189, 620, 211 ], [ 781, 189, 788, 211 ], [ 109, 207, 135, 230 ], [ 138, 207, 150, 230 ], [ 153, 207, 172, 230 ], [ 175, 207, 202, 230 ], [ 613, 207, 630, 230 ], [ 634, 207, 681, 230 ], [ 277, 208, 302, 230 ], [ 306, 208, 369, 230 ], [ 373, 208, 402, 230 ], [ 445, 208, 474, 230 ], [ 478, 208, 513, 230 ], [ 781, 208, 807, 230 ], [ 810, 208, 896, 230 ], [ 899, 208, 929, 230 ], [ 613, 245, 705, 267 ], [ 613, 264, 675, 286 ], [ 613, 283, 645, 305 ], [ 649, 283, 661, 305 ], [ 664, 283, 690, 305 ], [ 109, 303, 116, 325 ], [ 277, 303, 291, 325 ], [ 445, 303, 459, 325 ], [ 613, 303, 627, 325 ], [ 781, 303, 795, 325 ], [ 109, 321, 134, 344 ], [ 137, 321, 182, 344 ], [ 186, 321, 215, 344 ], [ 277, 321, 306, 344 ], [ 310, 321, 345, 344 ], [ 445, 321, 532, 344 ], [ 535, 321, 557, 344 ], [ 613, 321, 638, 344 ], [ 642, 321, 669, 344 ], [ 673, 321, 704, 344 ], [ 707, 321, 738, 344 ], [ 781, 321, 807, 344 ], [ 811, 321, 823, 344 ], [ 826, 321, 844, 344 ], [ 848, 321, 875, 344 ], [ 613, 340, 668, 363 ], [ 781, 359, 842, 382 ], [ 845, 359, 859, 382 ], [ 863, 359, 904, 382 ], [ 659, 360, 703, 383 ], [ 109, 380, 123, 403 ], [ 277, 380, 291, 403 ], [ 445, 380, 459, 403 ], [ 613, 380, 627, 403 ], [ 781, 380, 795, 403 ], [ 109, 399, 173, 421 ], [ 177, 399, 191, 421 ], [ 277, 399, 302, 421 ], [ 306, 399, 347, 421 ], [ 350, 399, 385, 421 ], [ 445, 399, 474, 421 ], [ 478, 399, 513, 421 ], [ 613, 399, 638, 421 ], [ 642, 399, 683, 421 ], [ 687, 399, 722, 421 ], [ 781, 399, 875, 421 ], [ 879, 399, 901, 421 ], [ 277, 418, 333, 440 ], [ 347, 418, 410, 440 ], [ 613, 418, 669, 440 ], [ 683, 418, 749, 440 ], [ 336, 421, 343, 439 ], [ 673, 421, 680, 439 ], [ 277, 436, 330, 459 ], [ 613, 436, 666, 459 ], [ 109, 456, 123, 479 ], [ 277, 456, 291, 479 ], [ 445, 456, 459, 479 ], [ 613, 456, 627, 479 ], [ 781, 456, 795, 479 ], [ 109, 475, 138, 498 ], [ 142, 475, 177, 498 ], [ 277, 475, 302, 498 ], [ 306, 475, 347, 498 ], [ 350, 475, 385, 498 ], [ 445, 475, 474, 498 ], [ 478, 475, 513, 498 ], [ 613, 475, 638, 498 ], [ 642, 475, 677, 498 ], [ 680, 475, 737, 498 ], [ 781, 475, 811, 498 ], [ 815, 475, 849, 498 ], [ 740, 478, 747, 496 ], [ 277, 494, 333, 517 ], [ 347, 494, 409, 517 ], [ 613, 494, 661, 517 ], [ 664, 494, 714, 517 ], [ 336, 497, 343, 515 ], [ 277, 513, 330, 535 ], [ 613, 513, 666, 535 ], [ 109, 533, 123, 555 ], [ 277, 533, 338, 555 ], [ 341, 533, 348, 555 ], [ 445, 533, 452, 555 ], [ 613, 533, 620, 555 ], [ 781, 533, 788, 555 ], [ 109, 551, 134, 574 ], [ 137, 551, 165, 574 ], [ 168, 551, 207, 574 ], [ 211, 551, 242, 574 ], [ 277, 551, 303, 574 ], [ 306, 551, 318, 574 ], [ 322, 551, 340, 574 ], [ 343, 551, 371, 574 ], [ 445, 551, 470, 574 ], [ 474, 551, 519, 574 ], [ 522, 551, 577, 574 ], [ 581, 551, 592, 574 ], [ 613, 551, 638, 574 ], [ 642, 551, 670, 574 ], [ 674, 551, 698, 574 ], [ 702, 551, 760, 574 ], [ 781, 551, 875, 574 ], [ 879, 551, 901, 574 ], [ 109, 570, 139, 593 ], [ 143, 570, 198, 593 ], [ 445, 570, 484, 593 ], [ 613, 570, 652, 593 ], [ 655, 570, 676, 593 ], [ 680, 570, 729, 593 ], [ 154, 590, 198, 613 ], [ 659, 590, 703, 613 ], [ 613, 609, 638, 631 ], [ 641, 609, 676, 631 ], [ 679, 609, 693, 631 ], [ 697, 609, 707, 631 ], [ 711, 609, 725, 631 ], [ 109, 629, 116, 651 ], [ 277, 629, 284, 651 ], [ 445, 629, 452, 651 ], [ 613, 629, 627, 651 ], [ 781, 629, 795, 651 ], [ 277, 647, 303, 670 ], [ 306, 647, 318, 670 ], [ 322, 647, 340, 670 ], [ 343, 647, 371, 670 ], [ 109, 648, 134, 670 ], [ 137, 648, 184, 670 ], [ 187, 648, 199, 670 ], [ 203, 648, 224, 670 ], [ 445, 648, 474, 670 ], [ 478, 648, 513, 670 ], [ 613, 648, 638, 670 ], [ 642, 648, 691, 670 ], [ 695, 648, 705, 670 ], [ 709, 648, 738, 670 ], [ 781, 648, 807, 670 ], [ 810, 648, 854, 670 ], [ 857, 648, 884, 670 ], [ 887, 648, 896, 670 ], [ 109, 666, 154, 689 ], [ 157, 666, 186, 689 ], [ 613, 666, 666, 689 ], [ 669, 666, 678, 689 ], [ 681, 666, 711, 689 ], [ 714, 666, 751, 689 ], [ 781, 666, 824, 689 ], [ 828, 666, 838, 689 ], [ 842, 666, 849, 689 ], [ 852, 666, 893, 689 ], [ 277, 685, 302, 708 ], [ 306, 685, 349, 708 ], [ 353, 685, 385, 708 ], [ 389, 685, 400, 708 ], [ 277, 704, 306, 726 ], [ 310, 704, 362, 726 ], [ 366, 704, 374, 726 ], [ 378, 704, 407, 726 ], [ 277, 723, 313, 745 ], [ 109, 743, 123, 765 ], [ 277, 743, 291, 765 ], [ 445, 743, 459, 765 ], [ 613, 743, 627, 765 ], [ 781, 743, 795, 765 ], [ 109, 762, 134, 784 ], [ 137, 762, 179, 784 ], [ 182, 762, 236, 784 ], [ 277, 762, 302, 784 ], [ 305, 762, 333, 784 ], [ 336, 762, 367, 784 ], [ 445, 762, 471, 784 ], [ 474, 762, 486, 784 ], [ 490, 762, 508, 784 ], [ 512, 762, 539, 784 ], [ 613, 762, 643, 784 ], [ 646, 762, 681, 784 ], [ 781, 762, 807, 784 ], [ 810, 762, 842, 784 ], [ 846, 762, 863, 784 ], [ 867, 762, 884, 784 ], [ 888, 762, 919, 784 ], [ 109, 780, 158, 803 ], [ 162, 780, 205, 803 ], [ 277, 780, 360, 803 ], [ 364, 780, 395, 803 ], [ 399, 780, 420, 803 ], [ 277, 799, 324, 822 ], [ 445, 799, 470, 822 ], [ 474, 799, 548, 822 ], [ 552, 802, 559, 820 ], [ 445, 818, 487, 840 ], [ 490, 818, 514, 840 ], [ 517, 818, 554, 840 ], [ 322, 819, 366, 842 ], [ 277, 884, 328, 907 ], [ 445, 884, 515, 907 ], [ 613, 884, 670, 907 ], [ 781, 884, 819, 907 ] ]
[ [ 109, 92, 123, 115 ], [ 277, 92, 291, 115 ], [ 445, 92, 459, 115 ], [ 613, 92, 627, 115 ], [ 781, 92, 795, 115 ], [ 109, 111, 135, 134 ], [ 138, 111, 150, 134 ], [ 153, 111, 172, 134 ], [ 175, 111, 202, 134 ], [ 109, 149, 134, 171 ], [ 137, 149, 170, 171 ], [ 173, 149, 184, 171 ], [ 187, 149, 194, 171 ], [ 198, 149, 222, 171 ], [ 277, 111, 302, 134 ], [ 306, 111, 348, 134 ], [ 351, 111, 360, 134 ], [ 277, 130, 354, 152 ], [ 358, 130, 388, 152 ], [ 445, 111, 470, 134 ], [ 474, 111, 526, 134 ], [ 529, 111, 555, 134 ], [ 613, 111, 638, 134 ], [ 642, 111, 713, 134 ], [ 716, 111, 755, 134 ], [ 613, 130, 624, 152 ], [ 627, 130, 658, 152 ], [ 662, 130, 712, 152 ], [ 659, 150, 703, 172 ], [ 613, 169, 638, 191 ], [ 641, 169, 676, 191 ], [ 679, 169, 700, 191 ], [ 704, 169, 714, 191 ], [ 718, 169, 739, 191 ], [ 781, 111, 875, 134 ], [ 879, 111, 901, 134 ], [ 109, 189, 170, 211 ], [ 174, 189, 181, 211 ], [ 277, 189, 284, 211 ], [ 445, 189, 452, 211 ], [ 613, 189, 620, 211 ], [ 781, 189, 788, 211 ], [ 109, 207, 135, 230 ], [ 138, 207, 150, 230 ], [ 153, 207, 172, 230 ], [ 175, 207, 202, 230 ], [ 277, 208, 302, 230 ], [ 306, 208, 369, 230 ], [ 373, 208, 402, 230 ], [ 445, 208, 474, 230 ], [ 478, 208, 513, 230 ], [ 613, 207, 630, 230 ], [ 634, 207, 681, 230 ], [ 613, 245, 705, 267 ], [ 613, 264, 675, 286 ], [ 613, 283, 645, 305 ], [ 649, 283, 661, 305 ], [ 664, 283, 690, 305 ], [ 781, 208, 807, 230 ], [ 810, 208, 896, 230 ], [ 899, 208, 929, 230 ], [ 109, 303, 116, 325 ], [ 277, 303, 291, 325 ], [ 445, 303, 459, 325 ], [ 613, 303, 627, 325 ], [ 781, 303, 795, 325 ], [ 109, 321, 134, 344 ], [ 137, 321, 182, 344 ], [ 186, 321, 215, 344 ], [ 277, 321, 306, 344 ], [ 310, 321, 345, 344 ], [ 445, 321, 532, 344 ], [ 535, 321, 557, 344 ], [ 613, 321, 638, 344 ], [ 642, 321, 669, 344 ], [ 673, 321, 704, 344 ], [ 707, 321, 738, 344 ], [ 613, 340, 668, 363 ], [ 659, 360, 703, 383 ], [ 781, 321, 807, 344 ], [ 811, 321, 823, 344 ], [ 826, 321, 844, 344 ], [ 848, 321, 875, 344 ], [ 781, 359, 842, 382 ], [ 845, 359, 859, 382 ], [ 863, 359, 904, 382 ], [ 109, 380, 123, 403 ], [ 277, 380, 291, 403 ], [ 445, 380, 459, 403 ], [ 613, 380, 627, 403 ], [ 781, 380, 795, 403 ], [ 109, 399, 173, 421 ], [ 177, 399, 191, 421 ], [ 277, 399, 302, 421 ], [ 306, 399, 347, 421 ], [ 350, 399, 385, 421 ], [ 277, 418, 333, 440 ], [ 336, 421, 343, 439 ], [ 347, 418, 410, 440 ], [ 277, 436, 330, 459 ], [ 445, 399, 474, 421 ], [ 478, 399, 513, 421 ], [ 613, 399, 638, 421 ], [ 642, 399, 683, 421 ], [ 687, 399, 722, 421 ], [ 613, 418, 669, 440 ], [ 673, 421, 680, 439 ], [ 683, 418, 749, 440 ], [ 613, 436, 666, 459 ], [ 781, 399, 875, 421 ], [ 879, 399, 901, 421 ], [ 109, 456, 123, 479 ], [ 277, 456, 291, 479 ], [ 445, 456, 459, 479 ], [ 613, 456, 627, 479 ], [ 781, 456, 795, 479 ], [ 109, 475, 138, 498 ], [ 142, 475, 177, 498 ], [ 277, 475, 302, 498 ], [ 306, 475, 347, 498 ], [ 350, 475, 385, 498 ], [ 277, 494, 333, 517 ], [ 336, 497, 343, 515 ], [ 347, 494, 409, 517 ], [ 277, 513, 330, 535 ], [ 445, 475, 474, 498 ], [ 478, 475, 513, 498 ], [ 613, 475, 638, 498 ], [ 642, 475, 677, 498 ], [ 680, 475, 737, 498 ], [ 740, 478, 747, 496 ], [ 613, 494, 661, 517 ], [ 664, 494, 714, 517 ], [ 613, 513, 666, 535 ], [ 781, 475, 811, 498 ], [ 815, 475, 849, 498 ], [ 109, 533, 123, 555 ], [ 277, 533, 338, 555 ], [ 341, 533, 348, 555 ], [ 445, 533, 452, 555 ], [ 613, 533, 620, 555 ], [ 781, 533, 788, 555 ], [ 109, 551, 134, 574 ], [ 137, 551, 165, 574 ], [ 168, 551, 207, 574 ], [ 211, 551, 242, 574 ], [ 109, 570, 139, 593 ], [ 143, 570, 198, 593 ], [ 154, 590, 198, 613 ], [ 277, 551, 303, 574 ], [ 306, 551, 318, 574 ], [ 322, 551, 340, 574 ], [ 343, 551, 371, 574 ], [ 445, 551, 470, 574 ], [ 474, 551, 519, 574 ], [ 522, 551, 577, 574 ], [ 581, 551, 592, 574 ], [ 445, 570, 484, 593 ], [ 613, 551, 638, 574 ], [ 642, 551, 670, 574 ], [ 674, 551, 698, 574 ], [ 702, 551, 760, 574 ], [ 613, 570, 652, 593 ], [ 655, 570, 676, 593 ], [ 680, 570, 729, 593 ], [ 659, 590, 703, 613 ], [ 613, 609, 638, 631 ], [ 641, 609, 676, 631 ], [ 679, 609, 693, 631 ], [ 697, 609, 707, 631 ], [ 711, 609, 725, 631 ], [ 781, 551, 875, 574 ], [ 879, 551, 901, 574 ], [ 109, 629, 116, 651 ], [ 277, 629, 284, 651 ], [ 445, 629, 452, 651 ], [ 613, 629, 627, 651 ], [ 781, 629, 795, 651 ], [ 109, 648, 134, 670 ], [ 137, 648, 184, 670 ], [ 187, 648, 199, 670 ], [ 203, 648, 224, 670 ], [ 109, 666, 154, 689 ], [ 157, 666, 186, 689 ], [ 277, 647, 303, 670 ], [ 306, 647, 318, 670 ], [ 322, 647, 340, 670 ], [ 343, 647, 371, 670 ], [ 277, 685, 302, 708 ], [ 306, 685, 349, 708 ], [ 353, 685, 385, 708 ], [ 389, 685, 400, 708 ], [ 277, 704, 306, 726 ], [ 310, 704, 362, 726 ], [ 366, 704, 374, 726 ], [ 378, 704, 407, 726 ], [ 277, 723, 313, 745 ], [ 445, 648, 474, 670 ], [ 478, 648, 513, 670 ], [ 613, 648, 638, 670 ], [ 642, 648, 691, 670 ], [ 695, 648, 705, 670 ], [ 709, 648, 738, 670 ], [ 613, 666, 666, 689 ], [ 669, 666, 678, 689 ], [ 681, 666, 711, 689 ], [ 714, 666, 751, 689 ], [ 781, 648, 807, 670 ], [ 810, 648, 854, 670 ], [ 857, 648, 884, 670 ], [ 887, 648, 896, 670 ], [ 781, 666, 824, 689 ], [ 828, 666, 838, 689 ], [ 842, 666, 849, 689 ], [ 852, 666, 893, 689 ], [ 109, 743, 123, 765 ], [ 277, 743, 291, 765 ], [ 445, 743, 459, 765 ], [ 613, 743, 627, 765 ], [ 781, 743, 795, 765 ], [ 109, 762, 134, 784 ], [ 137, 762, 179, 784 ], [ 182, 762, 236, 784 ], [ 109, 780, 158, 803 ], [ 162, 780, 205, 803 ], [ 277, 762, 302, 784 ], [ 305, 762, 333, 784 ], [ 336, 762, 367, 784 ], [ 277, 780, 360, 803 ], [ 364, 780, 395, 803 ], [ 399, 780, 420, 803 ], [ 277, 799, 324, 822 ], [ 322, 819, 366, 842 ], [ 445, 762, 471, 784 ], [ 474, 762, 486, 784 ], [ 490, 762, 508, 784 ], [ 512, 762, 539, 784 ], [ 445, 799, 470, 822 ], [ 474, 799, 548, 822 ], [ 552, 802, 559, 820 ], [ 445, 818, 487, 840 ], [ 490, 818, 514, 840 ], [ 517, 818, 554, 840 ], [ 613, 762, 643, 784 ], [ 646, 762, 681, 784 ], [ 781, 762, 807, 784 ], [ 810, 762, 842, 784 ], [ 846, 762, 863, 784 ], [ 867, 762, 884, 784 ], [ 888, 762, 919, 784 ], [ 277, 884, 328, 907 ], [ 445, 884, 515, 907 ], [ 613, 884, 670, 907 ], [ 781, 884, 819, 907 ] ]
Monday January 4 5 6 7 8 L7-1 to 7-3 Quiz L7-3 Math Lab: Measuring L7-4 Applying trig ratios Work period L7-5 Applying trig ratios – – an Inaccessible Height part I part II Hand-in Math text pages 84 to 86 11 12 13 14 15 Work period L7-6 Love those L7-4 to 7-5 Quiz Doomsday #4 Final Exam review trigonometry problems Doomsday #4 Review Last day of classes Hand-in 18 19 20 21 22 Final exam 25 26 27 28 29 Deadline All work must be in and complete by 2:00 pm
Monday January 4 5 6 7 8 L7-3 Math Lab: Measuring an Inaccessible Height Hand-in Math text pages 84 to 86 L7-1 to 7-3 Quiz L7-4 Applying trig ratios – part I Work period L7-5 Applying trig ratios – part II 11 12 13 14 15 Work period L7-6 Love those trigonometry problems Hand-in L7-4 to 7-5 Quiz Doomsday #4 Review Doomsday #4 Final Exam review Last day of classes 18 19 20 21 22 Final exam 25 26 27 28 29 Deadline All work must be in and complete by 2:00 pm
0.737188
[ 0, 1, 2, 3, 4, 5, 6, 11, 12, 13, 14, 27, 28, 29, 34, 35, 36, 37, 38, 39, 40, 7, 8, 9, 10, 15, 16, 17, 18, 25, 30, 31, 19, 20, 21, 22, 23, 24, 26, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 60, 61, 69, 51, 52, 53, 54, 62, 63, 64, 55, 56, 57, 58, 59, 65, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92 ]
M10c%202015-16%20sem%201%20gen.docx
task-1431-60
2
[ [ 109, 110, 156, 132 ], [ 109, 130, 157, 152 ], [ 160, 130, 167, 152 ], [ 277, 130, 284, 152 ], [ 445, 130, 452, 152 ], [ 613, 130, 620, 152 ], [ 781, 130, 788, 152 ], [ 277, 148, 303, 171 ], [ 306, 148, 318, 171 ], [ 322, 148, 340, 171 ], [ 343, 148, 371, 171 ], [ 109, 149, 134, 171 ], [ 137, 149, 165, 171 ], [ 169, 149, 193, 171 ], [ 197, 149, 256, 171 ], [ 445, 149, 470, 171 ], [ 474, 149, 522, 171 ], [ 526, 149, 543, 171 ], [ 547, 149, 577, 171 ], [ 613, 149, 643, 171 ], [ 646, 149, 681, 171 ], [ 781, 149, 807, 171 ], [ 810, 149, 859, 171 ], [ 862, 149, 880, 171 ], [ 883, 149, 914, 171 ], [ 581, 151, 588, 169 ], [ 918, 151, 924, 169 ], [ 109, 167, 123, 189 ], [ 126, 167, 195, 189 ], [ 199, 167, 236, 189 ], [ 445, 167, 467, 189 ], [ 470, 167, 474, 189 ], [ 781, 167, 803, 189 ], [ 807, 167, 814, 189 ], [ 154, 187, 198, 209 ], [ 109, 206, 137, 228 ], [ 140, 206, 160, 228 ], [ 164, 206, 198, 228 ], [ 202, 206, 216, 228 ], [ 219, 206, 230, 228 ], [ 233, 206, 247, 228 ], [ 109, 226, 123, 248 ], [ 277, 226, 291, 248 ], [ 445, 226, 459, 248 ], [ 613, 226, 627, 248 ], [ 781, 226, 795, 248 ], [ 109, 245, 138, 267 ], [ 142, 245, 177, 267 ], [ 277, 245, 302, 267 ], [ 305, 245, 333, 267 ], [ 336, 245, 367, 267 ], [ 445, 245, 471, 267 ], [ 474, 245, 486, 267 ], [ 490, 245, 508, 267 ], [ 512, 245, 539, 267 ], [ 613, 245, 678, 267 ], [ 681, 245, 695, 267 ], [ 781, 245, 809, 267 ], [ 812, 245, 844, 267 ], [ 848, 245, 885, 267 ], [ 277, 263, 347, 286 ], [ 350, 263, 402, 286 ], [ 445, 282, 506, 305 ], [ 509, 282, 523, 305 ], [ 526, 282, 568, 305 ], [ 781, 282, 807, 305 ], [ 811, 282, 833, 305 ], [ 836, 282, 848, 305 ], [ 851, 282, 897, 305 ], [ 322, 283, 366, 306 ], [ 109, 303, 123, 326 ], [ 279, 303, 293, 326 ], [ 445, 303, 459, 326 ], [ 613, 303, 627, 326 ], [ 781, 303, 795, 326 ], [ 613, 322, 641, 345 ], [ 644, 322, 675, 345 ], [ 109, 361, 123, 383 ], [ 279, 361, 293, 383 ], [ 445, 361, 459, 383 ], [ 613, 361, 627, 383 ], [ 781, 361, 795, 383 ], [ 781, 380, 834, 402 ], [ 781, 399, 795, 421 ], [ 799, 399, 825, 421 ], [ 829, 399, 857, 421 ], [ 860, 399, 874, 421 ], [ 877, 399, 887, 421 ], [ 891, 399, 912, 421 ], [ 781, 417, 833, 440 ], [ 836, 417, 849, 440 ], [ 853, 417, 877, 440 ], [ 881, 417, 898, 440 ] ]
[ [ 109, 110, 156, 132 ], [ 109, 130, 157, 152 ], [ 160, 130, 167, 152 ], [ 277, 130, 284, 152 ], [ 445, 130, 452, 152 ], [ 613, 130, 620, 152 ], [ 781, 130, 788, 152 ], [ 109, 149, 134, 171 ], [ 137, 149, 165, 171 ], [ 169, 149, 193, 171 ], [ 197, 149, 256, 171 ], [ 109, 167, 123, 189 ], [ 126, 167, 195, 189 ], [ 199, 167, 236, 189 ], [ 154, 187, 198, 209 ], [ 109, 206, 137, 228 ], [ 140, 206, 160, 228 ], [ 164, 206, 198, 228 ], [ 202, 206, 216, 228 ], [ 219, 206, 230, 228 ], [ 233, 206, 247, 228 ], [ 277, 148, 303, 171 ], [ 306, 148, 318, 171 ], [ 322, 148, 340, 171 ], [ 343, 148, 371, 171 ], [ 445, 149, 470, 171 ], [ 474, 149, 522, 171 ], [ 526, 149, 543, 171 ], [ 547, 149, 577, 171 ], [ 581, 151, 588, 169 ], [ 445, 167, 467, 189 ], [ 470, 167, 474, 189 ], [ 613, 149, 643, 171 ], [ 646, 149, 681, 171 ], [ 781, 149, 807, 171 ], [ 810, 149, 859, 171 ], [ 862, 149, 880, 171 ], [ 883, 149, 914, 171 ], [ 918, 151, 924, 169 ], [ 781, 167, 803, 189 ], [ 807, 167, 814, 189 ], [ 109, 226, 123, 248 ], [ 277, 226, 291, 248 ], [ 445, 226, 459, 248 ], [ 613, 226, 627, 248 ], [ 781, 226, 795, 248 ], [ 109, 245, 138, 267 ], [ 142, 245, 177, 267 ], [ 277, 245, 302, 267 ], [ 305, 245, 333, 267 ], [ 336, 245, 367, 267 ], [ 277, 263, 347, 286 ], [ 350, 263, 402, 286 ], [ 322, 283, 366, 306 ], [ 445, 245, 471, 267 ], [ 474, 245, 486, 267 ], [ 490, 245, 508, 267 ], [ 512, 245, 539, 267 ], [ 445, 282, 506, 305 ], [ 509, 282, 523, 305 ], [ 526, 282, 568, 305 ], [ 613, 245, 678, 267 ], [ 681, 245, 695, 267 ], [ 781, 245, 809, 267 ], [ 812, 245, 844, 267 ], [ 848, 245, 885, 267 ], [ 781, 282, 807, 305 ], [ 811, 282, 833, 305 ], [ 836, 282, 848, 305 ], [ 851, 282, 897, 305 ], [ 109, 303, 123, 326 ], [ 279, 303, 293, 326 ], [ 445, 303, 459, 326 ], [ 613, 303, 627, 326 ], [ 781, 303, 795, 326 ], [ 613, 322, 641, 345 ], [ 644, 322, 675, 345 ], [ 109, 361, 123, 383 ], [ 279, 361, 293, 383 ], [ 445, 361, 459, 383 ], [ 613, 361, 627, 383 ], [ 781, 361, 795, 383 ], [ 781, 380, 834, 402 ], [ 781, 399, 795, 421 ], [ 799, 399, 825, 421 ], [ 829, 399, 857, 421 ], [ 860, 399, 874, 421 ], [ 877, 399, 887, 421 ], [ 891, 399, 912, 421 ], [ 781, 417, 833, 440 ], [ 836, 417, 849, 440 ], [ 853, 417, 877, 440 ], [ 881, 417, 898, 440 ] ]
For more information on DEA, Reference: see , and . Benefits for children of Vietnam Veterans who are born with spina bifida ( g. Eligibility for Chapter 18 benefits) are dependent on the character of discharge. That is, regardless not Benefits of the characterization of the service of the Veteran parent, individuals may receive Chapter 18 benefits if the necessary Vietnam service and relationship requirements are met. For more information on eligibility and development for Chapter Reference: 18 benefits, see M21-1, Part VI, 2.B.
Reference: For more information on DEA, see , and . g. Eligibility for Chapter 18 Benefits Benefits for children of Vietnam Veterans who are born with spina bifida ( benefits) are not dependent on the character of discharge. That is, regardless of the characterization of the service of the Veteran parent, individuals may receive Chapter 18 benefits if the necessary Vietnam service and relationship requirements are met. Reference: For more information on eligibility and development for Chapter 18 benefits, see M21-1, Part VI, 2.B.
0.810339
[ 5, 0, 1, 2, 3, 4, 6, 7, 8, 9, 23, 24, 25, 26, 27, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 28, 29, 39, 30, 31, 32, 33, 34, 35, 36, 37, 38, 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, 76, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 80, 81, 82, 83 ]
M21-1III_ii_6.docx
task-1431-604
23
[ [ 610, 106, 638, 127 ], [ 642, 106, 683, 127 ], [ 688, 106, 780, 127 ], [ 785, 106, 805, 127 ], [ 810, 106, 855, 127 ], [ 514, 108, 600, 127 ], [ 514, 124, 538, 144 ], [ 528, 143, 533, 163 ], [ 537, 143, 566, 163 ], [ 528, 161, 533, 181 ], [ 258, 214, 324, 234 ], [ 329, 214, 351, 234 ], [ 356, 214, 421, 234 ], [ 425, 214, 442, 234 ], [ 447, 214, 514, 234 ], [ 519, 214, 589, 234 ], [ 594, 214, 627, 234 ], [ 632, 214, 656, 234 ], [ 661, 214, 697, 234 ], [ 702, 214, 737, 234 ], [ 742, 214, 783, 234 ], [ 788, 214, 834, 234 ], [ 839, 214, 845, 234 ], [ 117, 215, 131, 234 ], [ 140, 215, 216, 234 ], [ 117, 231, 140, 250 ], [ 145, 231, 209, 250 ], [ 213, 231, 231, 250 ], [ 258, 231, 327, 252 ], [ 332, 231, 356, 252 ], [ 391, 231, 471, 252 ], [ 476, 231, 496, 252 ], [ 501, 231, 525, 252 ], [ 530, 231, 601, 252 ], [ 606, 231, 623, 252 ], [ 627, 231, 707, 252 ], [ 717, 231, 753, 252 ], [ 758, 231, 776, 252 ], [ 781, 231, 861, 252 ], [ 361, 233, 386, 251 ], [ 117, 247, 179, 266 ], [ 258, 249, 275, 269 ], [ 280, 249, 303, 269 ], [ 308, 249, 434, 269 ], [ 439, 249, 455, 269 ], [ 460, 249, 484, 269 ], [ 489, 249, 544, 269 ], [ 549, 249, 565, 269 ], [ 570, 249, 594, 269 ], [ 599, 249, 661, 269 ], [ 666, 249, 720, 269 ], [ 725, 249, 812, 269 ], [ 817, 249, 851, 269 ], [ 258, 266, 315, 287 ], [ 320, 266, 382, 287 ], [ 387, 266, 406, 287 ], [ 411, 266, 473, 287 ], [ 478, 266, 490, 287 ], [ 495, 266, 519, 287 ], [ 524, 266, 600, 287 ], [ 605, 266, 673, 287 ], [ 678, 266, 733, 287 ], [ 738, 266, 766, 287 ], [ 771, 266, 864, 287 ], [ 258, 284, 360, 304 ], [ 365, 284, 390, 304 ], [ 394, 284, 429, 304 ], [ 355, 319, 382, 339 ], [ 387, 319, 428, 339 ], [ 433, 319, 525, 339 ], [ 530, 319, 550, 339 ], [ 555, 319, 631, 339 ], [ 636, 319, 664, 339 ], [ 669, 319, 770, 339 ], [ 775, 319, 798, 339 ], [ 803, 319, 865, 339 ], [ 258, 320, 345, 339 ], [ 258, 336, 278, 356 ], [ 283, 336, 350, 356 ], [ 355, 336, 380, 356 ], [ 384, 336, 443, 356 ], [ 448, 336, 479, 356 ], [ 484, 336, 510, 356 ], [ 515, 336, 547, 356 ] ]
[ [ 514, 108, 600, 127 ], [ 610, 106, 638, 127 ], [ 642, 106, 683, 127 ], [ 688, 106, 780, 127 ], [ 785, 106, 805, 127 ], [ 810, 106, 855, 127 ], [ 514, 124, 538, 144 ], [ 528, 143, 533, 163 ], [ 537, 143, 566, 163 ], [ 528, 161, 533, 181 ], [ 117, 215, 131, 234 ], [ 140, 215, 216, 234 ], [ 117, 231, 140, 250 ], [ 145, 231, 209, 250 ], [ 213, 231, 231, 250 ], [ 117, 247, 179, 266 ], [ 258, 214, 324, 234 ], [ 329, 214, 351, 234 ], [ 356, 214, 421, 234 ], [ 425, 214, 442, 234 ], [ 447, 214, 514, 234 ], [ 519, 214, 589, 234 ], [ 594, 214, 627, 234 ], [ 632, 214, 656, 234 ], [ 661, 214, 697, 234 ], [ 702, 214, 737, 234 ], [ 742, 214, 783, 234 ], [ 788, 214, 834, 234 ], [ 839, 214, 845, 234 ], [ 258, 231, 327, 252 ], [ 332, 231, 356, 252 ], [ 361, 233, 386, 251 ], [ 391, 231, 471, 252 ], [ 476, 231, 496, 252 ], [ 501, 231, 525, 252 ], [ 530, 231, 601, 252 ], [ 606, 231, 623, 252 ], [ 627, 231, 707, 252 ], [ 717, 231, 753, 252 ], [ 758, 231, 776, 252 ], [ 781, 231, 861, 252 ], [ 258, 249, 275, 269 ], [ 280, 249, 303, 269 ], [ 308, 249, 434, 269 ], [ 439, 249, 455, 269 ], [ 460, 249, 484, 269 ], [ 489, 249, 544, 269 ], [ 549, 249, 565, 269 ], [ 570, 249, 594, 269 ], [ 599, 249, 661, 269 ], [ 666, 249, 720, 269 ], [ 725, 249, 812, 269 ], [ 817, 249, 851, 269 ], [ 258, 266, 315, 287 ], [ 320, 266, 382, 287 ], [ 387, 266, 406, 287 ], [ 411, 266, 473, 287 ], [ 478, 266, 490, 287 ], [ 495, 266, 519, 287 ], [ 524, 266, 600, 287 ], [ 605, 266, 673, 287 ], [ 678, 266, 733, 287 ], [ 738, 266, 766, 287 ], [ 771, 266, 864, 287 ], [ 258, 284, 360, 304 ], [ 365, 284, 390, 304 ], [ 394, 284, 429, 304 ], [ 258, 320, 345, 339 ], [ 355, 319, 382, 339 ], [ 387, 319, 428, 339 ], [ 433, 319, 525, 339 ], [ 530, 319, 550, 339 ], [ 555, 319, 631, 339 ], [ 636, 319, 664, 339 ], [ 669, 319, 770, 339 ], [ 775, 319, 798, 339 ], [ 803, 319, 865, 339 ], [ 258, 336, 278, 356 ], [ 283, 336, 350, 356 ], [ 355, 336, 380, 356 ], [ 384, 336, 443, 356 ], [ 448, 336, 479, 356 ], [ 484, 336, 510, 356 ], [ 515, 336, 547, 356 ] ]
,whichever results in the higher numeral. When the puretone threshold is 30 decibels or less at 1000 Hz Important: and 70 decibels or more at 2000 Hz, the Roman numeral obtained by using the appropriate table will be elevated to the next higher Roman numeral. For more information on evaluating hearing loss based on Reference: exceptional patterns of hearing impairment, see . When an examiner certifies that speech discrimination scores are not o. Evaluating Hearing Loss appropriate or cannot be obtained, typically indicated with a test “cannot When Speech (CNT)” designation on examination, in accordance with use Table VIA in . Discrimination Scores Are Not An examiner indicates that speech discrimination scores are not Example: Appropriate or appropriate due to inconsistent results. Cannot Be Obtained p. Considering disease is characterized by episodic attacks with subsequent Meniere’s Hearing subsiding of symptoms following the attack. A Veteran may be totally deaf Impairment during the attack with return to normal hearing when the attack ends. Due to Therefore, in evaluating hearing impairment under , the puretone thresholds Meniere’s or speech discrimination percentages are not required to meet the provisions Disease of as hearing impairment associated with disease is often transient. Meniere’s In some cases, hearing loss may not recede following an attack of Important: disease and instead results in a permanent loss of hearing that Meniere’s meets the definition of hearing impairment under . In such circumstances, award benefits under the DC that results in the highest percentage for the Veteran. q. Determining Use the table below to determine whether reexamination is necessary. the Need for Reexamination A single examination is often sufficient to meet the qualifying Note: conditions of permanence under . If … Then … the extent of hearing loss in an do not routinely schedule individual claim has been reexamination. satisfactorily established by an examination
,whichever results in the higher numeral. Important: When the puretone threshold is 30 decibels or less at 1000 Hz and 70 decibels or more at 2000 Hz, the Roman numeral obtained by using the appropriate table will be elevated to the next higher Roman numeral. Reference: For more information on evaluating hearing loss based on exceptional patterns of hearing impairment, see . o. Evaluating Hearing Loss When Speech Discrimination Scores Are Not Appropriate or Cannot Be Obtained When an examiner certifies that speech discrimination scores are not appropriate or cannot be obtained, typically indicated with a “cannot test (CNT)” designation on examination, in accordance with use Table VIA in . Example: An examiner indicates that speech discrimination scores are not appropriate due to inconsistent results. p. Considering Hearing Impairment Due to Meniere’s Disease Meniere’s disease is characterized by episodic attacks with subsequent subsiding of symptoms following the attack. A Veteran may be totally deaf during the attack with return to normal hearing when the attack ends. Therefore, in evaluating hearing impairment under , the puretone thresholds or speech discrimination percentages are not required to meet the provisions of as hearing impairment associated with Meniere’s disease is often transient. Important: In some cases, hearing loss may not recede following an attack of Meniere’s disease and instead results in a permanent loss of hearing that meets the definition of hearing impairment under . In such circumstances, award benefits under the DC that results in the highest percentage for the Veteran. q. Determining the Need for Reexamination Use the table below to determine whether reexamination is necessary. Note: A single examination is often sufficient to meet the qualifying conditions of permanence under . If … Then … the extent of hearing loss in an individual claim has been satisfactorily established by an examination do not routinely schedule reexamination.
0.791394
[ 0, 1, 2, 3, 4, 5, 18, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 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, 54, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 59, 60, 61, 72, 73, 74, 75, 87, 88, 101, 102, 103, 104, 115, 116, 122, 123, 124, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 76, 77, 78, 79, 80, 81, 82, 83, 84, 86, 85, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 114, 105, 106, 107, 108, 109, 110, 111, 112, 113, 117, 118, 119, 120, 121, 125, 126, 136, 149, 162, 163, 174, 186, 135, 127, 128, 129, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 190, 191, 192, 197, 193, 194, 195, 196, 210, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 222, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 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, 260, 261, 262, 263, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 274, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 295, 296, 297, 298, 300, 301, 302, 303, 304, 291, 292, 293, 294, 299 ]
M21-1III_iv_4_SecB.docx
task-1431-612
19
[ [ 258, 61, 345, 81 ], [ 350, 61, 401, 81 ], [ 406, 61, 421, 81 ], [ 426, 61, 450, 81 ], [ 455, 61, 505, 81 ], [ 510, 61, 579, 81 ], [ 355, 96, 402, 116 ], [ 407, 96, 431, 116 ], [ 436, 96, 505, 116 ], [ 509, 96, 582, 116 ], [ 587, 96, 600, 116 ], [ 605, 96, 625, 116 ], [ 630, 96, 694, 116 ], [ 699, 96, 715, 116 ], [ 720, 96, 750, 116 ], [ 755, 96, 769, 116 ], [ 774, 96, 813, 116 ], [ 818, 96, 841, 116 ], [ 258, 97, 346, 116 ], [ 258, 113, 287, 133 ], [ 291, 113, 311, 133 ], [ 316, 113, 380, 133 ], [ 385, 113, 401, 133 ], [ 406, 113, 447, 133 ], [ 452, 113, 466, 133 ], [ 471, 113, 510, 133 ], [ 515, 113, 543, 133 ], [ 548, 113, 572, 133 ], [ 576, 113, 633, 133 ], [ 638, 113, 702, 133 ], [ 707, 113, 775, 133 ], [ 779, 113, 799, 133 ], [ 804, 113, 847, 133 ], [ 258, 131, 282, 151 ], [ 287, 131, 376, 151 ], [ 381, 131, 419, 151 ], [ 424, 131, 455, 151 ], [ 460, 131, 478, 151 ], [ 483, 131, 548, 151 ], [ 553, 131, 569, 151 ], [ 574, 131, 597, 151 ], [ 602, 131, 636, 151 ], [ 641, 131, 691, 151 ], [ 696, 131, 753, 151 ], [ 758, 131, 827, 151 ], [ 355, 165, 382, 186 ], [ 387, 165, 428, 186 ], [ 433, 165, 525, 186 ], [ 530, 165, 550, 186 ], [ 555, 165, 636, 186 ], [ 641, 165, 700, 186 ], [ 705, 165, 735, 186 ], [ 740, 165, 785, 186 ], [ 790, 165, 809, 186 ], [ 258, 167, 345, 186 ], [ 258, 183, 349, 203 ], [ 354, 183, 416, 203 ], [ 421, 183, 437, 203 ], [ 442, 183, 501, 203 ], [ 505, 183, 601, 203 ], [ 606, 183, 631, 203 ], [ 636, 183, 641, 203 ], [ 258, 235, 305, 255 ], [ 310, 235, 329, 255 ], [ 334, 235, 406, 255 ], [ 411, 235, 474, 255 ], [ 479, 235, 509, 255 ], [ 514, 235, 567, 255 ], [ 572, 235, 685, 255 ], [ 690, 235, 739, 255 ], [ 744, 235, 768, 255 ], [ 773, 235, 798, 255 ], [ 117, 236, 131, 255 ], [ 140, 236, 224, 255 ], [ 117, 252, 180, 271 ], [ 185, 252, 220, 271 ], [ 258, 252, 347, 273 ], [ 352, 252, 369, 273 ], [ 374, 252, 426, 273 ], [ 431, 252, 449, 273 ], [ 454, 252, 527, 273 ], [ 532, 252, 601, 273 ], [ 605, 252, 677, 273 ], [ 682, 252, 717, 273 ], [ 722, 252, 731, 273 ], [ 801, 252, 829, 273 ], [ 735, 255, 796, 272 ], [ 117, 268, 163, 287 ], [ 168, 268, 222, 287 ], [ 258, 270, 319, 289 ], [ 324, 270, 415, 290 ], [ 420, 270, 439, 290 ], [ 444, 270, 546, 290 ], [ 551, 270, 566, 290 ], [ 571, 270, 659, 290 ], [ 664, 270, 699, 290 ], [ 709, 270, 735, 290 ], [ 740, 270, 784, 290 ], [ 789, 270, 824, 290 ], [ 829, 270, 844, 290 ], [ 849, 270, 854, 290 ], [ 117, 284, 232, 303 ], [ 117, 300, 167, 319 ], [ 172, 300, 201, 319 ], [ 205, 300, 233, 319 ], [ 346, 305, 370, 325 ], [ 374, 305, 447, 325 ], [ 452, 305, 522, 325 ], [ 527, 305, 556, 325 ], [ 561, 305, 614, 325 ], [ 619, 305, 733, 325 ], [ 738, 305, 787, 325 ], [ 792, 305, 815, 325 ], [ 820, 305, 845, 325 ], [ 258, 306, 336, 325 ], [ 117, 316, 213, 335 ], [ 218, 316, 235, 335 ], [ 258, 322, 347, 342 ], [ 352, 322, 381, 342 ], [ 386, 322, 401, 342 ], [ 406, 322, 500, 342 ], [ 505, 322, 561, 342 ], [ 117, 332, 174, 351 ], [ 179, 332, 199, 351 ], [ 117, 347, 189, 367 ], [ 117, 398, 132, 417 ], [ 141, 398, 235, 417 ], [ 343, 398, 399, 418 ], [ 404, 398, 417, 418 ], [ 422, 398, 527, 418 ], [ 532, 398, 552, 418 ], [ 556, 398, 621, 418 ], [ 626, 398, 681, 418 ], [ 686, 398, 721, 418 ], [ 725, 398, 813, 418 ], [ 258, 400, 338, 417 ], [ 117, 414, 180, 434 ], [ 258, 415, 334, 435 ], [ 338, 415, 355, 435 ], [ 360, 415, 440, 435 ], [ 445, 415, 521, 435 ], [ 526, 415, 550, 435 ], [ 555, 415, 607, 435 ], [ 617, 415, 631, 435 ], [ 636, 415, 698, 435 ], [ 703, 415, 737, 435 ], [ 741, 415, 760, 435 ], [ 765, 415, 815, 435 ], [ 820, 415, 854, 435 ], [ 117, 430, 210, 449 ], [ 258, 432, 310, 453 ], [ 314, 432, 338, 453 ], [ 343, 432, 390, 453 ], [ 395, 432, 430, 453 ], [ 435, 432, 482, 453 ], [ 486, 432, 502, 453 ], [ 507, 432, 562, 453 ], [ 567, 432, 626, 453 ], [ 631, 432, 673, 453 ], [ 678, 432, 702, 453 ], [ 707, 432, 754, 453 ], [ 759, 432, 799, 453 ], [ 117, 446, 148, 466 ], [ 153, 446, 168, 466 ], [ 258, 450, 340, 470 ], [ 345, 450, 361, 470 ], [ 365, 450, 447, 470 ], [ 452, 450, 511, 470 ], [ 516, 450, 606, 470 ], [ 611, 450, 656, 470 ], [ 661, 450, 666, 470 ], [ 671, 450, 695, 470 ], [ 699, 450, 768, 470 ], [ 773, 450, 854, 470 ], [ 117, 464, 194, 480 ], [ 258, 467, 275, 487 ], [ 280, 467, 333, 487 ], [ 338, 467, 451, 487 ], [ 456, 467, 548, 487 ], [ 553, 467, 577, 487 ], [ 582, 467, 607, 487 ], [ 612, 467, 677, 487 ], [ 682, 467, 698, 487 ], [ 703, 467, 741, 487 ], [ 746, 467, 770, 487 ], [ 774, 467, 856, 487 ], [ 117, 478, 174, 497 ], [ 258, 485, 275, 505 ], [ 284, 485, 301, 505 ], [ 306, 485, 364, 505 ], [ 369, 485, 460, 505 ], [ 465, 485, 545, 505 ], [ 550, 485, 585, 505 ], [ 674, 485, 731, 505 ], [ 736, 485, 749, 505 ], [ 754, 485, 794, 505 ], [ 799, 485, 872, 505 ], [ 590, 487, 669, 504 ], [ 356, 520, 372, 540 ], [ 376, 520, 418, 540 ], [ 423, 520, 469, 540 ], [ 474, 520, 533, 540 ], [ 538, 520, 568, 540 ], [ 573, 520, 607, 540 ], [ 612, 520, 637, 540 ], [ 642, 520, 693, 540 ], [ 698, 520, 774, 540 ], [ 779, 520, 797, 540 ], [ 802, 520, 849, 540 ], [ 854, 520, 871, 540 ], [ 258, 521, 346, 540 ], [ 343, 537, 399, 557 ], [ 404, 537, 433, 557 ], [ 437, 537, 493, 557 ], [ 498, 537, 549, 557 ], [ 554, 537, 569, 557 ], [ 574, 537, 583, 557 ], [ 588, 537, 671, 557 ], [ 675, 537, 706, 557 ], [ 711, 537, 727, 557 ], [ 732, 537, 791, 557 ], [ 796, 537, 825, 557 ], [ 258, 539, 338, 556 ], [ 258, 554, 304, 575 ], [ 309, 554, 333, 575 ], [ 338, 554, 414, 575 ], [ 419, 554, 435, 575 ], [ 440, 554, 499, 575 ], [ 504, 554, 594, 575 ], [ 599, 554, 644, 575 ], [ 649, 554, 654, 575 ], [ 664, 554, 680, 575 ], [ 685, 554, 721, 575 ], [ 725, 554, 841, 575 ], [ 258, 572, 306, 592 ], [ 311, 572, 373, 592 ], [ 378, 572, 423, 592 ], [ 428, 572, 452, 592 ], [ 457, 572, 484, 592 ], [ 489, 572, 518, 592 ], [ 523, 572, 574, 592 ], [ 579, 572, 595, 592 ], [ 599, 572, 623, 592 ], [ 628, 572, 685, 592 ], [ 690, 572, 775, 592 ], [ 779, 572, 802, 592 ], [ 807, 572, 831, 592 ], [ 258, 589, 325, 609 ], [ 117, 642, 132, 661 ], [ 141, 642, 238, 661 ], [ 258, 642, 289, 662 ], [ 294, 642, 318, 662 ], [ 323, 642, 361, 662 ], [ 365, 642, 413, 662 ], [ 418, 642, 434, 662 ], [ 438, 642, 517, 662 ], [ 522, 642, 585, 662 ], [ 590, 642, 702, 662 ], [ 707, 642, 720, 662 ], [ 725, 642, 806, 662 ], [ 117, 658, 141, 677 ], [ 146, 658, 185, 677 ], [ 189, 658, 212, 677 ], [ 117, 674, 233, 693 ], [ 312, 676, 326, 697 ], [ 331, 676, 377, 697 ], [ 383, 676, 480, 697 ], [ 484, 676, 498, 697 ], [ 503, 676, 543, 697 ], [ 548, 676, 622, 697 ], [ 626, 676, 642, 697 ], [ 647, 676, 685, 697 ], [ 690, 676, 714, 697 ], [ 718, 676, 799, 697 ], [ 258, 678, 302, 697 ], [ 258, 694, 340, 714 ], [ 345, 694, 361, 714 ], [ 366, 694, 461, 714 ], [ 466, 694, 510, 714 ], [ 515, 694, 520, 714 ], [ 264, 730, 278, 751 ], [ 283, 732, 303, 749 ], [ 573, 732, 616, 749 ], [ 621, 732, 641, 749 ], [ 264, 748, 288, 768 ], [ 293, 748, 341, 768 ], [ 346, 748, 362, 768 ], [ 367, 748, 426, 768 ], [ 431, 748, 461, 768 ], [ 466, 748, 482, 768 ], [ 486, 748, 505, 768 ], [ 573, 748, 592, 768 ], [ 597, 748, 622, 768 ], [ 627, 748, 698, 768 ], [ 703, 748, 771, 768 ], [ 264, 765, 344, 786 ], [ 349, 765, 392, 786 ], [ 397, 765, 423, 786 ], [ 428, 765, 465, 786 ], [ 573, 765, 690, 786 ], [ 264, 783, 366, 803 ], [ 370, 783, 457, 803 ], [ 463, 783, 482, 803 ], [ 487, 783, 505, 803 ], [ 264, 800, 361, 820 ] ]
[ [ 258, 61, 345, 81 ], [ 350, 61, 401, 81 ], [ 406, 61, 421, 81 ], [ 426, 61, 450, 81 ], [ 455, 61, 505, 81 ], [ 510, 61, 579, 81 ], [ 258, 97, 346, 116 ], [ 355, 96, 402, 116 ], [ 407, 96, 431, 116 ], [ 436, 96, 505, 116 ], [ 509, 96, 582, 116 ], [ 587, 96, 600, 116 ], [ 605, 96, 625, 116 ], [ 630, 96, 694, 116 ], [ 699, 96, 715, 116 ], [ 720, 96, 750, 116 ], [ 755, 96, 769, 116 ], [ 774, 96, 813, 116 ], [ 818, 96, 841, 116 ], [ 258, 113, 287, 133 ], [ 291, 113, 311, 133 ], [ 316, 113, 380, 133 ], [ 385, 113, 401, 133 ], [ 406, 113, 447, 133 ], [ 452, 113, 466, 133 ], [ 471, 113, 510, 133 ], [ 515, 113, 543, 133 ], [ 548, 113, 572, 133 ], [ 576, 113, 633, 133 ], [ 638, 113, 702, 133 ], [ 707, 113, 775, 133 ], [ 779, 113, 799, 133 ], [ 804, 113, 847, 133 ], [ 258, 131, 282, 151 ], [ 287, 131, 376, 151 ], [ 381, 131, 419, 151 ], [ 424, 131, 455, 151 ], [ 460, 131, 478, 151 ], [ 483, 131, 548, 151 ], [ 553, 131, 569, 151 ], [ 574, 131, 597, 151 ], [ 602, 131, 636, 151 ], [ 641, 131, 691, 151 ], [ 696, 131, 753, 151 ], [ 758, 131, 827, 151 ], [ 258, 167, 345, 186 ], [ 355, 165, 382, 186 ], [ 387, 165, 428, 186 ], [ 433, 165, 525, 186 ], [ 530, 165, 550, 186 ], [ 555, 165, 636, 186 ], [ 641, 165, 700, 186 ], [ 705, 165, 735, 186 ], [ 740, 165, 785, 186 ], [ 790, 165, 809, 186 ], [ 258, 183, 349, 203 ], [ 354, 183, 416, 203 ], [ 421, 183, 437, 203 ], [ 442, 183, 501, 203 ], [ 505, 183, 601, 203 ], [ 606, 183, 631, 203 ], [ 636, 183, 641, 203 ], [ 117, 236, 131, 255 ], [ 140, 236, 224, 255 ], [ 117, 252, 180, 271 ], [ 185, 252, 220, 271 ], [ 117, 268, 163, 287 ], [ 168, 268, 222, 287 ], [ 117, 284, 232, 303 ], [ 117, 300, 167, 319 ], [ 172, 300, 201, 319 ], [ 205, 300, 233, 319 ], [ 117, 316, 213, 335 ], [ 218, 316, 235, 335 ], [ 117, 332, 174, 351 ], [ 179, 332, 199, 351 ], [ 117, 347, 189, 367 ], [ 258, 235, 305, 255 ], [ 310, 235, 329, 255 ], [ 334, 235, 406, 255 ], [ 411, 235, 474, 255 ], [ 479, 235, 509, 255 ], [ 514, 235, 567, 255 ], [ 572, 235, 685, 255 ], [ 690, 235, 739, 255 ], [ 744, 235, 768, 255 ], [ 773, 235, 798, 255 ], [ 258, 252, 347, 273 ], [ 352, 252, 369, 273 ], [ 374, 252, 426, 273 ], [ 431, 252, 449, 273 ], [ 454, 252, 527, 273 ], [ 532, 252, 601, 273 ], [ 605, 252, 677, 273 ], [ 682, 252, 717, 273 ], [ 722, 252, 731, 273 ], [ 735, 255, 796, 272 ], [ 801, 252, 829, 273 ], [ 258, 270, 319, 289 ], [ 324, 270, 415, 290 ], [ 420, 270, 439, 290 ], [ 444, 270, 546, 290 ], [ 551, 270, 566, 290 ], [ 571, 270, 659, 290 ], [ 664, 270, 699, 290 ], [ 709, 270, 735, 290 ], [ 740, 270, 784, 290 ], [ 789, 270, 824, 290 ], [ 829, 270, 844, 290 ], [ 849, 270, 854, 290 ], [ 258, 306, 336, 325 ], [ 346, 305, 370, 325 ], [ 374, 305, 447, 325 ], [ 452, 305, 522, 325 ], [ 527, 305, 556, 325 ], [ 561, 305, 614, 325 ], [ 619, 305, 733, 325 ], [ 738, 305, 787, 325 ], [ 792, 305, 815, 325 ], [ 820, 305, 845, 325 ], [ 258, 322, 347, 342 ], [ 352, 322, 381, 342 ], [ 386, 322, 401, 342 ], [ 406, 322, 500, 342 ], [ 505, 322, 561, 342 ], [ 117, 398, 132, 417 ], [ 141, 398, 235, 417 ], [ 117, 414, 180, 434 ], [ 117, 430, 210, 449 ], [ 117, 446, 148, 466 ], [ 153, 446, 168, 466 ], [ 117, 464, 194, 480 ], [ 117, 478, 174, 497 ], [ 258, 400, 338, 417 ], [ 343, 398, 399, 418 ], [ 404, 398, 417, 418 ], [ 422, 398, 527, 418 ], [ 532, 398, 552, 418 ], [ 556, 398, 621, 418 ], [ 626, 398, 681, 418 ], [ 686, 398, 721, 418 ], [ 725, 398, 813, 418 ], [ 258, 415, 334, 435 ], [ 338, 415, 355, 435 ], [ 360, 415, 440, 435 ], [ 445, 415, 521, 435 ], [ 526, 415, 550, 435 ], [ 555, 415, 607, 435 ], [ 617, 415, 631, 435 ], [ 636, 415, 698, 435 ], [ 703, 415, 737, 435 ], [ 741, 415, 760, 435 ], [ 765, 415, 815, 435 ], [ 820, 415, 854, 435 ], [ 258, 432, 310, 453 ], [ 314, 432, 338, 453 ], [ 343, 432, 390, 453 ], [ 395, 432, 430, 453 ], [ 435, 432, 482, 453 ], [ 486, 432, 502, 453 ], [ 507, 432, 562, 453 ], [ 567, 432, 626, 453 ], [ 631, 432, 673, 453 ], [ 678, 432, 702, 453 ], [ 707, 432, 754, 453 ], [ 759, 432, 799, 453 ], [ 258, 450, 340, 470 ], [ 345, 450, 361, 470 ], [ 365, 450, 447, 470 ], [ 452, 450, 511, 470 ], [ 516, 450, 606, 470 ], [ 611, 450, 656, 470 ], [ 661, 450, 666, 470 ], [ 671, 450, 695, 470 ], [ 699, 450, 768, 470 ], [ 773, 450, 854, 470 ], [ 258, 467, 275, 487 ], [ 280, 467, 333, 487 ], [ 338, 467, 451, 487 ], [ 456, 467, 548, 487 ], [ 553, 467, 577, 487 ], [ 582, 467, 607, 487 ], [ 612, 467, 677, 487 ], [ 682, 467, 698, 487 ], [ 703, 467, 741, 487 ], [ 746, 467, 770, 487 ], [ 774, 467, 856, 487 ], [ 258, 485, 275, 505 ], [ 284, 485, 301, 505 ], [ 306, 485, 364, 505 ], [ 369, 485, 460, 505 ], [ 465, 485, 545, 505 ], [ 550, 485, 585, 505 ], [ 590, 487, 669, 504 ], [ 674, 485, 731, 505 ], [ 736, 485, 749, 505 ], [ 754, 485, 794, 505 ], [ 799, 485, 872, 505 ], [ 258, 521, 346, 540 ], [ 356, 520, 372, 540 ], [ 376, 520, 418, 540 ], [ 423, 520, 469, 540 ], [ 474, 520, 533, 540 ], [ 538, 520, 568, 540 ], [ 573, 520, 607, 540 ], [ 612, 520, 637, 540 ], [ 642, 520, 693, 540 ], [ 698, 520, 774, 540 ], [ 779, 520, 797, 540 ], [ 802, 520, 849, 540 ], [ 854, 520, 871, 540 ], [ 258, 539, 338, 556 ], [ 343, 537, 399, 557 ], [ 404, 537, 433, 557 ], [ 437, 537, 493, 557 ], [ 498, 537, 549, 557 ], [ 554, 537, 569, 557 ], [ 574, 537, 583, 557 ], [ 588, 537, 671, 557 ], [ 675, 537, 706, 557 ], [ 711, 537, 727, 557 ], [ 732, 537, 791, 557 ], [ 796, 537, 825, 557 ], [ 258, 554, 304, 575 ], [ 309, 554, 333, 575 ], [ 338, 554, 414, 575 ], [ 419, 554, 435, 575 ], [ 440, 554, 499, 575 ], [ 504, 554, 594, 575 ], [ 599, 554, 644, 575 ], [ 649, 554, 654, 575 ], [ 664, 554, 680, 575 ], [ 685, 554, 721, 575 ], [ 725, 554, 841, 575 ], [ 258, 572, 306, 592 ], [ 311, 572, 373, 592 ], [ 378, 572, 423, 592 ], [ 428, 572, 452, 592 ], [ 457, 572, 484, 592 ], [ 489, 572, 518, 592 ], [ 523, 572, 574, 592 ], [ 579, 572, 595, 592 ], [ 599, 572, 623, 592 ], [ 628, 572, 685, 592 ], [ 690, 572, 775, 592 ], [ 779, 572, 802, 592 ], [ 807, 572, 831, 592 ], [ 258, 589, 325, 609 ], [ 117, 642, 132, 661 ], [ 141, 642, 238, 661 ], [ 117, 658, 141, 677 ], [ 146, 658, 185, 677 ], [ 189, 658, 212, 677 ], [ 117, 674, 233, 693 ], [ 258, 642, 289, 662 ], [ 294, 642, 318, 662 ], [ 323, 642, 361, 662 ], [ 365, 642, 413, 662 ], [ 418, 642, 434, 662 ], [ 438, 642, 517, 662 ], [ 522, 642, 585, 662 ], [ 590, 642, 702, 662 ], [ 707, 642, 720, 662 ], [ 725, 642, 806, 662 ], [ 258, 678, 302, 697 ], [ 312, 676, 326, 697 ], [ 331, 676, 377, 697 ], [ 383, 676, 480, 697 ], [ 484, 676, 498, 697 ], [ 503, 676, 543, 697 ], [ 548, 676, 622, 697 ], [ 626, 676, 642, 697 ], [ 647, 676, 685, 697 ], [ 690, 676, 714, 697 ], [ 718, 676, 799, 697 ], [ 258, 694, 340, 714 ], [ 345, 694, 361, 714 ], [ 366, 694, 461, 714 ], [ 466, 694, 510, 714 ], [ 515, 694, 520, 714 ], [ 264, 730, 278, 751 ], [ 283, 732, 303, 749 ], [ 573, 732, 616, 749 ], [ 621, 732, 641, 749 ], [ 264, 748, 288, 768 ], [ 293, 748, 341, 768 ], [ 346, 748, 362, 768 ], [ 367, 748, 426, 768 ], [ 431, 748, 461, 768 ], [ 466, 748, 482, 768 ], [ 486, 748, 505, 768 ], [ 264, 765, 344, 786 ], [ 349, 765, 392, 786 ], [ 397, 765, 423, 786 ], [ 428, 765, 465, 786 ], [ 264, 783, 366, 803 ], [ 370, 783, 457, 803 ], [ 463, 783, 482, 803 ], [ 487, 783, 505, 803 ], [ 264, 800, 361, 820 ], [ 573, 748, 592, 768 ], [ 597, 748, 622, 768 ], [ 627, 748, 698, 768 ], [ 703, 748, 771, 768 ], [ 573, 765, 690, 786 ] ]
The resultant disabling effects of a TBI event beyond those that follow d. TBI Residuals immediately from the acute injury to the brain are known as or TBI residuals TBI sequelae. The signs and symptoms of TBI residuals can be organized into the three main categories of physical, cognitive, and behavioral/emotional residuals for evaluation purposes. Examples of TBI residuals in each of the three categories may include, but are not limited to, those listed below. Physical Cognitive Behavioral/Emotional Apraxia (inability to execute Dementias (pre-senile Depression purposeful, previously learned Alzheimer’s type, dementia motor tasks, despite physical pugilistica, post traumatic ability and willingness) dementia) Aphasia (difficulty Attention and concentration Agitation and communicating orally and/or in deficits irritability writing) Paresis (muscle weakness or Memory, processing, and Impulsivity incomplete paralysis) learning impairment Plegia (paralysis or stroke) Language deficiencies Aggression Dysphagia (difficulty Planning difficulties Anxiety swallowing) Disorders of balance and Judgment and control difficulties Posttraumatic stress coordination disorder Diseases of hormone deficiency Reasoning and abstract thinking limitations Parkinsonism Self-awareness limitations Nausea/vomiting Headaches Dizziness Blurred vision Seizure disorder Sensory loss Weakness Sleep disturbance TBI residuals can resolve in a short period of time or can persist Note: chronically or even permanently. Chronic TBI residuals may include some or all of the clinical signs that developed immediately during the TBI event. Others (such as seizures or spasticity) may have a delayed onset. e. Determining A claim for SC for TBI may also be worded as a claim for or “head injury,” the Issues in A claim document mentioning any of the above must be “concussion.” TBI Cases sympathetically read and understood as a claim for identifiable TBI all residuals that can be attributed to one or more TBI events.
d. TBI Residuals The resultant disabling effects of a TBI event beyond those that follow immediately from the acute injury to the brain are known as TBI residuals or TBI sequelae. The signs and symptoms of TBI residuals can be organized into the three main categories of physical, cognitive, and behavioral/emotional residuals for evaluation purposes. Examples of TBI residuals in each of the three categories may include, but are not limited to, those listed below. Physical Cognitive Behavioral/Emotional Apraxia (inability to execute purposeful, previously learned motor tasks, despite physical ability and willingness) Dementias (pre-senile Alzheimer’s type, dementia pugilistica, post traumatic dementia) Depression Aphasia (difficulty communicating orally and/or in writing) Attention and concentration deficits Agitation and irritability Paresis (muscle weakness or incomplete paralysis) Memory, processing, and learning impairment Impulsivity Plegia (paralysis or stroke) Language deficiencies Aggression Dysphagia (difficulty swallowing) Planning difficulties Anxiety Disorders of balance and coordination Judgment and control difficulties Posttraumatic stress disorder Diseases of hormone deficiency Reasoning and abstract thinking limitations Parkinsonism Self-awareness limitations Nausea/vomiting Headaches Dizziness Blurred vision Seizure disorder Sensory loss Weakness Sleep disturbance Note: TBI residuals can resolve in a short period of time or can persist chronically or even permanently. Chronic TBI residuals may include some or all of the clinical signs that developed immediately during the TBI event. Others (such as seizures or spasticity) may have a delayed onset. e. Determining the Issues in TBI Cases A claim for SC for TBI may also be worded as a claim for “head injury,” or “concussion.” A claim document mentioning any of the above must be sympathetically read and understood as a claim for all identifiable TBI residuals that can be attributed to one or more TBI events.
0.785304
[ 12, 13, 14, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 26, 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, 85, 86, 87, 91, 92, 93, 94, 98, 99, 100, 82, 83, 88, 89, 90, 95, 96, 97, 101, 84, 102, 103, 109, 110, 111, 112, 115, 104, 105, 106, 113, 107, 108, 114, 116, 117, 118, 119, 124, 125, 120, 121, 122, 126, 127, 123, 128, 129, 130, 131, 132, 133, 134, 135, 136, 140, 137, 138, 139, 141, 142, 143, 144, 151, 145, 146, 147, 148, 149, 150, 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, 190, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 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, 244, 245, 246, 258, 259, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 242, 243, 241, 257, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 260, 261, 262, 263, 264, 265, 266, 267, 270, 268, 269, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281 ]
M21-1III_iv_4_SecG.docx
task-1431-616
4
[ [ 258, 70, 289, 90 ], [ 294, 70, 361, 90 ], [ 366, 70, 438, 90 ], [ 443, 70, 495, 90 ], [ 500, 70, 516, 90 ], [ 521, 70, 530, 90 ], [ 535, 70, 567, 90 ], [ 571, 70, 614, 90 ], [ 619, 70, 677, 90 ], [ 682, 70, 723, 90 ], [ 728, 70, 757, 90 ], [ 762, 70, 813, 90 ], [ 117, 71, 132, 90 ], [ 141, 71, 172, 90 ], [ 117, 86, 191, 106 ], [ 258, 87, 357, 108 ], [ 361, 87, 399, 108 ], [ 404, 87, 428, 108 ], [ 433, 87, 475, 108 ], [ 479, 87, 526, 108 ], [ 531, 87, 546, 108 ], [ 551, 87, 575, 108 ], [ 580, 87, 620, 108 ], [ 625, 87, 649, 108 ], [ 654, 87, 708, 108 ], [ 713, 87, 729, 108 ], [ 849, 87, 866, 108 ], [ 734, 89, 766, 108 ], [ 771, 89, 844, 108 ], [ 258, 106, 291, 126 ], [ 296, 106, 371, 125 ], [ 258, 140, 289, 160 ], [ 294, 140, 334, 160 ], [ 339, 140, 367, 160 ], [ 372, 140, 453, 160 ], [ 458, 140, 474, 160 ], [ 479, 140, 511, 160 ], [ 515, 140, 585, 160 ], [ 590, 140, 617, 160 ], [ 622, 140, 641, 160 ], [ 645, 140, 723, 160 ], [ 728, 140, 758, 160 ], [ 763, 140, 787, 160 ], [ 792, 140, 831, 160 ], [ 258, 157, 298, 177 ], [ 302, 157, 382, 177 ], [ 387, 157, 403, 177 ], [ 408, 157, 478, 177 ], [ 483, 157, 561, 177 ], [ 566, 157, 594, 177 ], [ 599, 157, 766, 177 ], [ 771, 157, 840, 177 ], [ 845, 157, 868, 177 ], [ 258, 174, 340, 195 ], [ 345, 174, 419, 195 ], [ 429, 174, 507, 195 ], [ 512, 174, 528, 195 ], [ 533, 174, 565, 195 ], [ 569, 174, 639, 195 ], [ 644, 174, 659, 195 ], [ 664, 174, 700, 195 ], [ 705, 174, 721, 195 ], [ 726, 174, 750, 195 ], [ 755, 174, 794, 195 ], [ 258, 192, 338, 212 ], [ 343, 192, 377, 212 ], [ 381, 192, 444, 212 ], [ 449, 192, 474, 212 ], [ 479, 192, 503, 212 ], [ 508, 192, 533, 212 ], [ 538, 192, 593, 212 ], [ 598, 192, 618, 212 ], [ 623, 192, 665, 212 ], [ 669, 192, 712, 212 ], [ 717, 192, 770, 212 ], [ 223, 228, 293, 249 ], [ 496, 228, 577, 249 ], [ 687, 228, 871, 249 ], [ 129, 246, 192, 266 ], [ 197, 246, 269, 266 ], [ 274, 246, 289, 266 ], [ 294, 246, 354, 266 ], [ 405, 246, 489, 266 ], [ 494, 246, 578, 266 ], [ 685, 246, 773, 266 ], [ 129, 263, 218, 284 ], [ 223, 263, 306, 284 ], [ 310, 263, 368, 284 ], [ 405, 266, 502, 283 ], [ 507, 266, 546, 283 ], [ 551, 266, 623, 283 ], [ 129, 281, 176, 301 ], [ 181, 281, 225, 301 ], [ 230, 281, 285, 301 ], [ 290, 281, 355, 301 ], [ 405, 281, 492, 301 ], [ 497, 281, 530, 301 ], [ 535, 281, 609, 301 ], [ 129, 298, 179, 318 ], [ 184, 298, 212, 318 ], [ 217, 298, 313, 318 ], [ 405, 298, 484, 318 ], [ 129, 317, 193, 337 ], [ 198, 317, 278, 337 ], [ 405, 317, 480, 337 ], [ 484, 317, 513, 337 ], [ 518, 317, 624, 337 ], [ 685, 317, 759, 337 ], [ 764, 317, 792, 337 ], [ 129, 334, 251, 354 ], [ 256, 334, 302, 354 ], [ 306, 334, 357, 354 ], [ 362, 334, 377, 354 ], [ 405, 334, 463, 354 ], [ 685, 334, 765, 354 ], [ 129, 352, 192, 372 ], [ 129, 370, 184, 390 ], [ 189, 370, 251, 390 ], [ 256, 370, 331, 390 ], [ 336, 370, 353, 390 ], [ 405, 370, 478, 390 ], [ 483, 370, 571, 390 ], [ 576, 370, 605, 390 ], [ 685, 370, 775, 390 ], [ 129, 387, 216, 408 ], [ 221, 387, 297, 408 ], [ 405, 387, 470, 408 ], [ 474, 387, 565, 408 ], [ 129, 406, 178, 426 ], [ 183, 406, 259, 426 ], [ 264, 406, 280, 426 ], [ 285, 406, 340, 426 ], [ 405, 406, 483, 426 ], [ 487, 406, 581, 426 ], [ 685, 406, 774, 426 ], [ 129, 424, 213, 444 ], [ 218, 424, 297, 444 ], [ 405, 424, 475, 444 ], [ 480, 424, 565, 444 ], [ 685, 424, 748, 444 ], [ 129, 441, 226, 462 ], [ 129, 460, 205, 480 ], [ 210, 460, 226, 480 ], [ 231, 460, 291, 480 ], [ 296, 460, 324, 480 ], [ 405, 460, 482, 480 ], [ 487, 460, 515, 480 ], [ 520, 460, 575, 480 ], [ 580, 460, 665, 480 ], [ 685, 460, 793, 480 ], [ 798, 460, 841, 480 ], [ 129, 477, 228, 498 ], [ 685, 477, 749, 498 ], [ 129, 496, 197, 516 ], [ 202, 496, 219, 516 ], [ 223, 496, 293, 516 ], [ 298, 496, 380, 516 ], [ 405, 496, 488, 516 ], [ 493, 496, 521, 516 ], [ 526, 496, 587, 516 ], [ 592, 496, 658, 516 ], [ 405, 513, 489, 533 ], [ 129, 532, 236, 552 ], [ 405, 532, 524, 552 ], [ 529, 532, 613, 552 ], [ 129, 550, 263, 570 ], [ 129, 568, 214, 588 ], [ 129, 587, 205, 607 ], [ 129, 605, 189, 625 ], [ 193, 605, 241, 625 ], [ 129, 623, 188, 644 ], [ 193, 623, 257, 644 ], [ 129, 642, 192, 662 ], [ 197, 642, 227, 662 ], [ 129, 660, 208, 680 ], [ 129, 683, 172, 704 ], [ 177, 683, 268, 704 ], [ 312, 719, 343, 739 ], [ 348, 719, 418, 739 ], [ 423, 719, 450, 739 ], [ 455, 719, 512, 739 ], [ 516, 719, 532, 739 ], [ 537, 719, 545, 739 ], [ 550, 719, 589, 739 ], [ 594, 719, 645, 739 ], [ 649, 719, 666, 739 ], [ 671, 719, 706, 739 ], [ 710, 719, 727, 739 ], [ 732, 719, 759, 739 ], [ 764, 719, 815, 739 ], [ 258, 720, 302, 739 ], [ 258, 737, 347, 757 ], [ 351, 737, 368, 757 ], [ 373, 737, 410, 757 ], [ 414, 737, 517, 757 ], [ 527, 737, 590, 757 ], [ 595, 737, 627, 757 ], [ 632, 737, 702, 757 ], [ 706, 737, 740, 757 ], [ 745, 737, 803, 757 ], [ 808, 737, 849, 757 ], [ 854, 737, 871, 757 ], [ 258, 754, 278, 774 ], [ 283, 754, 299, 774 ], [ 304, 754, 328, 774 ], [ 333, 754, 391, 774 ], [ 395, 754, 436, 774 ], [ 441, 754, 470, 774 ], [ 475, 754, 556, 774 ], [ 560, 754, 659, 774 ], [ 663, 754, 715, 774 ], [ 719, 754, 743, 774 ], [ 748, 754, 780, 774 ], [ 785, 754, 832, 774 ], [ 258, 772, 311, 792 ], [ 315, 772, 358, 792 ], [ 363, 772, 379, 792 ], [ 384, 772, 447, 792 ], [ 452, 772, 469, 792 ], [ 474, 772, 554, 792 ], [ 559, 772, 593, 792 ], [ 598, 772, 635, 792 ], [ 640, 772, 648, 792 ], [ 653, 772, 714, 792 ], [ 719, 772, 765, 792 ], [ 117, 824, 130, 844 ], [ 139, 824, 236, 844 ], [ 258, 824, 273, 844 ], [ 277, 824, 321, 844 ], [ 326, 824, 349, 844 ], [ 354, 824, 378, 844 ], [ 383, 824, 405, 844 ], [ 410, 824, 442, 844 ], [ 447, 824, 481, 844 ], [ 485, 824, 517, 844 ], [ 522, 824, 540, 844 ], [ 545, 824, 604, 844 ], [ 609, 824, 625, 844 ], [ 630, 824, 639, 844 ], [ 644, 824, 687, 844 ], [ 692, 824, 715, 844 ], [ 836, 824, 852, 844 ], [ 720, 826, 766, 843 ], [ 771, 826, 831, 843 ], [ 117, 840, 141, 860 ], [ 146, 840, 192, 860 ], [ 196, 840, 211, 860 ], [ 377, 841, 392, 861 ], [ 397, 841, 440, 861 ], [ 445, 841, 523, 861 ], [ 527, 841, 617, 861 ], [ 622, 841, 650, 861 ], [ 655, 841, 671, 861 ], [ 676, 841, 700, 861 ], [ 705, 841, 752, 861 ], [ 757, 841, 795, 861 ], [ 800, 841, 818, 861 ], [ 258, 844, 368, 860 ], [ 117, 856, 148, 876 ], [ 153, 856, 197, 876 ], [ 258, 859, 383, 879 ], [ 387, 859, 421, 879 ], [ 426, 859, 454, 879 ], [ 459, 859, 546, 879 ], [ 551, 859, 568, 879 ], [ 573, 859, 581, 879 ], [ 586, 859, 630, 879 ], [ 635, 859, 658, 879 ], [ 688, 859, 777, 879 ], [ 782, 859, 814, 879 ], [ 663, 860, 683, 879 ], [ 258, 876, 328, 896 ], [ 333, 876, 362, 896 ], [ 367, 876, 394, 896 ], [ 399, 876, 418, 896 ], [ 423, 876, 498, 896 ], [ 503, 876, 518, 896 ], [ 523, 876, 551, 896 ], [ 556, 876, 573, 896 ], [ 577, 876, 618, 896 ], [ 623, 876, 654, 896 ], [ 659, 876, 714, 896 ] ]
[ [ 117, 71, 132, 90 ], [ 141, 71, 172, 90 ], [ 117, 86, 191, 106 ], [ 258, 70, 289, 90 ], [ 294, 70, 361, 90 ], [ 366, 70, 438, 90 ], [ 443, 70, 495, 90 ], [ 500, 70, 516, 90 ], [ 521, 70, 530, 90 ], [ 535, 70, 567, 90 ], [ 571, 70, 614, 90 ], [ 619, 70, 677, 90 ], [ 682, 70, 723, 90 ], [ 728, 70, 757, 90 ], [ 762, 70, 813, 90 ], [ 258, 87, 357, 108 ], [ 361, 87, 399, 108 ], [ 404, 87, 428, 108 ], [ 433, 87, 475, 108 ], [ 479, 87, 526, 108 ], [ 531, 87, 546, 108 ], [ 551, 87, 575, 108 ], [ 580, 87, 620, 108 ], [ 625, 87, 649, 108 ], [ 654, 87, 708, 108 ], [ 713, 87, 729, 108 ], [ 734, 89, 766, 108 ], [ 771, 89, 844, 108 ], [ 849, 87, 866, 108 ], [ 258, 106, 291, 126 ], [ 296, 106, 371, 125 ], [ 258, 140, 289, 160 ], [ 294, 140, 334, 160 ], [ 339, 140, 367, 160 ], [ 372, 140, 453, 160 ], [ 458, 140, 474, 160 ], [ 479, 140, 511, 160 ], [ 515, 140, 585, 160 ], [ 590, 140, 617, 160 ], [ 622, 140, 641, 160 ], [ 645, 140, 723, 160 ], [ 728, 140, 758, 160 ], [ 763, 140, 787, 160 ], [ 792, 140, 831, 160 ], [ 258, 157, 298, 177 ], [ 302, 157, 382, 177 ], [ 387, 157, 403, 177 ], [ 408, 157, 478, 177 ], [ 483, 157, 561, 177 ], [ 566, 157, 594, 177 ], [ 599, 157, 766, 177 ], [ 771, 157, 840, 177 ], [ 845, 157, 868, 177 ], [ 258, 174, 340, 195 ], [ 345, 174, 419, 195 ], [ 429, 174, 507, 195 ], [ 512, 174, 528, 195 ], [ 533, 174, 565, 195 ], [ 569, 174, 639, 195 ], [ 644, 174, 659, 195 ], [ 664, 174, 700, 195 ], [ 705, 174, 721, 195 ], [ 726, 174, 750, 195 ], [ 755, 174, 794, 195 ], [ 258, 192, 338, 212 ], [ 343, 192, 377, 212 ], [ 381, 192, 444, 212 ], [ 449, 192, 474, 212 ], [ 479, 192, 503, 212 ], [ 508, 192, 533, 212 ], [ 538, 192, 593, 212 ], [ 598, 192, 618, 212 ], [ 623, 192, 665, 212 ], [ 669, 192, 712, 212 ], [ 717, 192, 770, 212 ], [ 223, 228, 293, 249 ], [ 496, 228, 577, 249 ], [ 687, 228, 871, 249 ], [ 129, 246, 192, 266 ], [ 197, 246, 269, 266 ], [ 274, 246, 289, 266 ], [ 294, 246, 354, 266 ], [ 129, 263, 218, 284 ], [ 223, 263, 306, 284 ], [ 310, 263, 368, 284 ], [ 129, 281, 176, 301 ], [ 181, 281, 225, 301 ], [ 230, 281, 285, 301 ], [ 290, 281, 355, 301 ], [ 129, 298, 179, 318 ], [ 184, 298, 212, 318 ], [ 217, 298, 313, 318 ], [ 405, 246, 489, 266 ], [ 494, 246, 578, 266 ], [ 405, 266, 502, 283 ], [ 507, 266, 546, 283 ], [ 551, 266, 623, 283 ], [ 405, 281, 492, 301 ], [ 497, 281, 530, 301 ], [ 535, 281, 609, 301 ], [ 405, 298, 484, 318 ], [ 685, 246, 773, 266 ], [ 129, 317, 193, 337 ], [ 198, 317, 278, 337 ], [ 129, 334, 251, 354 ], [ 256, 334, 302, 354 ], [ 306, 334, 357, 354 ], [ 362, 334, 377, 354 ], [ 129, 352, 192, 372 ], [ 405, 317, 480, 337 ], [ 484, 317, 513, 337 ], [ 518, 317, 624, 337 ], [ 405, 334, 463, 354 ], [ 685, 317, 759, 337 ], [ 764, 317, 792, 337 ], [ 685, 334, 765, 354 ], [ 129, 370, 184, 390 ], [ 189, 370, 251, 390 ], [ 256, 370, 331, 390 ], [ 336, 370, 353, 390 ], [ 129, 387, 216, 408 ], [ 221, 387, 297, 408 ], [ 405, 370, 478, 390 ], [ 483, 370, 571, 390 ], [ 576, 370, 605, 390 ], [ 405, 387, 470, 408 ], [ 474, 387, 565, 408 ], [ 685, 370, 775, 390 ], [ 129, 406, 178, 426 ], [ 183, 406, 259, 426 ], [ 264, 406, 280, 426 ], [ 285, 406, 340, 426 ], [ 405, 406, 483, 426 ], [ 487, 406, 581, 426 ], [ 685, 406, 774, 426 ], [ 129, 424, 213, 444 ], [ 218, 424, 297, 444 ], [ 129, 441, 226, 462 ], [ 405, 424, 475, 444 ], [ 480, 424, 565, 444 ], [ 685, 424, 748, 444 ], [ 129, 460, 205, 480 ], [ 210, 460, 226, 480 ], [ 231, 460, 291, 480 ], [ 296, 460, 324, 480 ], [ 129, 477, 228, 498 ], [ 405, 460, 482, 480 ], [ 487, 460, 515, 480 ], [ 520, 460, 575, 480 ], [ 580, 460, 665, 480 ], [ 685, 460, 793, 480 ], [ 798, 460, 841, 480 ], [ 685, 477, 749, 498 ], [ 129, 496, 197, 516 ], [ 202, 496, 219, 516 ], [ 223, 496, 293, 516 ], [ 298, 496, 380, 516 ], [ 405, 496, 488, 516 ], [ 493, 496, 521, 516 ], [ 526, 496, 587, 516 ], [ 592, 496, 658, 516 ], [ 405, 513, 489, 533 ], [ 129, 532, 236, 552 ], [ 405, 532, 524, 552 ], [ 529, 532, 613, 552 ], [ 129, 550, 263, 570 ], [ 129, 568, 214, 588 ], [ 129, 587, 205, 607 ], [ 129, 605, 189, 625 ], [ 193, 605, 241, 625 ], [ 129, 623, 188, 644 ], [ 193, 623, 257, 644 ], [ 129, 642, 192, 662 ], [ 197, 642, 227, 662 ], [ 129, 660, 208, 680 ], [ 129, 683, 172, 704 ], [ 177, 683, 268, 704 ], [ 258, 720, 302, 739 ], [ 312, 719, 343, 739 ], [ 348, 719, 418, 739 ], [ 423, 719, 450, 739 ], [ 455, 719, 512, 739 ], [ 516, 719, 532, 739 ], [ 537, 719, 545, 739 ], [ 550, 719, 589, 739 ], [ 594, 719, 645, 739 ], [ 649, 719, 666, 739 ], [ 671, 719, 706, 739 ], [ 710, 719, 727, 739 ], [ 732, 719, 759, 739 ], [ 764, 719, 815, 739 ], [ 258, 737, 347, 757 ], [ 351, 737, 368, 757 ], [ 373, 737, 410, 757 ], [ 414, 737, 517, 757 ], [ 527, 737, 590, 757 ], [ 595, 737, 627, 757 ], [ 632, 737, 702, 757 ], [ 706, 737, 740, 757 ], [ 745, 737, 803, 757 ], [ 808, 737, 849, 757 ], [ 854, 737, 871, 757 ], [ 258, 754, 278, 774 ], [ 283, 754, 299, 774 ], [ 304, 754, 328, 774 ], [ 333, 754, 391, 774 ], [ 395, 754, 436, 774 ], [ 441, 754, 470, 774 ], [ 475, 754, 556, 774 ], [ 560, 754, 659, 774 ], [ 663, 754, 715, 774 ], [ 719, 754, 743, 774 ], [ 748, 754, 780, 774 ], [ 785, 754, 832, 774 ], [ 258, 772, 311, 792 ], [ 315, 772, 358, 792 ], [ 363, 772, 379, 792 ], [ 384, 772, 447, 792 ], [ 452, 772, 469, 792 ], [ 474, 772, 554, 792 ], [ 559, 772, 593, 792 ], [ 598, 772, 635, 792 ], [ 640, 772, 648, 792 ], [ 653, 772, 714, 792 ], [ 719, 772, 765, 792 ], [ 117, 824, 130, 844 ], [ 139, 824, 236, 844 ], [ 117, 840, 141, 860 ], [ 146, 840, 192, 860 ], [ 196, 840, 211, 860 ], [ 117, 856, 148, 876 ], [ 153, 856, 197, 876 ], [ 258, 824, 273, 844 ], [ 277, 824, 321, 844 ], [ 326, 824, 349, 844 ], [ 354, 824, 378, 844 ], [ 383, 824, 405, 844 ], [ 410, 824, 442, 844 ], [ 447, 824, 481, 844 ], [ 485, 824, 517, 844 ], [ 522, 824, 540, 844 ], [ 545, 824, 604, 844 ], [ 609, 824, 625, 844 ], [ 630, 824, 639, 844 ], [ 644, 824, 687, 844 ], [ 692, 824, 715, 844 ], [ 720, 826, 766, 843 ], [ 771, 826, 831, 843 ], [ 836, 824, 852, 844 ], [ 258, 844, 368, 860 ], [ 377, 841, 392, 861 ], [ 397, 841, 440, 861 ], [ 445, 841, 523, 861 ], [ 527, 841, 617, 861 ], [ 622, 841, 650, 861 ], [ 655, 841, 671, 861 ], [ 676, 841, 700, 861 ], [ 705, 841, 752, 861 ], [ 757, 841, 795, 861 ], [ 800, 841, 818, 861 ], [ 258, 859, 383, 879 ], [ 387, 859, 421, 879 ], [ 426, 859, 454, 879 ], [ 459, 859, 546, 879 ], [ 551, 859, 568, 879 ], [ 573, 859, 581, 879 ], [ 586, 859, 630, 879 ], [ 635, 859, 658, 879 ], [ 663, 860, 683, 879 ], [ 688, 859, 777, 879 ], [ 782, 859, 814, 879 ], [ 258, 876, 328, 896 ], [ 333, 876, 362, 896 ], [ 367, 876, 394, 896 ], [ 399, 876, 418, 896 ], [ 423, 876, 498, 896 ], [ 503, 876, 518, 896 ], [ 523, 876, 551, 896 ], [ 556, 876, 573, 896 ], [ 577, 876, 618, 896 ], [ 623, 876, 654, 896 ], [ 659, 876, 714, 896 ] ]
For more information on References: the rating activity, see M21-1, Part III, Subpart iv, 1.1, and issues that require a rating decision, see M21-1, Part III, Subpart ii, 7.3.b. c. Components The rating decision is composed of a explanation of the Narrative of the Rating determination on benefit entitlement and a containing information Codesheet Decision about the claimant, the current decision, past decisions and the current state of entitlement to compensation and pension benefits. To the maximum extent possible, rating decisions should not include Note: mailing address information or RO-specific address information. Should a field be required in a system, placeholders should be used such as dashes or spaces. For more information on References: rating decision see M21-1 Part III, Subpart iv, 6.C.5 Narrative, the see M21-1 Part III, Subpart iv, 6.D, and Codesheet, the coded conclusion on the see M21-1 Part III, Subpart iv, 6.E. Codesheet, d. Rating The table below provides information about the sections of a rating decision. Decision Sections For more information on the rating decision format, see the Reference: Rating Decision Sections Description Contains the Narrative Introduction for each issue considered Decision, Evidence for each issue Reasons for Decision, considered, and References. Contains the Codesheet data table Jurisdiction coded conclusion SPECIAL NOTATION and TEMPLATE fields, and signature(s). Rating decisions are prepared using VBMS-R, which incorporates the latest e. Rating Decision rating decision format, includes tools to help ensure rating decision Automation
References: For more information on the rating activity, see M21-1, Part III, Subpart iv, 1.1, and issues that require a rating decision, see M21-1, Part III, Subpart ii, 7.3.b. c. Components of the Rating Decision The rating decision is composed of a Narrative explanation of the determination on benefit entitlement and a Codesheet containing information about the claimant, the current decision, past decisions and the current state of entitlement to compensation and pension benefits. Note: To the maximum extent possible, rating decisions should not include mailing address information or RO-specific address information. Should a field be required in a system, placeholders should be used such as dashes or spaces. References: For more information on rating decision Narrative, see M21-1 Part III, Subpart iv, 6.C.5 the Codesheet, see M21-1 Part III, Subpart iv, 6.D, and the coded conclusion on the Codesheet, see M21-1 Part III, Subpart iv, 6.E. d. Rating Decision Sections The table below provides information about the sections of a rating decision. Reference: For more information on the rating decision format, see the Rating Decision Sections Description Narrative Contains the Introduction Decision, for each issue considered Evidence Reasons for Decision, for each issue considered, and References. Codesheet Contains the data table Jurisdiction coded conclusion SPECIAL NOTATION and TEMPLATE fields, and signature(s). e. Rating Decision Automation Rating decisions are prepared using VBMS-R, which incorporates the latest rating decision format, includes tools to help ensure rating decision
0.742588
[ 4, 0, 1, 2, 3, 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, 42, 43, 44, 54, 31, 32, 33, 34, 35, 36, 37, 41, 38, 39, 40, 45, 46, 47, 48, 49, 50, 53, 51, 52, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 84, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 113, 109, 110, 111, 112, 114, 115, 123, 116, 117, 118, 119, 120, 121, 122, 124, 133, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 146, 139, 140, 141, 142, 143, 144, 145, 147, 148, 161, 162, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 173, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 174, 175, 176, 177, 180, 178, 179, 181, 186, 182, 183, 184, 185, 187, 191, 192, 193, 188, 189, 190, 194, 195, 196, 199, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 222, 223, 224, 235, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234 ]
M21-1III_iv_6_SecC.docx
task-1431-623
1
[ [ 362, 106, 389, 126 ], [ 394, 106, 435, 126 ], [ 440, 106, 532, 126 ], [ 537, 106, 557, 126 ], [ 258, 107, 352, 126 ], [ 272, 124, 296, 144 ], [ 301, 124, 346, 144 ], [ 351, 124, 415, 144 ], [ 420, 124, 445, 144 ], [ 450, 124, 508, 144 ], [ 513, 124, 545, 144 ], [ 550, 124, 574, 144 ], [ 579, 124, 640, 144 ], [ 645, 124, 665, 144 ], [ 670, 124, 699, 144 ], [ 704, 124, 733, 144 ], [ 272, 143, 319, 163 ], [ 324, 143, 353, 163 ], [ 358, 143, 413, 163 ], [ 418, 143, 427, 163 ], [ 432, 143, 478, 163 ], [ 483, 143, 553, 163 ], [ 558, 143, 583, 163 ], [ 588, 143, 646, 163 ], [ 651, 143, 683, 163 ], [ 688, 143, 712, 163 ], [ 717, 143, 778, 163 ], [ 783, 143, 799, 163 ], [ 804, 143, 848, 163 ], [ 117, 195, 130, 215 ], [ 139, 195, 236, 215 ], [ 258, 195, 289, 215 ], [ 294, 195, 339, 215 ], [ 344, 195, 410, 215 ], [ 415, 195, 428, 215 ], [ 433, 195, 512, 215 ], [ 517, 195, 533, 215 ], [ 538, 195, 547, 215 ], [ 633, 195, 724, 215 ], [ 729, 195, 746, 215 ], [ 751, 195, 775, 215 ], [ 552, 196, 628, 215 ], [ 117, 211, 132, 231 ], [ 137, 211, 161, 231 ], [ 165, 211, 217, 231 ], [ 258, 212, 367, 232 ], [ 372, 212, 392, 232 ], [ 397, 212, 451, 232 ], [ 456, 212, 544, 232 ], [ 549, 212, 577, 232 ], [ 582, 212, 591, 232 ], [ 683, 212, 765, 232 ], [ 770, 212, 863, 232 ], [ 596, 214, 678, 232 ], [ 117, 227, 182, 247 ], [ 258, 230, 302, 250 ], [ 307, 230, 331, 250 ], [ 336, 230, 408, 250 ], [ 413, 230, 437, 250 ], [ 442, 230, 497, 250 ], [ 502, 230, 572, 250 ], [ 577, 230, 609, 250 ], [ 614, 230, 687, 250 ], [ 692, 230, 720, 250 ], [ 725, 230, 749, 250 ], [ 754, 230, 809, 250 ], [ 814, 230, 850, 250 ], [ 855, 230, 871, 250 ], [ 258, 247, 347, 267 ], [ 351, 247, 367, 267 ], [ 372, 247, 481, 267 ], [ 485, 247, 514, 267 ], [ 519, 247, 580, 267 ], [ 584, 247, 651, 267 ], [ 312, 282, 333, 302 ], [ 338, 282, 362, 302 ], [ 367, 282, 447, 302 ], [ 452, 282, 500, 302 ], [ 505, 282, 574, 302 ], [ 579, 282, 624, 302 ], [ 629, 282, 702, 302 ], [ 707, 282, 760, 302 ], [ 764, 282, 790, 302 ], [ 794, 282, 852, 302 ], [ 258, 283, 302, 302 ], [ 258, 299, 318, 320 ], [ 323, 299, 382, 320 ], [ 387, 299, 480, 320 ], [ 484, 299, 501, 320 ], [ 506, 299, 600, 320 ], [ 605, 299, 664, 320 ], [ 669, 299, 766, 320 ], [ 776, 299, 832, 320 ], [ 837, 299, 846, 320 ], [ 258, 317, 294, 337 ], [ 299, 317, 318, 337 ], [ 323, 317, 388, 337 ], [ 393, 317, 408, 337 ], [ 413, 317, 422, 337 ], [ 426, 317, 486, 337 ], [ 491, 317, 590, 337 ], [ 595, 317, 647, 337 ], [ 652, 317, 671, 337 ], [ 675, 317, 711, 337 ], [ 716, 317, 752, 337 ], [ 757, 317, 773, 337 ], [ 778, 317, 831, 337 ], [ 836, 317, 852, 337 ], [ 258, 334, 314, 354 ], [ 363, 369, 390, 389 ], [ 395, 369, 435, 389 ], [ 440, 369, 533, 389 ], [ 538, 369, 557, 389 ], [ 258, 370, 353, 389 ], [ 272, 388, 318, 408 ], [ 323, 388, 388, 408 ], [ 479, 388, 504, 408 ], [ 509, 388, 563, 408 ], [ 567, 388, 599, 408 ], [ 604, 388, 628, 408 ], [ 633, 388, 694, 408 ], [ 699, 388, 720, 408 ], [ 725, 388, 767, 408 ], [ 393, 389, 474, 408 ], [ 272, 406, 296, 426 ], [ 393, 406, 418, 426 ], [ 423, 406, 476, 426 ], [ 481, 406, 513, 426 ], [ 518, 406, 542, 426 ], [ 547, 406, 608, 426 ], [ 613, 406, 633, 426 ], [ 638, 406, 672, 426 ], [ 677, 406, 705, 426 ], [ 301, 408, 388, 426 ], [ 272, 425, 296, 445 ], [ 301, 425, 348, 445 ], [ 353, 425, 438, 445 ], [ 443, 425, 463, 445 ], [ 467, 425, 491, 445 ], [ 588, 425, 613, 445 ], [ 618, 425, 671, 445 ], [ 676, 425, 708, 445 ], [ 713, 425, 737, 445 ], [ 742, 425, 803, 445 ], [ 808, 425, 828, 445 ], [ 833, 425, 864, 445 ], [ 496, 426, 583, 445 ], [ 117, 477, 132, 497 ], [ 141, 477, 193, 497 ], [ 258, 477, 289, 497 ], [ 294, 477, 332, 497 ], [ 337, 477, 384, 497 ], [ 389, 477, 457, 497 ], [ 462, 477, 555, 497 ], [ 560, 477, 603, 497 ], [ 608, 477, 632, 497 ], [ 637, 477, 700, 497 ], [ 705, 477, 721, 497 ], [ 726, 477, 735, 497 ], [ 740, 477, 786, 497 ], [ 790, 477, 861, 497 ], [ 117, 493, 182, 513 ], [ 117, 509, 180, 529 ], [ 355, 512, 382, 532 ], [ 387, 512, 428, 532 ], [ 433, 512, 525, 532 ], [ 530, 512, 550, 532 ], [ 555, 512, 579, 532 ], [ 584, 512, 629, 532 ], [ 634, 512, 700, 532 ], [ 705, 512, 762, 532 ], [ 767, 512, 792, 532 ], [ 796, 512, 820, 532 ], [ 258, 513, 345, 532 ], [ 286, 548, 342, 569 ], [ 347, 548, 418, 569 ], [ 423, 548, 492, 569 ], [ 651, 548, 747, 569 ], [ 521, 566, 590, 586 ], [ 595, 566, 619, 586 ], [ 270, 567, 346, 586 ], [ 535, 603, 633, 622 ], [ 614, 620, 637, 641 ], [ 642, 620, 678, 641 ], [ 683, 620, 722, 641 ], [ 727, 620, 812, 641 ], [ 535, 622, 609, 641 ], [ 535, 640, 606, 659 ], [ 712, 657, 735, 678 ], [ 740, 657, 776, 678 ], [ 781, 657, 820, 678 ], [ 535, 659, 600, 677 ], [ 605, 659, 628, 677 ], [ 633, 659, 707, 678 ], [ 535, 675, 624, 695 ], [ 629, 675, 658, 695 ], [ 535, 695, 625, 714 ], [ 521, 712, 590, 732 ], [ 595, 712, 619, 732 ], [ 270, 713, 352, 732 ], [ 535, 748, 567, 768 ], [ 572, 748, 610, 768 ], [ 535, 768, 628, 786 ], [ 535, 785, 581, 805 ], [ 586, 785, 671, 805 ], [ 535, 803, 614, 823 ], [ 619, 803, 720, 823 ], [ 725, 803, 754, 823 ], [ 759, 803, 861, 823 ], [ 535, 820, 583, 841 ], [ 588, 820, 616, 841 ], [ 535, 839, 632, 859 ], [ 258, 892, 311, 912 ], [ 315, 892, 388, 912 ], [ 393, 892, 417, 912 ], [ 422, 892, 491, 912 ], [ 496, 892, 538, 912 ], [ 543, 892, 623, 912 ], [ 628, 892, 676, 912 ], [ 681, 892, 778, 912 ], [ 783, 892, 807, 912 ], [ 812, 892, 853, 912 ], [ 117, 893, 130, 912 ], [ 139, 893, 191, 912 ], [ 117, 909, 182, 928 ], [ 258, 910, 304, 930 ], [ 309, 910, 374, 930 ], [ 379, 910, 436, 930 ], [ 441, 910, 507, 930 ], [ 512, 910, 550, 930 ], [ 555, 910, 570, 930 ], [ 575, 910, 609, 930 ], [ 613, 910, 665, 930 ], [ 670, 910, 715, 930 ], [ 720, 910, 785, 930 ], [ 117, 925, 209, 944 ] ]
[ [ 258, 107, 352, 126 ], [ 362, 106, 389, 126 ], [ 394, 106, 435, 126 ], [ 440, 106, 532, 126 ], [ 537, 106, 557, 126 ], [ 272, 124, 296, 144 ], [ 301, 124, 346, 144 ], [ 351, 124, 415, 144 ], [ 420, 124, 445, 144 ], [ 450, 124, 508, 144 ], [ 513, 124, 545, 144 ], [ 550, 124, 574, 144 ], [ 579, 124, 640, 144 ], [ 645, 124, 665, 144 ], [ 670, 124, 699, 144 ], [ 704, 124, 733, 144 ], [ 272, 143, 319, 163 ], [ 324, 143, 353, 163 ], [ 358, 143, 413, 163 ], [ 418, 143, 427, 163 ], [ 432, 143, 478, 163 ], [ 483, 143, 553, 163 ], [ 558, 143, 583, 163 ], [ 588, 143, 646, 163 ], [ 651, 143, 683, 163 ], [ 688, 143, 712, 163 ], [ 717, 143, 778, 163 ], [ 783, 143, 799, 163 ], [ 804, 143, 848, 163 ], [ 117, 195, 130, 215 ], [ 139, 195, 236, 215 ], [ 117, 211, 132, 231 ], [ 137, 211, 161, 231 ], [ 165, 211, 217, 231 ], [ 117, 227, 182, 247 ], [ 258, 195, 289, 215 ], [ 294, 195, 339, 215 ], [ 344, 195, 410, 215 ], [ 415, 195, 428, 215 ], [ 433, 195, 512, 215 ], [ 517, 195, 533, 215 ], [ 538, 195, 547, 215 ], [ 552, 196, 628, 215 ], [ 633, 195, 724, 215 ], [ 729, 195, 746, 215 ], [ 751, 195, 775, 215 ], [ 258, 212, 367, 232 ], [ 372, 212, 392, 232 ], [ 397, 212, 451, 232 ], [ 456, 212, 544, 232 ], [ 549, 212, 577, 232 ], [ 582, 212, 591, 232 ], [ 596, 214, 678, 232 ], [ 683, 212, 765, 232 ], [ 770, 212, 863, 232 ], [ 258, 230, 302, 250 ], [ 307, 230, 331, 250 ], [ 336, 230, 408, 250 ], [ 413, 230, 437, 250 ], [ 442, 230, 497, 250 ], [ 502, 230, 572, 250 ], [ 577, 230, 609, 250 ], [ 614, 230, 687, 250 ], [ 692, 230, 720, 250 ], [ 725, 230, 749, 250 ], [ 754, 230, 809, 250 ], [ 814, 230, 850, 250 ], [ 855, 230, 871, 250 ], [ 258, 247, 347, 267 ], [ 351, 247, 367, 267 ], [ 372, 247, 481, 267 ], [ 485, 247, 514, 267 ], [ 519, 247, 580, 267 ], [ 584, 247, 651, 267 ], [ 258, 283, 302, 302 ], [ 312, 282, 333, 302 ], [ 338, 282, 362, 302 ], [ 367, 282, 447, 302 ], [ 452, 282, 500, 302 ], [ 505, 282, 574, 302 ], [ 579, 282, 624, 302 ], [ 629, 282, 702, 302 ], [ 707, 282, 760, 302 ], [ 764, 282, 790, 302 ], [ 794, 282, 852, 302 ], [ 258, 299, 318, 320 ], [ 323, 299, 382, 320 ], [ 387, 299, 480, 320 ], [ 484, 299, 501, 320 ], [ 506, 299, 600, 320 ], [ 605, 299, 664, 320 ], [ 669, 299, 766, 320 ], [ 776, 299, 832, 320 ], [ 837, 299, 846, 320 ], [ 258, 317, 294, 337 ], [ 299, 317, 318, 337 ], [ 323, 317, 388, 337 ], [ 393, 317, 408, 337 ], [ 413, 317, 422, 337 ], [ 426, 317, 486, 337 ], [ 491, 317, 590, 337 ], [ 595, 317, 647, 337 ], [ 652, 317, 671, 337 ], [ 675, 317, 711, 337 ], [ 716, 317, 752, 337 ], [ 757, 317, 773, 337 ], [ 778, 317, 831, 337 ], [ 836, 317, 852, 337 ], [ 258, 334, 314, 354 ], [ 258, 370, 353, 389 ], [ 363, 369, 390, 389 ], [ 395, 369, 435, 389 ], [ 440, 369, 533, 389 ], [ 538, 369, 557, 389 ], [ 272, 388, 318, 408 ], [ 323, 388, 388, 408 ], [ 393, 389, 474, 408 ], [ 479, 388, 504, 408 ], [ 509, 388, 563, 408 ], [ 567, 388, 599, 408 ], [ 604, 388, 628, 408 ], [ 633, 388, 694, 408 ], [ 699, 388, 720, 408 ], [ 725, 388, 767, 408 ], [ 272, 406, 296, 426 ], [ 301, 408, 388, 426 ], [ 393, 406, 418, 426 ], [ 423, 406, 476, 426 ], [ 481, 406, 513, 426 ], [ 518, 406, 542, 426 ], [ 547, 406, 608, 426 ], [ 613, 406, 633, 426 ], [ 638, 406, 672, 426 ], [ 677, 406, 705, 426 ], [ 272, 425, 296, 445 ], [ 301, 425, 348, 445 ], [ 353, 425, 438, 445 ], [ 443, 425, 463, 445 ], [ 467, 425, 491, 445 ], [ 496, 426, 583, 445 ], [ 588, 425, 613, 445 ], [ 618, 425, 671, 445 ], [ 676, 425, 708, 445 ], [ 713, 425, 737, 445 ], [ 742, 425, 803, 445 ], [ 808, 425, 828, 445 ], [ 833, 425, 864, 445 ], [ 117, 477, 132, 497 ], [ 141, 477, 193, 497 ], [ 117, 493, 182, 513 ], [ 117, 509, 180, 529 ], [ 258, 477, 289, 497 ], [ 294, 477, 332, 497 ], [ 337, 477, 384, 497 ], [ 389, 477, 457, 497 ], [ 462, 477, 555, 497 ], [ 560, 477, 603, 497 ], [ 608, 477, 632, 497 ], [ 637, 477, 700, 497 ], [ 705, 477, 721, 497 ], [ 726, 477, 735, 497 ], [ 740, 477, 786, 497 ], [ 790, 477, 861, 497 ], [ 258, 513, 345, 532 ], [ 355, 512, 382, 532 ], [ 387, 512, 428, 532 ], [ 433, 512, 525, 532 ], [ 530, 512, 550, 532 ], [ 555, 512, 579, 532 ], [ 584, 512, 629, 532 ], [ 634, 512, 700, 532 ], [ 705, 512, 762, 532 ], [ 767, 512, 792, 532 ], [ 796, 512, 820, 532 ], [ 286, 548, 342, 569 ], [ 347, 548, 418, 569 ], [ 423, 548, 492, 569 ], [ 651, 548, 747, 569 ], [ 270, 567, 346, 586 ], [ 521, 566, 590, 586 ], [ 595, 566, 619, 586 ], [ 535, 603, 633, 622 ], [ 535, 622, 609, 641 ], [ 614, 620, 637, 641 ], [ 642, 620, 678, 641 ], [ 683, 620, 722, 641 ], [ 727, 620, 812, 641 ], [ 535, 640, 606, 659 ], [ 535, 659, 600, 677 ], [ 605, 659, 628, 677 ], [ 633, 659, 707, 678 ], [ 712, 657, 735, 678 ], [ 740, 657, 776, 678 ], [ 781, 657, 820, 678 ], [ 535, 675, 624, 695 ], [ 629, 675, 658, 695 ], [ 535, 695, 625, 714 ], [ 270, 713, 352, 732 ], [ 521, 712, 590, 732 ], [ 595, 712, 619, 732 ], [ 535, 748, 567, 768 ], [ 572, 748, 610, 768 ], [ 535, 768, 628, 786 ], [ 535, 785, 581, 805 ], [ 586, 785, 671, 805 ], [ 535, 803, 614, 823 ], [ 619, 803, 720, 823 ], [ 725, 803, 754, 823 ], [ 759, 803, 861, 823 ], [ 535, 820, 583, 841 ], [ 588, 820, 616, 841 ], [ 535, 839, 632, 859 ], [ 117, 893, 130, 912 ], [ 139, 893, 191, 912 ], [ 117, 909, 182, 928 ], [ 117, 925, 209, 944 ], [ 258, 892, 311, 912 ], [ 315, 892, 388, 912 ], [ 393, 892, 417, 912 ], [ 422, 892, 491, 912 ], [ 496, 892, 538, 912 ], [ 543, 892, 623, 912 ], [ 628, 892, 676, 912 ], [ 681, 892, 778, 912 ], [ 783, 892, 807, 912 ], [ 812, 892, 853, 912 ], [ 258, 910, 304, 930 ], [ 309, 910, 374, 930 ], [ 379, 910, 436, 930 ], [ 441, 910, 507, 930 ], [ 512, 910, 550, 930 ], [ 555, 910, 570, 930 ], [ 575, 910, 609, 930 ], [ 613, 910, 665, 930 ], [ 670, 910, 715, 930 ], [ 720, 910, 785, 930 ] ]
sufficiency, and transfers disability and entitlement data into a corporate Using VBMS-R database of claimants who have applied for VA benefits. For more information on VBMS-R, see . Reference: 2. Introduction This topic contains information on the part, including Introduction Introduction and Introduction, Introduction. January 20, 2015 Change Date The purpose of the is to a. Purpose of Introduction the Introduction identify the claimant, and acknowledge the qualifying service, including any special Veteran’s considerations relevant to the claim, such as former prisoner of war (FPOW) status. The level of detail in the introduction depends on the complexity of Note: each issue. The may be generated using the narrative assistance function in b. Generating Introduction the VBMS-R or may be composed manually. Use the guidelines listed below Introduction when manually composing the Introduction. Write directly to the claimant. is acceptable usage. “You” Include all periods of service. Use the format month/day/year to month/day/year. Service dates must be checked for accuracy. Note: For more information on using the narrative assistance function, Reference: see the .
Using VBMS-R sufficiency, and transfers disability and entitlement data into a corporate database of claimants who have applied for VA benefits. Reference: For more information on VBMS-R, see . 2. Introduction Introduction This topic contains information on the Introduction part, including Introduction, and Introduction. Change Date January 20, 2015 a. Purpose of the Introduction The purpose of the Introduction is to identify the claimant, and acknowledge the Veteran’s qualifying service, including any special considerations relevant to the claim, such as former prisoner of war (FPOW) status. Note: The level of detail in the introduction depends on the complexity of each issue. b. Generating the Introduction The Introduction may be generated using the narrative assistance function in VBMS-R or may be composed manually. Use the guidelines listed below when manually composing the Introduction. Write directly to the claimant. “You” is acceptable usage. Include all periods of service. Use the format month/day/year to month/day/year. Note: Service dates must be checked for accuracy. Reference: For more information on using the narrative assistance function, see the .
0.695045
[ 10, 11, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 28, 21, 22, 23, 24, 25, 26, 27, 29, 30, 39, 31, 32, 33, 34, 35, 36, 40, 37, 38, 42, 41, 43, 47, 48, 44, 45, 46, 55, 56, 57, 59, 60, 49, 50, 51, 52, 58, 53, 54, 61, 62, 63, 64, 65, 66, 72, 67, 68, 69, 70, 71, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 98, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 99, 100, 111, 112, 114, 126, 101, 113, 102, 103, 104, 105, 106, 107, 108, 109, 110, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 140, 137, 138, 139, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 159, 152, 153, 154, 155, 156, 157, 158, 169, 160, 161, 162, 163, 164, 165, 166, 167, 168, 170, 171, 172 ]
M21-1III_iv_6_SecC.docx
task-1431-623
2
[ [ 258, 88, 350, 108 ], [ 355, 88, 384, 108 ], [ 388, 88, 456, 108 ], [ 461, 88, 534, 108 ], [ 539, 88, 567, 108 ], [ 572, 88, 660, 108 ], [ 665, 88, 698, 108 ], [ 703, 88, 733, 108 ], [ 738, 88, 747, 108 ], [ 752, 88, 826, 108 ], [ 117, 89, 161, 108 ], [ 166, 89, 237, 108 ], [ 258, 106, 326, 126 ], [ 331, 106, 347, 126 ], [ 352, 106, 427, 126 ], [ 432, 106, 466, 126 ], [ 471, 106, 508, 126 ], [ 513, 106, 570, 126 ], [ 575, 106, 598, 126 ], [ 603, 106, 631, 126 ], [ 636, 106, 703, 126 ], [ 355, 140, 382, 161 ], [ 387, 140, 428, 161 ], [ 433, 140, 525, 161 ], [ 530, 140, 550, 161 ], [ 555, 140, 635, 161 ], [ 640, 140, 665, 161 ], [ 669, 140, 674, 161 ], [ 258, 142, 345, 161 ], [ 117, 248, 139, 276 ], [ 153, 248, 306, 276 ], [ 258, 306, 293, 327 ], [ 298, 306, 337, 327 ], [ 342, 306, 407, 327 ], [ 412, 306, 504, 327 ], [ 509, 306, 529, 327 ], [ 534, 306, 558, 327 ], [ 666, 306, 701, 327 ], [ 706, 306, 780, 327 ], [ 117, 307, 215, 326 ], [ 563, 308, 661, 327 ], [ 385, 343, 413, 363 ], [ 277, 344, 380, 363 ], [ 272, 363, 375, 381 ], [ 258, 413, 319, 433 ], [ 323, 413, 348, 433 ], [ 353, 413, 392, 433 ], [ 117, 414, 176, 433 ], [ 181, 414, 217, 433 ], [ 258, 465, 288, 485 ], [ 293, 465, 355, 485 ], [ 360, 465, 376, 485 ], [ 381, 465, 405, 485 ], [ 513, 465, 526, 485 ], [ 531, 465, 547, 485 ], [ 117, 466, 131, 485 ], [ 140, 466, 203, 485 ], [ 207, 466, 222, 485 ], [ 410, 467, 508, 485 ], [ 117, 482, 141, 501 ], [ 117, 498, 215, 517 ], [ 272, 501, 333, 522 ], [ 338, 501, 362, 522 ], [ 367, 501, 439, 522 ], [ 444, 501, 472, 522 ], [ 272, 520, 375, 540 ], [ 380, 520, 404, 540 ], [ 490, 520, 571, 540 ], [ 575, 520, 636, 540 ], [ 641, 520, 715, 540 ], [ 720, 520, 748, 540 ], [ 753, 520, 807, 540 ], [ 409, 522, 485, 539 ], [ 272, 537, 385, 557 ], [ 390, 537, 453, 557 ], [ 458, 537, 474, 557 ], [ 478, 537, 502, 557 ], [ 507, 537, 556, 557 ], [ 561, 537, 596, 557 ], [ 601, 537, 618, 557 ], [ 623, 537, 676, 557 ], [ 681, 537, 745, 557 ], [ 750, 537, 766, 557 ], [ 771, 537, 801, 557 ], [ 806, 537, 873, 557 ], [ 272, 555, 321, 575 ], [ 311, 589, 342, 610 ], [ 346, 589, 384, 610 ], [ 389, 589, 406, 610 ], [ 411, 589, 454, 610 ], [ 459, 589, 474, 610 ], [ 479, 589, 503, 610 ], [ 508, 589, 604, 610 ], [ 609, 589, 673, 610 ], [ 678, 589, 698, 610 ], [ 703, 589, 727, 610 ], [ 732, 589, 820, 610 ], [ 825, 589, 841, 610 ], [ 258, 591, 301, 610 ], [ 258, 607, 293, 627 ], [ 298, 607, 342, 627 ], [ 258, 659, 288, 679 ], [ 396, 659, 430, 679 ], [ 435, 659, 453, 679 ], [ 458, 659, 534, 679 ], [ 539, 659, 582, 679 ], [ 586, 659, 611, 679 ], [ 615, 659, 685, 679 ], [ 690, 659, 768, 679 ], [ 773, 659, 839, 679 ], [ 844, 659, 859, 679 ], [ 117, 660, 132, 679 ], [ 141, 660, 228, 679 ], [ 293, 661, 391, 679 ], [ 117, 676, 141, 695 ], [ 258, 677, 333, 697 ], [ 338, 677, 354, 697 ], [ 359, 677, 393, 697 ], [ 398, 677, 416, 697 ], [ 421, 677, 501, 697 ], [ 506, 677, 583, 697 ], [ 593, 677, 624, 697 ], [ 629, 677, 653, 697 ], [ 658, 677, 738, 697 ], [ 743, 677, 785, 697 ], [ 790, 677, 838, 697 ], [ 117, 692, 215, 711 ], [ 258, 694, 300, 714 ], [ 305, 694, 378, 714 ], [ 383, 694, 469, 714 ], [ 474, 694, 498, 714 ], [ 503, 695, 606, 714 ], [ 272, 730, 317, 750 ], [ 321, 730, 381, 750 ], [ 386, 730, 401, 750 ], [ 406, 730, 430, 750 ], [ 435, 730, 508, 750 ], [ 568, 730, 582, 750 ], [ 586, 730, 669, 750 ], [ 674, 730, 723, 750 ], [ 513, 732, 564, 749 ], [ 272, 749, 331, 769 ], [ 335, 749, 355, 769 ], [ 360, 749, 418, 769 ], [ 423, 749, 439, 769 ], [ 444, 749, 504, 769 ], [ 514, 749, 545, 769 ], [ 549, 749, 573, 769 ], [ 578, 749, 631, 769 ], [ 635, 749, 759, 769 ], [ 764, 749, 779, 769 ], [ 272, 766, 400, 786 ], [ 311, 801, 370, 821 ], [ 375, 801, 415, 821 ], [ 420, 801, 458, 821 ], [ 463, 801, 482, 821 ], [ 486, 801, 551, 821 ], [ 555, 801, 578, 821 ], [ 583, 801, 658, 821 ], [ 258, 802, 301, 821 ], [ 355, 835, 382, 856 ], [ 387, 835, 427, 856 ], [ 432, 835, 525, 856 ], [ 530, 835, 549, 856 ], [ 554, 835, 597, 856 ], [ 601, 835, 625, 856 ], [ 630, 835, 700, 856 ], [ 705, 835, 783, 856 ], [ 788, 835, 858, 856 ], [ 258, 837, 345, 856 ], [ 258, 853, 283, 873 ], [ 288, 853, 312, 873 ], [ 316, 853, 321, 873 ] ]
[ [ 117, 89, 161, 108 ], [ 166, 89, 237, 108 ], [ 258, 88, 350, 108 ], [ 355, 88, 384, 108 ], [ 388, 88, 456, 108 ], [ 461, 88, 534, 108 ], [ 539, 88, 567, 108 ], [ 572, 88, 660, 108 ], [ 665, 88, 698, 108 ], [ 703, 88, 733, 108 ], [ 738, 88, 747, 108 ], [ 752, 88, 826, 108 ], [ 258, 106, 326, 126 ], [ 331, 106, 347, 126 ], [ 352, 106, 427, 126 ], [ 432, 106, 466, 126 ], [ 471, 106, 508, 126 ], [ 513, 106, 570, 126 ], [ 575, 106, 598, 126 ], [ 603, 106, 631, 126 ], [ 636, 106, 703, 126 ], [ 258, 142, 345, 161 ], [ 355, 140, 382, 161 ], [ 387, 140, 428, 161 ], [ 433, 140, 525, 161 ], [ 530, 140, 550, 161 ], [ 555, 140, 635, 161 ], [ 640, 140, 665, 161 ], [ 669, 140, 674, 161 ], [ 117, 248, 139, 276 ], [ 153, 248, 306, 276 ], [ 117, 307, 215, 326 ], [ 258, 306, 293, 327 ], [ 298, 306, 337, 327 ], [ 342, 306, 407, 327 ], [ 412, 306, 504, 327 ], [ 509, 306, 529, 327 ], [ 534, 306, 558, 327 ], [ 563, 308, 661, 327 ], [ 666, 306, 701, 327 ], [ 706, 306, 780, 327 ], [ 277, 344, 380, 363 ], [ 385, 343, 413, 363 ], [ 272, 363, 375, 381 ], [ 117, 414, 176, 433 ], [ 181, 414, 217, 433 ], [ 258, 413, 319, 433 ], [ 323, 413, 348, 433 ], [ 353, 413, 392, 433 ], [ 117, 466, 131, 485 ], [ 140, 466, 203, 485 ], [ 207, 466, 222, 485 ], [ 117, 482, 141, 501 ], [ 117, 498, 215, 517 ], [ 258, 465, 288, 485 ], [ 293, 465, 355, 485 ], [ 360, 465, 376, 485 ], [ 381, 465, 405, 485 ], [ 410, 467, 508, 485 ], [ 513, 465, 526, 485 ], [ 531, 465, 547, 485 ], [ 272, 501, 333, 522 ], [ 338, 501, 362, 522 ], [ 367, 501, 439, 522 ], [ 444, 501, 472, 522 ], [ 272, 520, 375, 540 ], [ 380, 520, 404, 540 ], [ 409, 522, 485, 539 ], [ 490, 520, 571, 540 ], [ 575, 520, 636, 540 ], [ 641, 520, 715, 540 ], [ 720, 520, 748, 540 ], [ 753, 520, 807, 540 ], [ 272, 537, 385, 557 ], [ 390, 537, 453, 557 ], [ 458, 537, 474, 557 ], [ 478, 537, 502, 557 ], [ 507, 537, 556, 557 ], [ 561, 537, 596, 557 ], [ 601, 537, 618, 557 ], [ 623, 537, 676, 557 ], [ 681, 537, 745, 557 ], [ 750, 537, 766, 557 ], [ 771, 537, 801, 557 ], [ 806, 537, 873, 557 ], [ 272, 555, 321, 575 ], [ 258, 591, 301, 610 ], [ 311, 589, 342, 610 ], [ 346, 589, 384, 610 ], [ 389, 589, 406, 610 ], [ 411, 589, 454, 610 ], [ 459, 589, 474, 610 ], [ 479, 589, 503, 610 ], [ 508, 589, 604, 610 ], [ 609, 589, 673, 610 ], [ 678, 589, 698, 610 ], [ 703, 589, 727, 610 ], [ 732, 589, 820, 610 ], [ 825, 589, 841, 610 ], [ 258, 607, 293, 627 ], [ 298, 607, 342, 627 ], [ 117, 660, 132, 679 ], [ 141, 660, 228, 679 ], [ 117, 676, 141, 695 ], [ 117, 692, 215, 711 ], [ 258, 659, 288, 679 ], [ 293, 661, 391, 679 ], [ 396, 659, 430, 679 ], [ 435, 659, 453, 679 ], [ 458, 659, 534, 679 ], [ 539, 659, 582, 679 ], [ 586, 659, 611, 679 ], [ 615, 659, 685, 679 ], [ 690, 659, 768, 679 ], [ 773, 659, 839, 679 ], [ 844, 659, 859, 679 ], [ 258, 677, 333, 697 ], [ 338, 677, 354, 697 ], [ 359, 677, 393, 697 ], [ 398, 677, 416, 697 ], [ 421, 677, 501, 697 ], [ 506, 677, 583, 697 ], [ 593, 677, 624, 697 ], [ 629, 677, 653, 697 ], [ 658, 677, 738, 697 ], [ 743, 677, 785, 697 ], [ 790, 677, 838, 697 ], [ 258, 694, 300, 714 ], [ 305, 694, 378, 714 ], [ 383, 694, 469, 714 ], [ 474, 694, 498, 714 ], [ 503, 695, 606, 714 ], [ 272, 730, 317, 750 ], [ 321, 730, 381, 750 ], [ 386, 730, 401, 750 ], [ 406, 730, 430, 750 ], [ 435, 730, 508, 750 ], [ 513, 732, 564, 749 ], [ 568, 730, 582, 750 ], [ 586, 730, 669, 750 ], [ 674, 730, 723, 750 ], [ 272, 749, 331, 769 ], [ 335, 749, 355, 769 ], [ 360, 749, 418, 769 ], [ 423, 749, 439, 769 ], [ 444, 749, 504, 769 ], [ 514, 749, 545, 769 ], [ 549, 749, 573, 769 ], [ 578, 749, 631, 769 ], [ 635, 749, 759, 769 ], [ 764, 749, 779, 769 ], [ 272, 766, 400, 786 ], [ 258, 802, 301, 821 ], [ 311, 801, 370, 821 ], [ 375, 801, 415, 821 ], [ 420, 801, 458, 821 ], [ 463, 801, 482, 821 ], [ 486, 801, 551, 821 ], [ 555, 801, 578, 821 ], [ 583, 801, 658, 821 ], [ 258, 837, 345, 856 ], [ 355, 835, 382, 856 ], [ 387, 835, 427, 856 ], [ 432, 835, 525, 856 ], [ 530, 835, 549, 856 ], [ 554, 835, 597, 856 ], [ 601, 835, 625, 856 ], [ 630, 835, 700, 856 ], [ 705, 835, 783, 856 ], [ 788, 835, 858, 856 ], [ 258, 853, 283, 873 ], [ 288, 853, 312, 873 ], [ 316, 853, 321, 873 ] ]
Change Date January 18, 2016 a. Disposition Once an 800 series work item has been reviewed, determine if follow-up of an 800 Series action is required. Work Item After Review See the table below for actions to take after reviewing the 800 series work item. Then ... If… no action is required PCAN the 800 series work item using the Msg Rvwd, no action reason “VETSNET necessary” additional action is required PCLR the 800 series work item using the Msg Rvwd, work under reason “VETSNET and proper EP,” work under the proper end product (EP). Do not PCLR an 890WI Exception: (SAH/SHA) until final action is taken under the proper EP. When action is required, use the date of the 800 series work item as the date b. Establishing Date of Claim of claim for the controlling EP. When 800 Series Work Do use the date of review as the date of claim for the Important: not Item Requires controlling EP. Action For more information on 890WIs (SAH/SHA), see Reference: M21-1, Part IX, Subpart i, 3.3.c, and M21-1, Part IX, Subpart i, 3.3.g. c. Prioritizing All 800 series work items affecting payments require prompt attention. 800 Series Work Item ROs and PMCs must consistently prioritize 800 series work items that potentially result in an underpayment, overpayment, or potential financial hardship. d. EP for In addition to establishing the appropriate controlling EP when an 800 series Potential work item requires action, establish an EP 693 to control for potential Underpayment underpayment overpayment of benefits. Use the date of the 800 series or or work item as the date of claim for the EP 693. Overpayment If an EP 600 is subsequently established to provide notice of a proposed adverse action
Change Date January 18, 2016 a. Disposition of an 800 Series Work Item After Review Once an 800 series work item has been reviewed, determine if follow-up action is required. See the table below for actions to take after reviewing the 800 series work item. If… Then ... no action is required PCAN the 800 series work item using the reason “VETSNET Msg Rvwd, no action necessary” additional action is required PCLR the 800 series work item using the reason “VETSNET Msg Rvwd, work under proper EP,” and work under the proper end product (EP). Exception: Do not PCLR an 890WI (SAH/SHA) until final action is taken under the proper EP. b. Establishing Date of Claim When 800 Series Work Item Requires Action When action is required, use the date of the 800 series work item as the date of claim for the controlling EP. Important: Do not use the date of review as the date of claim for the controlling EP. Reference: For more information on 890WIs (SAH/SHA), see M21-1, Part IX, Subpart i, 3.3.c, and M21-1, Part IX, Subpart i, 3.3.g. c. Prioritizing 800 Series Work Item All 800 series work items affecting payments require prompt attention. ROs and PMCs must consistently prioritize 800 series work items that potentially result in an underpayment, overpayment, or potential financial hardship. d. EP for Potential Underpayment or Overpayment In addition to establishing the appropriate controlling EP when an 800 series work item requires action, establish an EP 693 to control for potential underpayment or overpayment of benefits. Use the date of the 800 series work item as the date of claim for the EP 693. If an EP 600 is subsequently established to provide notice of a proposed adverse action
0.783971
[ 0, 1, 2, 3, 4, 5, 6, 19, 20, 21, 22, 26, 27, 28, 29, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 23, 24, 25, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 64, 65, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 83, 84, 79, 80, 81, 82, 86, 87, 85, 88, 89, 90, 91, 92, 93, 94, 100, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 127, 128, 129, 130, 131, 138, 139, 140, 141, 157, 158, 161, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 132, 133, 134, 135, 136, 137, 155, 142, 156, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 159, 160, 169, 162, 163, 164, 165, 166, 167, 168, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 195, 196, 197, 198, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 235, 248, 261, 273, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 260, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288 ]
M21-1III_v_10_SecA.docx
task-1431-642
5
[ [ 117, 81, 176, 100 ], [ 181, 81, 217, 100 ], [ 258, 81, 319, 101 ], [ 324, 81, 349, 101 ], [ 353, 81, 393, 101 ], [ 117, 133, 131, 153 ], [ 140, 133, 226, 153 ], [ 258, 133, 300, 153 ], [ 304, 133, 323, 153 ], [ 328, 133, 357, 153 ], [ 362, 133, 407, 153 ], [ 412, 133, 452, 153 ], [ 457, 133, 492, 153 ], [ 497, 133, 523, 153 ], [ 528, 133, 565, 153 ], [ 570, 133, 646, 153 ], [ 652, 133, 730, 153 ], [ 735, 133, 747, 153 ], [ 752, 133, 829, 153 ], [ 117, 149, 132, 169 ], [ 137, 149, 156, 169 ], [ 160, 149, 187, 169 ], [ 192, 149, 238, 169 ], [ 258, 150, 306, 170 ], [ 311, 150, 324, 170 ], [ 329, 150, 399, 170 ], [ 117, 165, 162, 185 ], [ 167, 165, 203, 185 ], [ 117, 181, 158, 200 ], [ 163, 181, 218, 200 ], [ 258, 185, 287, 205 ], [ 291, 185, 315, 205 ], [ 320, 185, 358, 205 ], [ 363, 185, 411, 205 ], [ 416, 185, 439, 205 ], [ 444, 185, 500, 205 ], [ 504, 185, 520, 205 ], [ 525, 185, 557, 205 ], [ 562, 185, 598, 205 ], [ 603, 185, 681, 205 ], [ 686, 185, 710, 205 ], [ 715, 185, 744, 205 ], [ 749, 185, 794, 205 ], [ 799, 185, 839, 205 ], [ 258, 202, 298, 223 ], [ 501, 238, 545, 259 ], [ 550, 238, 564, 259 ], [ 258, 241, 292, 257 ], [ 258, 256, 278, 276 ], [ 283, 256, 331, 276 ], [ 336, 256, 349, 276 ], [ 354, 256, 419, 276 ], [ 514, 257, 566, 277 ], [ 571, 257, 595, 277 ], [ 600, 257, 629, 277 ], [ 634, 257, 679, 277 ], [ 684, 257, 724, 277 ], [ 729, 257, 764, 277 ], [ 769, 257, 811, 277 ], [ 816, 257, 840, 277 ], [ 664, 276, 698, 295 ], [ 703, 276, 751, 295 ], [ 756, 276, 776, 295 ], [ 781, 276, 830, 295 ], [ 514, 277, 565, 294 ], [ 570, 277, 659, 295 ], [ 514, 293, 600, 311 ], [ 258, 310, 337, 330 ], [ 342, 310, 390, 330 ], [ 394, 310, 408, 330 ], [ 413, 310, 478, 330 ], [ 514, 311, 563, 331 ], [ 568, 311, 592, 331 ], [ 596, 311, 626, 331 ], [ 631, 311, 675, 331 ], [ 680, 311, 721, 331 ], [ 726, 311, 761, 331 ], [ 766, 311, 808, 331 ], [ 813, 311, 837, 331 ], [ 664, 330, 698, 349 ], [ 703, 330, 751, 349 ], [ 756, 330, 796, 349 ], [ 800, 330, 846, 349 ], [ 514, 331, 565, 348 ], [ 570, 331, 659, 349 ], [ 615, 346, 643, 366 ], [ 514, 347, 567, 366 ], [ 572, 347, 610, 365 ], [ 514, 365, 554, 385 ], [ 559, 365, 604, 385 ], [ 608, 365, 632, 385 ], [ 637, 365, 688, 385 ], [ 693, 365, 722, 385 ], [ 727, 365, 787, 385 ], [ 792, 365, 832, 385 ], [ 596, 399, 620, 419 ], [ 625, 399, 650, 419 ], [ 655, 399, 703, 419 ], [ 708, 399, 727, 419 ], [ 732, 399, 787, 419 ], [ 499, 400, 586, 419 ], [ 499, 417, 596, 437 ], [ 600, 417, 636, 437 ], [ 641, 417, 677, 437 ], [ 682, 417, 730, 437 ], [ 735, 417, 748, 437 ], [ 753, 417, 796, 437 ], [ 800, 417, 845, 437 ], [ 499, 434, 523, 454 ], [ 527, 434, 578, 454 ], [ 583, 434, 611, 454 ], [ 258, 487, 305, 507 ], [ 310, 487, 358, 507 ], [ 363, 487, 376, 507 ], [ 381, 487, 451, 507 ], [ 456, 487, 482, 507 ], [ 487, 487, 511, 507 ], [ 516, 487, 548, 507 ], [ 553, 487, 570, 507 ], [ 575, 487, 599, 507 ], [ 604, 487, 633, 507 ], [ 638, 487, 683, 507 ], [ 687, 487, 728, 507 ], [ 733, 487, 767, 507 ], [ 772, 487, 789, 507 ], [ 794, 487, 818, 507 ], [ 822, 487, 855, 507 ], [ 117, 488, 132, 507 ], [ 141, 488, 236, 507 ], [ 117, 504, 153, 523 ], [ 158, 504, 173, 523 ], [ 177, 504, 224, 523 ], [ 258, 504, 275, 525 ], [ 280, 504, 323, 525 ], [ 328, 504, 351, 525 ], [ 356, 504, 380, 525 ], [ 385, 504, 471, 525 ], [ 475, 504, 503, 525 ], [ 117, 520, 163, 539 ], [ 168, 520, 195, 539 ], [ 117, 535, 163, 555 ], [ 168, 535, 213, 555 ], [ 356, 539, 380, 559 ], [ 415, 539, 442, 559 ], [ 446, 539, 470, 559 ], [ 475, 539, 508, 559 ], [ 513, 539, 529, 559 ], [ 534, 539, 587, 559 ], [ 592, 539, 608, 559 ], [ 613, 539, 637, 559 ], [ 642, 539, 675, 559 ], [ 680, 539, 696, 559 ], [ 701, 539, 744, 559 ], [ 749, 539, 772, 559 ], [ 777, 539, 801, 559 ], [ 258, 540, 346, 559 ], [ 384, 540, 411, 560 ], [ 117, 552, 153, 571 ], [ 158, 552, 227, 571 ], [ 258, 557, 344, 577 ], [ 349, 557, 377, 577 ], [ 117, 567, 168, 587 ], [ 355, 592, 382, 612 ], [ 387, 592, 428, 612 ], [ 433, 592, 525, 612 ], [ 530, 592, 550, 612 ], [ 555, 592, 617, 612 ], [ 622, 592, 724, 612 ], [ 728, 592, 753, 612 ], [ 258, 593, 345, 612 ], [ 271, 610, 330, 630 ], [ 334, 610, 366, 630 ], [ 371, 610, 396, 630 ], [ 401, 610, 462, 630 ], [ 467, 610, 478, 630 ], [ 483, 610, 526, 630 ], [ 531, 610, 559, 630 ], [ 271, 629, 330, 649 ], [ 334, 629, 366, 649 ], [ 371, 629, 396, 649 ], [ 401, 629, 462, 649 ], [ 467, 629, 478, 649 ], [ 483, 629, 527, 649 ], [ 119, 681, 131, 701 ], [ 140, 681, 229, 701 ], [ 258, 681, 283, 701 ], [ 288, 681, 318, 701 ], [ 323, 681, 367, 701 ], [ 372, 681, 412, 701 ], [ 417, 681, 460, 701 ], [ 465, 681, 534, 701 ], [ 539, 681, 614, 701 ], [ 619, 681, 675, 701 ], [ 680, 681, 736, 701 ], [ 741, 681, 815, 701 ], [ 119, 697, 148, 718 ], [ 153, 697, 203, 718 ], [ 119, 715, 168, 736 ], [ 172, 715, 212, 736 ], [ 258, 716, 293, 736 ], [ 298, 716, 326, 736 ], [ 331, 716, 381, 736 ], [ 385, 716, 424, 736 ], [ 429, 716, 522, 736 ], [ 527, 716, 599, 736 ], [ 604, 716, 633, 736 ], [ 638, 716, 683, 736 ], [ 687, 716, 728, 736 ], [ 733, 716, 775, 736 ], [ 780, 716, 809, 736 ], [ 258, 733, 342, 753 ], [ 347, 733, 390, 753 ], [ 395, 733, 411, 753 ], [ 416, 733, 434, 753 ], [ 439, 733, 556, 753 ], [ 561, 733, 668, 753 ], [ 673, 733, 690, 753 ], [ 695, 733, 763, 753 ], [ 768, 733, 837, 753 ], [ 258, 750, 331, 771 ], [ 117, 803, 132, 823 ], [ 141, 803, 164, 823 ], [ 168, 803, 191, 823 ], [ 258, 803, 274, 823 ], [ 280, 803, 344, 823 ], [ 349, 803, 364, 823 ], [ 369, 803, 463, 823 ], [ 467, 803, 491, 823 ], [ 496, 803, 586, 823 ], [ 591, 803, 677, 823 ], [ 682, 803, 704, 823 ], [ 709, 803, 752, 823 ], [ 757, 803, 775, 823 ], [ 780, 803, 810, 823 ], [ 815, 803, 859, 823 ], [ 117, 819, 186, 839 ], [ 258, 820, 299, 840 ], [ 303, 820, 338, 840 ], [ 343, 820, 406, 840 ], [ 411, 820, 464, 840 ], [ 469, 820, 538, 840 ], [ 543, 820, 561, 840 ], [ 566, 820, 589, 840 ], [ 594, 820, 623, 840 ], [ 628, 820, 644, 840 ], [ 648, 820, 704, 840 ], [ 709, 820, 732, 840 ], [ 736, 820, 805, 840 ], [ 117, 835, 233, 855 ], [ 258, 838, 370, 858 ], [ 398, 838, 500, 858 ], [ 505, 838, 521, 858 ], [ 526, 838, 593, 858 ], [ 603, 838, 633, 858 ], [ 638, 838, 662, 858 ], [ 667, 838, 700, 858 ], [ 705, 838, 721, 858 ], [ 726, 838, 750, 858 ], [ 755, 838, 784, 858 ], [ 789, 838, 834, 858 ], [ 375, 839, 393, 858 ], [ 117, 851, 134, 871 ], [ 258, 855, 299, 875 ], [ 303, 855, 338, 875 ], [ 343, 855, 360, 875 ], [ 364, 855, 388, 875 ], [ 393, 855, 426, 875 ], [ 431, 855, 447, 875 ], [ 452, 855, 496, 875 ], [ 501, 855, 524, 875 ], [ 528, 855, 552, 875 ], [ 557, 855, 580, 875 ], [ 585, 855, 619, 875 ], [ 117, 867, 223, 887 ], [ 258, 890, 271, 910 ], [ 276, 890, 295, 910 ], [ 300, 890, 322, 910 ], [ 327, 890, 357, 910 ], [ 362, 890, 375, 910 ], [ 380, 890, 482, 910 ], [ 487, 890, 574, 910 ], [ 579, 890, 594, 910 ], [ 599, 890, 659, 910 ], [ 664, 890, 712, 910 ], [ 717, 890, 733, 910 ], [ 738, 890, 747, 910 ], [ 752, 890, 824, 910 ], [ 258, 907, 318, 928 ], [ 323, 907, 371, 928 ] ]
[ [ 117, 81, 176, 100 ], [ 181, 81, 217, 100 ], [ 258, 81, 319, 101 ], [ 324, 81, 349, 101 ], [ 353, 81, 393, 101 ], [ 117, 133, 131, 153 ], [ 140, 133, 226, 153 ], [ 117, 149, 132, 169 ], [ 137, 149, 156, 169 ], [ 160, 149, 187, 169 ], [ 192, 149, 238, 169 ], [ 117, 165, 162, 185 ], [ 167, 165, 203, 185 ], [ 117, 181, 158, 200 ], [ 163, 181, 218, 200 ], [ 258, 133, 300, 153 ], [ 304, 133, 323, 153 ], [ 328, 133, 357, 153 ], [ 362, 133, 407, 153 ], [ 412, 133, 452, 153 ], [ 457, 133, 492, 153 ], [ 497, 133, 523, 153 ], [ 528, 133, 565, 153 ], [ 570, 133, 646, 153 ], [ 652, 133, 730, 153 ], [ 735, 133, 747, 153 ], [ 752, 133, 829, 153 ], [ 258, 150, 306, 170 ], [ 311, 150, 324, 170 ], [ 329, 150, 399, 170 ], [ 258, 185, 287, 205 ], [ 291, 185, 315, 205 ], [ 320, 185, 358, 205 ], [ 363, 185, 411, 205 ], [ 416, 185, 439, 205 ], [ 444, 185, 500, 205 ], [ 504, 185, 520, 205 ], [ 525, 185, 557, 205 ], [ 562, 185, 598, 205 ], [ 603, 185, 681, 205 ], [ 686, 185, 710, 205 ], [ 715, 185, 744, 205 ], [ 749, 185, 794, 205 ], [ 799, 185, 839, 205 ], [ 258, 202, 298, 223 ], [ 258, 241, 292, 257 ], [ 501, 238, 545, 259 ], [ 550, 238, 564, 259 ], [ 258, 256, 278, 276 ], [ 283, 256, 331, 276 ], [ 336, 256, 349, 276 ], [ 354, 256, 419, 276 ], [ 514, 257, 566, 277 ], [ 571, 257, 595, 277 ], [ 600, 257, 629, 277 ], [ 634, 257, 679, 277 ], [ 684, 257, 724, 277 ], [ 729, 257, 764, 277 ], [ 769, 257, 811, 277 ], [ 816, 257, 840, 277 ], [ 514, 277, 565, 294 ], [ 570, 277, 659, 295 ], [ 664, 276, 698, 295 ], [ 703, 276, 751, 295 ], [ 756, 276, 776, 295 ], [ 781, 276, 830, 295 ], [ 514, 293, 600, 311 ], [ 258, 310, 337, 330 ], [ 342, 310, 390, 330 ], [ 394, 310, 408, 330 ], [ 413, 310, 478, 330 ], [ 514, 311, 563, 331 ], [ 568, 311, 592, 331 ], [ 596, 311, 626, 331 ], [ 631, 311, 675, 331 ], [ 680, 311, 721, 331 ], [ 726, 311, 761, 331 ], [ 766, 311, 808, 331 ], [ 813, 311, 837, 331 ], [ 514, 331, 565, 348 ], [ 570, 331, 659, 349 ], [ 664, 330, 698, 349 ], [ 703, 330, 751, 349 ], [ 756, 330, 796, 349 ], [ 800, 330, 846, 349 ], [ 514, 347, 567, 366 ], [ 572, 347, 610, 365 ], [ 615, 346, 643, 366 ], [ 514, 365, 554, 385 ], [ 559, 365, 604, 385 ], [ 608, 365, 632, 385 ], [ 637, 365, 688, 385 ], [ 693, 365, 722, 385 ], [ 727, 365, 787, 385 ], [ 792, 365, 832, 385 ], [ 499, 400, 586, 419 ], [ 596, 399, 620, 419 ], [ 625, 399, 650, 419 ], [ 655, 399, 703, 419 ], [ 708, 399, 727, 419 ], [ 732, 399, 787, 419 ], [ 499, 417, 596, 437 ], [ 600, 417, 636, 437 ], [ 641, 417, 677, 437 ], [ 682, 417, 730, 437 ], [ 735, 417, 748, 437 ], [ 753, 417, 796, 437 ], [ 800, 417, 845, 437 ], [ 499, 434, 523, 454 ], [ 527, 434, 578, 454 ], [ 583, 434, 611, 454 ], [ 117, 488, 132, 507 ], [ 141, 488, 236, 507 ], [ 117, 504, 153, 523 ], [ 158, 504, 173, 523 ], [ 177, 504, 224, 523 ], [ 117, 520, 163, 539 ], [ 168, 520, 195, 539 ], [ 117, 535, 163, 555 ], [ 168, 535, 213, 555 ], [ 117, 552, 153, 571 ], [ 158, 552, 227, 571 ], [ 117, 567, 168, 587 ], [ 258, 487, 305, 507 ], [ 310, 487, 358, 507 ], [ 363, 487, 376, 507 ], [ 381, 487, 451, 507 ], [ 456, 487, 482, 507 ], [ 487, 487, 511, 507 ], [ 516, 487, 548, 507 ], [ 553, 487, 570, 507 ], [ 575, 487, 599, 507 ], [ 604, 487, 633, 507 ], [ 638, 487, 683, 507 ], [ 687, 487, 728, 507 ], [ 733, 487, 767, 507 ], [ 772, 487, 789, 507 ], [ 794, 487, 818, 507 ], [ 822, 487, 855, 507 ], [ 258, 504, 275, 525 ], [ 280, 504, 323, 525 ], [ 328, 504, 351, 525 ], [ 356, 504, 380, 525 ], [ 385, 504, 471, 525 ], [ 475, 504, 503, 525 ], [ 258, 540, 346, 559 ], [ 356, 539, 380, 559 ], [ 384, 540, 411, 560 ], [ 415, 539, 442, 559 ], [ 446, 539, 470, 559 ], [ 475, 539, 508, 559 ], [ 513, 539, 529, 559 ], [ 534, 539, 587, 559 ], [ 592, 539, 608, 559 ], [ 613, 539, 637, 559 ], [ 642, 539, 675, 559 ], [ 680, 539, 696, 559 ], [ 701, 539, 744, 559 ], [ 749, 539, 772, 559 ], [ 777, 539, 801, 559 ], [ 258, 557, 344, 577 ], [ 349, 557, 377, 577 ], [ 258, 593, 345, 612 ], [ 355, 592, 382, 612 ], [ 387, 592, 428, 612 ], [ 433, 592, 525, 612 ], [ 530, 592, 550, 612 ], [ 555, 592, 617, 612 ], [ 622, 592, 724, 612 ], [ 728, 592, 753, 612 ], [ 271, 610, 330, 630 ], [ 334, 610, 366, 630 ], [ 371, 610, 396, 630 ], [ 401, 610, 462, 630 ], [ 467, 610, 478, 630 ], [ 483, 610, 526, 630 ], [ 531, 610, 559, 630 ], [ 271, 629, 330, 649 ], [ 334, 629, 366, 649 ], [ 371, 629, 396, 649 ], [ 401, 629, 462, 649 ], [ 467, 629, 478, 649 ], [ 483, 629, 527, 649 ], [ 119, 681, 131, 701 ], [ 140, 681, 229, 701 ], [ 119, 697, 148, 718 ], [ 153, 697, 203, 718 ], [ 119, 715, 168, 736 ], [ 172, 715, 212, 736 ], [ 258, 681, 283, 701 ], [ 288, 681, 318, 701 ], [ 323, 681, 367, 701 ], [ 372, 681, 412, 701 ], [ 417, 681, 460, 701 ], [ 465, 681, 534, 701 ], [ 539, 681, 614, 701 ], [ 619, 681, 675, 701 ], [ 680, 681, 736, 701 ], [ 741, 681, 815, 701 ], [ 258, 716, 293, 736 ], [ 298, 716, 326, 736 ], [ 331, 716, 381, 736 ], [ 385, 716, 424, 736 ], [ 429, 716, 522, 736 ], [ 527, 716, 599, 736 ], [ 604, 716, 633, 736 ], [ 638, 716, 683, 736 ], [ 687, 716, 728, 736 ], [ 733, 716, 775, 736 ], [ 780, 716, 809, 736 ], [ 258, 733, 342, 753 ], [ 347, 733, 390, 753 ], [ 395, 733, 411, 753 ], [ 416, 733, 434, 753 ], [ 439, 733, 556, 753 ], [ 561, 733, 668, 753 ], [ 673, 733, 690, 753 ], [ 695, 733, 763, 753 ], [ 768, 733, 837, 753 ], [ 258, 750, 331, 771 ], [ 117, 803, 132, 823 ], [ 141, 803, 164, 823 ], [ 168, 803, 191, 823 ], [ 117, 819, 186, 839 ], [ 117, 835, 233, 855 ], [ 117, 851, 134, 871 ], [ 117, 867, 223, 887 ], [ 258, 803, 274, 823 ], [ 280, 803, 344, 823 ], [ 349, 803, 364, 823 ], [ 369, 803, 463, 823 ], [ 467, 803, 491, 823 ], [ 496, 803, 586, 823 ], [ 591, 803, 677, 823 ], [ 682, 803, 704, 823 ], [ 709, 803, 752, 823 ], [ 757, 803, 775, 823 ], [ 780, 803, 810, 823 ], [ 815, 803, 859, 823 ], [ 258, 820, 299, 840 ], [ 303, 820, 338, 840 ], [ 343, 820, 406, 840 ], [ 411, 820, 464, 840 ], [ 469, 820, 538, 840 ], [ 543, 820, 561, 840 ], [ 566, 820, 589, 840 ], [ 594, 820, 623, 840 ], [ 628, 820, 644, 840 ], [ 648, 820, 704, 840 ], [ 709, 820, 732, 840 ], [ 736, 820, 805, 840 ], [ 258, 838, 370, 858 ], [ 375, 839, 393, 858 ], [ 398, 838, 500, 858 ], [ 505, 838, 521, 858 ], [ 526, 838, 593, 858 ], [ 603, 838, 633, 858 ], [ 638, 838, 662, 858 ], [ 667, 838, 700, 858 ], [ 705, 838, 721, 858 ], [ 726, 838, 750, 858 ], [ 755, 838, 784, 858 ], [ 789, 838, 834, 858 ], [ 258, 855, 299, 875 ], [ 303, 855, 338, 875 ], [ 343, 855, 360, 875 ], [ 364, 855, 388, 875 ], [ 393, 855, 426, 875 ], [ 431, 855, 447, 875 ], [ 452, 855, 496, 875 ], [ 501, 855, 524, 875 ], [ 528, 855, 552, 875 ], [ 557, 855, 580, 875 ], [ 585, 855, 619, 875 ], [ 258, 890, 271, 910 ], [ 276, 890, 295, 910 ], [ 300, 890, 322, 910 ], [ 327, 890, 357, 910 ], [ 362, 890, 375, 910 ], [ 380, 890, 482, 910 ], [ 487, 890, 574, 910 ], [ 579, 890, 594, 910 ], [ 599, 890, 659, 910 ], [ 664, 890, 712, 910 ], [ 717, 890, 733, 910 ], [ 738, 890, 747, 910 ], [ 752, 890, 824, 910 ], [ 258, 907, 318, 928 ], [ 323, 907, 371, 928 ] ]
Beneficiary regarding the competency based on the evidence of record. beneficiary’s Takes No Action For more information about the actions to take after the response Reference: period ends, see M21-1MR, Part III, Subpart v, 9.B.2.b, starting with Step 5. The VSC collocated with the fiduciary hub of jurisdiction will handle all l. Processing a NOD Received appeals of incompetency determination. After a Final Rating of If a notice of disagreement (NOD) is received after a final rating of Incompetency incompetency, prepare a statement of the case (SOC) send the SOC to the beneficiary, or fiduciary, if applicable, and the or representative, and beneficiary’s fiduciary’s enclose VA Form 9, Appeal to Board of Veterans’ Appeals. When preparing the SOC, carefully consider whether the Important: inclusion of certain information could be detrimental to the state beneficiary’s of mind. A decision to exclude information on this basis must be supported by a opinion and advice concerning the appropriate way to physician’s communicate the information directly to the beneficiary. Fiduciary hubs will handle all appeals regarding the selection of a Note: fiduciary. For more information on References: sending a SOC, see M21-1, Part I, 5.D.3, and releasing information that may be detrimental to the state of beneficiary’s mind, see M21-1, Part I, 5.D.2.d and e. 4. Information About the Brady Act Introduction This topic contains information about the Brady Act, including effect of the Brady Act on incompetent beneficiaries relief from the Brady Act requirements initial steps to take upon receipt of a request for relief required paragraphs for National Instant Criminal Background Check System (NICS) relief development letter consent form that must accompany the NICS relief development letter general information about decisions to grant or deny a request for relief evidence Veterans Service Representatives (VSRs) must consider when deciding a request for relief
Beneficiary Takes No Action regarding the beneficiary’s competency based on the evidence of record. Reference: For more information about the actions to take after the response period ends, see M21-1MR, Part III, Subpart v, 9.B.2.b, starting with Step 5. l. Processing a NOD Received After a Final Rating of Incompetency The VSC collocated with the fiduciary hub of jurisdiction will handle all appeals of incompetency determination. If a notice of disagreement (NOD) is received after a final rating of incompetency, prepare a statement of the case (SOC) send the SOC to the beneficiary, or fiduciary, if applicable, and the beneficiary’s or fiduciary’s representative, and enclose VA Form 9, Appeal to Board of Veterans’ Appeals. Important: When preparing the SOC, carefully consider whether the inclusion of certain information could be detrimental to the beneficiary’s state of mind. A decision to exclude information on this basis must be supported by a physician’s opinion and advice concerning the appropriate way to communicate the information directly to the beneficiary. Note: Fiduciary hubs will handle all appeals regarding the selection of a fiduciary. References: For more information on sending a SOC, see M21-1, Part I, 5.D.3, and releasing information that may be detrimental to the beneficiary’s state of mind, see M21-1, Part I, 5.D.2.d and e. 4. Information About the Brady Act Introduction This topic contains information about the Brady Act, including effect of the Brady Act on incompetent beneficiaries relief from the Brady Act requirements initial steps to take upon receipt of a request for relief required paragraphs for National Instant Criminal Background Check System (NICS) relief development letter consent form that must accompany the NICS relief development letter general information about decisions to grant or deny a request for relief evidence Veterans Service Representatives (VSRs) must consider when deciding a request for relief
0.849256
[ 0, 11, 12, 13, 1, 2, 10, 3, 4, 5, 6, 7, 8, 9, 25, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 51, 52, 53, 54, 55, 60, 61, 62, 63, 64, 78, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 56, 57, 58, 59, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 102, 99, 103, 100, 101, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 122, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 157, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 162, 163, 164, 176, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 182, 178, 179, 180, 181, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 202, 200, 201, 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 ]
M21-1III_v_9_SecB.docx
task-1431-654
17
[ [ 117, 61, 213, 82 ], [ 258, 61, 333, 81 ], [ 338, 61, 362, 81 ], [ 474, 61, 569, 81 ], [ 574, 61, 619, 81 ], [ 624, 61, 643, 81 ], [ 648, 61, 672, 81 ], [ 677, 61, 747, 81 ], [ 752, 61, 768, 81 ], [ 773, 61, 828, 81 ], [ 367, 63, 470, 80 ], [ 117, 79, 167, 100 ], [ 172, 79, 196, 100 ], [ 117, 96, 173, 117 ], [ 355, 96, 382, 116 ], [ 387, 96, 428, 116 ], [ 433, 96, 525, 116 ], [ 530, 96, 574, 116 ], [ 579, 96, 603, 116 ], [ 607, 96, 663, 116 ], [ 668, 96, 683, 116 ], [ 688, 96, 721, 116 ], [ 726, 96, 761, 116 ], [ 766, 96, 791, 116 ], [ 795, 96, 864, 116 ], [ 258, 97, 345, 116 ], [ 258, 113, 308, 133 ], [ 313, 113, 354, 133 ], [ 359, 113, 384, 133 ], [ 389, 113, 478, 133 ], [ 483, 113, 514, 133 ], [ 520, 113, 544, 133 ], [ 549, 113, 610, 133 ], [ 615, 113, 629, 133 ], [ 634, 113, 696, 133 ], [ 701, 113, 760, 133 ], [ 765, 113, 800, 133 ], [ 805, 113, 840, 133 ], [ 845, 113, 859, 133 ], [ 258, 165, 289, 186 ], [ 294, 165, 332, 186 ], [ 337, 165, 417, 186 ], [ 422, 165, 457, 186 ], [ 462, 165, 486, 186 ], [ 491, 165, 562, 186 ], [ 566, 165, 596, 186 ], [ 601, 165, 617, 186 ], [ 622, 165, 712, 186 ], [ 716, 165, 747, 186 ], [ 752, 165, 804, 186 ], [ 809, 165, 829, 186 ], [ 117, 166, 127, 185 ], [ 136, 166, 218, 185 ], [ 222, 166, 231, 185 ], [ 117, 182, 157, 201 ], [ 162, 182, 231, 201 ], [ 258, 183, 317, 203 ], [ 322, 183, 338, 203 ], [ 343, 183, 453, 203 ], [ 458, 183, 572, 203 ], [ 117, 198, 158, 217 ], [ 163, 198, 172, 217 ], [ 176, 198, 216, 217 ], [ 117, 214, 169, 233 ], [ 174, 214, 189, 233 ], [ 258, 218, 271, 238 ], [ 276, 218, 285, 238 ], [ 290, 218, 338, 238 ], [ 343, 218, 359, 238 ], [ 364, 218, 469, 238 ], [ 473, 218, 529, 238 ], [ 534, 218, 547, 238 ], [ 552, 218, 618, 238 ], [ 623, 218, 659, 238 ], [ 664, 218, 673, 238 ], [ 677, 218, 713, 238 ], [ 718, 218, 764, 238 ], [ 769, 218, 785, 238 ], [ 117, 230, 225, 249 ], [ 258, 235, 373, 255 ], [ 271, 271, 330, 291 ], [ 335, 271, 344, 291 ], [ 348, 271, 424, 291 ], [ 429, 271, 445, 291 ], [ 450, 271, 474, 291 ], [ 479, 271, 512, 291 ], [ 517, 271, 569, 291 ], [ 271, 290, 307, 310 ], [ 312, 290, 336, 310 ], [ 341, 290, 379, 310 ], [ 384, 290, 399, 310 ], [ 287, 308, 311, 328 ], [ 315, 308, 408, 328 ], [ 413, 308, 430, 328 ], [ 435, 308, 510, 328 ], [ 515, 308, 527, 328 ], [ 532, 308, 618, 328 ], [ 623, 308, 651, 328 ], [ 287, 327, 311, 347 ], [ 423, 327, 439, 347 ], [ 534, 327, 649, 347 ], [ 654, 327, 682, 347 ], [ 315, 329, 418, 346 ], [ 444, 329, 529, 346 ], [ 271, 345, 330, 365 ], [ 335, 345, 363, 365 ], [ 368, 345, 411, 365 ], [ 415, 345, 430, 365 ], [ 435, 345, 492, 365 ], [ 497, 345, 512, 365 ], [ 517, 345, 565, 365 ], [ 570, 345, 586, 365 ], [ 591, 348, 667, 364 ], [ 672, 348, 741, 364 ], [ 355, 380, 402, 400 ], [ 407, 380, 482, 400 ], [ 487, 380, 511, 400 ], [ 516, 380, 559, 400 ], [ 564, 380, 634, 400 ], [ 638, 380, 705, 400 ], [ 710, 380, 773, 400 ], [ 778, 380, 802, 400 ], [ 258, 381, 346, 400 ], [ 258, 397, 330, 417 ], [ 335, 397, 352, 417 ], [ 356, 397, 410, 417 ], [ 414, 397, 507, 417 ], [ 512, 397, 556, 417 ], [ 561, 397, 579, 417 ], [ 584, 397, 673, 417 ], [ 678, 397, 694, 417 ], [ 698, 397, 722, 417 ], [ 834, 397, 871, 417 ], [ 727, 400, 829, 416 ], [ 258, 415, 275, 435 ], [ 280, 415, 325, 435 ], [ 335, 415, 349, 435 ], [ 354, 415, 419, 435 ], [ 424, 415, 439, 435 ], [ 444, 415, 505, 435 ], [ 510, 415, 603, 435 ], [ 608, 415, 627, 435 ], [ 632, 415, 660, 435 ], [ 665, 415, 704, 435 ], [ 709, 415, 748, 435 ], [ 753, 415, 771, 435 ], [ 776, 415, 853, 435 ], [ 258, 432, 278, 452 ], [ 283, 432, 291, 452 ], [ 391, 432, 451, 452 ], [ 455, 432, 484, 452 ], [ 489, 432, 540, 452 ], [ 545, 432, 632, 452 ], [ 637, 432, 661, 452 ], [ 665, 432, 755, 452 ], [ 760, 432, 793, 452 ], [ 797, 432, 812, 452 ], [ 296, 435, 386, 451 ], [ 258, 450, 364, 470 ], [ 369, 450, 393, 470 ], [ 398, 450, 490, 470 ], [ 495, 450, 555, 470 ], [ 560, 450, 575, 470 ], [ 580, 450, 604, 470 ], [ 609, 450, 702, 470 ], [ 312, 484, 387, 505 ], [ 392, 484, 429, 505 ], [ 434, 484, 464, 505 ], [ 469, 484, 521, 505 ], [ 526, 484, 546, 505 ], [ 551, 484, 609, 505 ], [ 615, 484, 690, 505 ], [ 695, 484, 718, 505 ], [ 723, 484, 793, 505 ], [ 798, 484, 814, 505 ], [ 819, 484, 828, 505 ], [ 258, 486, 302, 505 ], [ 258, 502, 334, 522 ], [ 363, 537, 390, 557 ], [ 395, 537, 435, 557 ], [ 440, 537, 533, 557 ], [ 538, 537, 557, 557 ], [ 258, 538, 353, 557 ], [ 271, 555, 332, 576 ], [ 337, 555, 346, 576 ], [ 351, 555, 394, 576 ], [ 399, 555, 424, 576 ], [ 429, 555, 487, 576 ], [ 492, 555, 524, 576 ], [ 529, 555, 540, 576 ], [ 545, 555, 593, 576 ], [ 598, 555, 626, 576 ], [ 271, 574, 342, 594 ], [ 347, 574, 440, 594 ], [ 444, 574, 474, 594 ], [ 479, 574, 513, 594 ], [ 517, 574, 536, 594 ], [ 541, 574, 630, 594 ], [ 635, 574, 650, 594 ], [ 655, 574, 679, 594 ], [ 791, 574, 827, 594 ], [ 832, 574, 848, 594 ], [ 684, 576, 786, 593 ], [ 271, 591, 317, 611 ], [ 322, 591, 347, 611 ], [ 351, 591, 410, 611 ], [ 414, 591, 446, 611 ], [ 451, 591, 462, 611 ], [ 467, 591, 526, 611 ], [ 531, 591, 559, 611 ], [ 564, 591, 577, 611 ], [ 117, 666, 139, 694 ], [ 153, 666, 297, 694 ], [ 305, 666, 380, 694 ], [ 387, 666, 426, 694 ], [ 434, 666, 508, 694 ], [ 515, 666, 557, 694 ], [ 117, 725, 215, 745 ], [ 258, 725, 293, 745 ], [ 298, 725, 337, 745 ], [ 342, 725, 408, 745 ], [ 413, 725, 505, 745 ], [ 510, 725, 553, 745 ], [ 558, 725, 582, 745 ], [ 587, 725, 635, 745 ], [ 640, 725, 673, 745 ], [ 678, 725, 752, 745 ], [ 271, 761, 316, 781 ], [ 321, 761, 337, 781 ], [ 342, 761, 366, 781 ], [ 371, 761, 419, 781 ], [ 424, 761, 452, 781 ], [ 457, 761, 477, 781 ], [ 482, 761, 578, 781 ], [ 583, 761, 683, 781 ], [ 271, 779, 313, 799 ], [ 317, 779, 356, 799 ], [ 361, 779, 385, 799 ], [ 389, 779, 438, 799 ], [ 442, 779, 471, 799 ], [ 475, 779, 578, 799 ], [ 271, 798, 317, 818 ], [ 322, 798, 361, 818 ], [ 366, 798, 382, 818 ], [ 386, 798, 419, 818 ], [ 424, 798, 463, 818 ], [ 468, 798, 521, 818 ], [ 526, 798, 542, 818 ], [ 547, 798, 556, 818 ], [ 561, 798, 618, 818 ], [ 623, 798, 645, 818 ], [ 650, 798, 692, 818 ], [ 271, 816, 336, 836 ], [ 341, 816, 427, 836 ], [ 432, 816, 455, 836 ], [ 460, 816, 528, 836 ], [ 533, 816, 586, 836 ], [ 591, 816, 661, 836 ], [ 666, 816, 761, 836 ], [ 766, 816, 816, 836 ], [ 271, 834, 329, 854 ], [ 334, 834, 392, 854 ], [ 396, 834, 438, 854 ], [ 443, 834, 544, 854 ], [ 549, 834, 589, 854 ], [ 271, 852, 331, 872 ], [ 336, 852, 374, 872 ], [ 379, 852, 408, 872 ], [ 413, 852, 451, 872 ], [ 456, 852, 546, 872 ], [ 551, 852, 575, 872 ], [ 579, 852, 624, 872 ], [ 629, 852, 671, 872 ], [ 675, 852, 777, 872 ], [ 782, 852, 822, 872 ], [ 271, 871, 329, 891 ], [ 334, 871, 426, 891 ], [ 431, 871, 475, 891 ], [ 480, 871, 553, 891 ], [ 558, 871, 573, 891 ], [ 578, 871, 618, 891 ], [ 623, 871, 639, 891 ], [ 644, 871, 683, 891 ], [ 687, 871, 696, 891 ], [ 701, 871, 757, 891 ], [ 762, 871, 785, 891 ], [ 790, 871, 832, 891 ], [ 271, 889, 341, 909 ], [ 346, 889, 415, 909 ], [ 420, 889, 479, 909 ], [ 484, 889, 608, 909 ], [ 613, 889, 672, 909 ], [ 677, 889, 715, 909 ], [ 720, 889, 786, 909 ], [ 791, 889, 834, 909 ], [ 271, 906, 339, 927 ], [ 344, 906, 352, 927 ], [ 357, 906, 414, 927 ], [ 419, 906, 442, 927 ], [ 446, 906, 488, 927 ] ]
[ [ 117, 61, 213, 82 ], [ 117, 79, 167, 100 ], [ 172, 79, 196, 100 ], [ 117, 96, 173, 117 ], [ 258, 61, 333, 81 ], [ 338, 61, 362, 81 ], [ 367, 63, 470, 80 ], [ 474, 61, 569, 81 ], [ 574, 61, 619, 81 ], [ 624, 61, 643, 81 ], [ 648, 61, 672, 81 ], [ 677, 61, 747, 81 ], [ 752, 61, 768, 81 ], [ 773, 61, 828, 81 ], [ 258, 97, 345, 116 ], [ 355, 96, 382, 116 ], [ 387, 96, 428, 116 ], [ 433, 96, 525, 116 ], [ 530, 96, 574, 116 ], [ 579, 96, 603, 116 ], [ 607, 96, 663, 116 ], [ 668, 96, 683, 116 ], [ 688, 96, 721, 116 ], [ 726, 96, 761, 116 ], [ 766, 96, 791, 116 ], [ 795, 96, 864, 116 ], [ 258, 113, 308, 133 ], [ 313, 113, 354, 133 ], [ 359, 113, 384, 133 ], [ 389, 113, 478, 133 ], [ 483, 113, 514, 133 ], [ 520, 113, 544, 133 ], [ 549, 113, 610, 133 ], [ 615, 113, 629, 133 ], [ 634, 113, 696, 133 ], [ 701, 113, 760, 133 ], [ 765, 113, 800, 133 ], [ 805, 113, 840, 133 ], [ 845, 113, 859, 133 ], [ 117, 166, 127, 185 ], [ 136, 166, 218, 185 ], [ 222, 166, 231, 185 ], [ 117, 182, 157, 201 ], [ 162, 182, 231, 201 ], [ 117, 198, 158, 217 ], [ 163, 198, 172, 217 ], [ 176, 198, 216, 217 ], [ 117, 214, 169, 233 ], [ 174, 214, 189, 233 ], [ 117, 230, 225, 249 ], [ 258, 165, 289, 186 ], [ 294, 165, 332, 186 ], [ 337, 165, 417, 186 ], [ 422, 165, 457, 186 ], [ 462, 165, 486, 186 ], [ 491, 165, 562, 186 ], [ 566, 165, 596, 186 ], [ 601, 165, 617, 186 ], [ 622, 165, 712, 186 ], [ 716, 165, 747, 186 ], [ 752, 165, 804, 186 ], [ 809, 165, 829, 186 ], [ 258, 183, 317, 203 ], [ 322, 183, 338, 203 ], [ 343, 183, 453, 203 ], [ 458, 183, 572, 203 ], [ 258, 218, 271, 238 ], [ 276, 218, 285, 238 ], [ 290, 218, 338, 238 ], [ 343, 218, 359, 238 ], [ 364, 218, 469, 238 ], [ 473, 218, 529, 238 ], [ 534, 218, 547, 238 ], [ 552, 218, 618, 238 ], [ 623, 218, 659, 238 ], [ 664, 218, 673, 238 ], [ 677, 218, 713, 238 ], [ 718, 218, 764, 238 ], [ 769, 218, 785, 238 ], [ 258, 235, 373, 255 ], [ 271, 271, 330, 291 ], [ 335, 271, 344, 291 ], [ 348, 271, 424, 291 ], [ 429, 271, 445, 291 ], [ 450, 271, 474, 291 ], [ 479, 271, 512, 291 ], [ 517, 271, 569, 291 ], [ 271, 290, 307, 310 ], [ 312, 290, 336, 310 ], [ 341, 290, 379, 310 ], [ 384, 290, 399, 310 ], [ 287, 308, 311, 328 ], [ 315, 308, 408, 328 ], [ 413, 308, 430, 328 ], [ 435, 308, 510, 328 ], [ 515, 308, 527, 328 ], [ 532, 308, 618, 328 ], [ 623, 308, 651, 328 ], [ 287, 327, 311, 347 ], [ 315, 329, 418, 346 ], [ 423, 327, 439, 347 ], [ 444, 329, 529, 346 ], [ 534, 327, 649, 347 ], [ 654, 327, 682, 347 ], [ 271, 345, 330, 365 ], [ 335, 345, 363, 365 ], [ 368, 345, 411, 365 ], [ 415, 345, 430, 365 ], [ 435, 345, 492, 365 ], [ 497, 345, 512, 365 ], [ 517, 345, 565, 365 ], [ 570, 345, 586, 365 ], [ 591, 348, 667, 364 ], [ 672, 348, 741, 364 ], [ 258, 381, 346, 400 ], [ 355, 380, 402, 400 ], [ 407, 380, 482, 400 ], [ 487, 380, 511, 400 ], [ 516, 380, 559, 400 ], [ 564, 380, 634, 400 ], [ 638, 380, 705, 400 ], [ 710, 380, 773, 400 ], [ 778, 380, 802, 400 ], [ 258, 397, 330, 417 ], [ 335, 397, 352, 417 ], [ 356, 397, 410, 417 ], [ 414, 397, 507, 417 ], [ 512, 397, 556, 417 ], [ 561, 397, 579, 417 ], [ 584, 397, 673, 417 ], [ 678, 397, 694, 417 ], [ 698, 397, 722, 417 ], [ 727, 400, 829, 416 ], [ 834, 397, 871, 417 ], [ 258, 415, 275, 435 ], [ 280, 415, 325, 435 ], [ 335, 415, 349, 435 ], [ 354, 415, 419, 435 ], [ 424, 415, 439, 435 ], [ 444, 415, 505, 435 ], [ 510, 415, 603, 435 ], [ 608, 415, 627, 435 ], [ 632, 415, 660, 435 ], [ 665, 415, 704, 435 ], [ 709, 415, 748, 435 ], [ 753, 415, 771, 435 ], [ 776, 415, 853, 435 ], [ 258, 432, 278, 452 ], [ 283, 432, 291, 452 ], [ 296, 435, 386, 451 ], [ 391, 432, 451, 452 ], [ 455, 432, 484, 452 ], [ 489, 432, 540, 452 ], [ 545, 432, 632, 452 ], [ 637, 432, 661, 452 ], [ 665, 432, 755, 452 ], [ 760, 432, 793, 452 ], [ 797, 432, 812, 452 ], [ 258, 450, 364, 470 ], [ 369, 450, 393, 470 ], [ 398, 450, 490, 470 ], [ 495, 450, 555, 470 ], [ 560, 450, 575, 470 ], [ 580, 450, 604, 470 ], [ 609, 450, 702, 470 ], [ 258, 486, 302, 505 ], [ 312, 484, 387, 505 ], [ 392, 484, 429, 505 ], [ 434, 484, 464, 505 ], [ 469, 484, 521, 505 ], [ 526, 484, 546, 505 ], [ 551, 484, 609, 505 ], [ 615, 484, 690, 505 ], [ 695, 484, 718, 505 ], [ 723, 484, 793, 505 ], [ 798, 484, 814, 505 ], [ 819, 484, 828, 505 ], [ 258, 502, 334, 522 ], [ 258, 538, 353, 557 ], [ 363, 537, 390, 557 ], [ 395, 537, 435, 557 ], [ 440, 537, 533, 557 ], [ 538, 537, 557, 557 ], [ 271, 555, 332, 576 ], [ 337, 555, 346, 576 ], [ 351, 555, 394, 576 ], [ 399, 555, 424, 576 ], [ 429, 555, 487, 576 ], [ 492, 555, 524, 576 ], [ 529, 555, 540, 576 ], [ 545, 555, 593, 576 ], [ 598, 555, 626, 576 ], [ 271, 574, 342, 594 ], [ 347, 574, 440, 594 ], [ 444, 574, 474, 594 ], [ 479, 574, 513, 594 ], [ 517, 574, 536, 594 ], [ 541, 574, 630, 594 ], [ 635, 574, 650, 594 ], [ 655, 574, 679, 594 ], [ 684, 576, 786, 593 ], [ 791, 574, 827, 594 ], [ 832, 574, 848, 594 ], [ 271, 591, 317, 611 ], [ 322, 591, 347, 611 ], [ 351, 591, 410, 611 ], [ 414, 591, 446, 611 ], [ 451, 591, 462, 611 ], [ 467, 591, 526, 611 ], [ 531, 591, 559, 611 ], [ 564, 591, 577, 611 ], [ 117, 666, 139, 694 ], [ 153, 666, 297, 694 ], [ 305, 666, 380, 694 ], [ 387, 666, 426, 694 ], [ 434, 666, 508, 694 ], [ 515, 666, 557, 694 ], [ 117, 725, 215, 745 ], [ 258, 725, 293, 745 ], [ 298, 725, 337, 745 ], [ 342, 725, 408, 745 ], [ 413, 725, 505, 745 ], [ 510, 725, 553, 745 ], [ 558, 725, 582, 745 ], [ 587, 725, 635, 745 ], [ 640, 725, 673, 745 ], [ 678, 725, 752, 745 ], [ 271, 761, 316, 781 ], [ 321, 761, 337, 781 ], [ 342, 761, 366, 781 ], [ 371, 761, 419, 781 ], [ 424, 761, 452, 781 ], [ 457, 761, 477, 781 ], [ 482, 761, 578, 781 ], [ 583, 761, 683, 781 ], [ 271, 779, 313, 799 ], [ 317, 779, 356, 799 ], [ 361, 779, 385, 799 ], [ 389, 779, 438, 799 ], [ 442, 779, 471, 799 ], [ 475, 779, 578, 799 ], [ 271, 798, 317, 818 ], [ 322, 798, 361, 818 ], [ 366, 798, 382, 818 ], [ 386, 798, 419, 818 ], [ 424, 798, 463, 818 ], [ 468, 798, 521, 818 ], [ 526, 798, 542, 818 ], [ 547, 798, 556, 818 ], [ 561, 798, 618, 818 ], [ 623, 798, 645, 818 ], [ 650, 798, 692, 818 ], [ 271, 816, 336, 836 ], [ 341, 816, 427, 836 ], [ 432, 816, 455, 836 ], [ 460, 816, 528, 836 ], [ 533, 816, 586, 836 ], [ 591, 816, 661, 836 ], [ 666, 816, 761, 836 ], [ 766, 816, 816, 836 ], [ 271, 834, 329, 854 ], [ 334, 834, 392, 854 ], [ 396, 834, 438, 854 ], [ 443, 834, 544, 854 ], [ 549, 834, 589, 854 ], [ 271, 852, 331, 872 ], [ 336, 852, 374, 872 ], [ 379, 852, 408, 872 ], [ 413, 852, 451, 872 ], [ 456, 852, 546, 872 ], [ 551, 852, 575, 872 ], [ 579, 852, 624, 872 ], [ 629, 852, 671, 872 ], [ 675, 852, 777, 872 ], [ 782, 852, 822, 872 ], [ 271, 871, 329, 891 ], [ 334, 871, 426, 891 ], [ 431, 871, 475, 891 ], [ 480, 871, 553, 891 ], [ 558, 871, 573, 891 ], [ 578, 871, 618, 891 ], [ 623, 871, 639, 891 ], [ 644, 871, 683, 891 ], [ 687, 871, 696, 891 ], [ 701, 871, 757, 891 ], [ 762, 871, 785, 891 ], [ 790, 871, 832, 891 ], [ 271, 889, 341, 909 ], [ 346, 889, 415, 909 ], [ 420, 889, 479, 909 ], [ 484, 889, 608, 909 ], [ 613, 889, 672, 909 ], [ 677, 889, 715, 909 ], [ 720, 889, 786, 909 ], [ 791, 889, 834, 909 ], [ 271, 906, 339, 927 ], [ 344, 906, 352, 927 ], [ 357, 906, 414, 927 ], [ 419, 906, 442, 927 ], [ 446, 906, 488, 927 ] ]
Department of Veterans Affairs M21-1, Part IV, Subpart ii Veterans Benefits Administration June 3, 2015 Washington, DC 20420 Transmittal Sheet The table below describes the changes included in this revision of Veterans Changes Included in Benefits Manual M21-1, Part IV, “Compensation DIC, and Death This Revision Subpart Compensation Benefits,” ii, “Compensation.” Notes: The term “regional office” (RO) also includes pension management center (PMC), where appropriate. Unless otherwise noted, the term the official, “claims folder” refers to numbered, Department of Veterans Affairs (VA) repository whether paper – or electronic for all documentation relating to claims that a Veteran and/or – his/her dependent(s) file with VA. Minor editorial changes have also been made to update incorrect or obsolete references update obsolete terminology, where appropriate remove references to specific claims-processing systems, where doing so does not affect the clarity of the instructions or information provided renumber each topic based on the standard that the first topic in each section is Topic 1 reassign alphabetical designations to individual blocks and repaginate, where necessary, to account for new and/or deleted blocks within a topic update section and topic titles to more accurately reflect their content clarify block labels and/or block text, and bring the document into conformance with M21-1 standards. Reason(s) for the Change Citation To incorporate guidance that discuss metastasis cancer. M21-1, Part IV, Subpart ii, Chapter 1, Section C, Topic 1, Block a (IV.ii.1.C.1.a) To add additional guidance that informs the target audience to refrain IV.ii.1.C.1.e from divulging confidential information concerning the nuclear weapons location. To incorporate guidance that informs the target audience how to IV.ii.1.C.1.f redact classified information in a Veterans Benefits Management System (VBMS) claims folder. IV.ii.1.C.2.a To relocate guidance from old IV.ii.1.C.1.a. that discusses the centralized processing of all radiation claims. To add guidance that informs the target audience a radiogenic disease must be confirmed prior to transferring a claim to the Jackson Regional Office (RO), and
Department of Veterans Affairs M21-1, Part IV, Subpart ii Veterans Benefits Administration June 3, 2015 Washington, DC 20420 Transmittal Sheet Changes Included in This Revision The table below describes the changes included in this revision of Veterans Benefits Manual M21-1, Part IV, “Compensation DIC, and Death Compensation Benefits,” Subpart ii, “Compensation.” Notes: The term “regional office” (RO) also includes pension management center (PMC), where appropriate. Unless otherwise noted, the term “claims folder” refers to the official, numbered, Department of Veterans Affairs (VA) repository – whether paper or electronic – for all documentation relating to claims that a Veteran and/or his/her dependent(s) file with VA. Minor editorial changes have also been made to update incorrect or obsolete references update obsolete terminology, where appropriate remove references to specific claims-processing systems, where doing so does not affect the clarity of the instructions or information provided renumber each topic based on the standard that the first topic in each section is Topic 1 reassign alphabetical designations to individual blocks and repaginate, where necessary, to account for new and/or deleted blocks within a topic update section and topic titles to more accurately reflect their content clarify block labels and/or block text, and bring the document into conformance with M21-1 standards. Reason(s) for the Change Citation To incorporate guidance that discuss metastasis cancer. M21-1, Part IV, Subpart ii, Chapter 1, Section C, Topic 1, Block a (IV.ii.1.C.1.a) To add additional guidance that informs the target audience to refrain from divulging confidential information concerning the nuclear weapons location. IV.ii.1.C.1.e To incorporate guidance that informs the target audience how to redact classified information in a Veterans Benefits Management System (VBMS) claims folder. IV.ii.1.C.1.f To relocate guidance from old IV.ii.1.C.1.a. that discusses the centralized processing of all radiation claims. To add guidance that informs the target audience a radiogenic disease must be confirmed prior to transferring a claim to the Jackson Regional Office (RO), and IV.ii.1.C.2.a
0.906554
[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 32, 33, 34, 44, 45, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 35, 36, 37, 38, 39, 40, 41, 42, 43, 47, 48, 46, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 72, 73, 74, 75, 70, 71, 76, 77, 78, 79, 80, 81, 82, 85, 83, 84, 86, 87, 98, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 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, 243, 244, 245, 246, 247, 248, 249, 250, 251, 242, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 262, 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, 275 ]
M21-1IV_ii_1_SecC_TS.docx
task-1431-657
0
[ [ 117, 71, 201, 88 ], [ 206, 71, 219, 88 ], [ 223, 71, 286, 88 ], [ 290, 71, 339, 88 ], [ 696, 71, 746, 88 ], [ 750, 71, 781, 88 ], [ 785, 71, 807, 88 ], [ 811, 71, 868, 88 ], [ 872, 71, 881, 88 ], [ 117, 85, 180, 103 ], [ 184, 85, 240, 103 ], [ 244, 85, 351, 103 ], [ 794, 85, 827, 103 ], [ 832, 85, 844, 103 ], [ 848, 85, 881, 103 ], [ 117, 100, 206, 117 ], [ 210, 100, 233, 117 ], [ 241, 100, 282, 117 ], [ 117, 127, 258, 155 ], [ 265, 127, 336, 155 ], [ 258, 186, 289, 206 ], [ 294, 186, 332, 206 ], [ 337, 186, 384, 206 ], [ 389, 186, 462, 206 ], [ 467, 186, 491, 206 ], [ 496, 186, 559, 206 ], [ 564, 186, 632, 206 ], [ 637, 186, 652, 206 ], [ 657, 186, 685, 206 ], [ 690, 186, 753, 206 ], [ 758, 186, 775, 206 ], [ 779, 186, 849, 206 ], [ 117, 187, 183, 206 ], [ 117, 203, 185, 222 ], [ 190, 203, 205, 222 ], [ 258, 203, 324, 224 ], [ 329, 203, 388, 224 ], [ 393, 203, 452, 224 ], [ 457, 203, 488, 224 ], [ 493, 203, 519, 224 ], [ 524, 206, 645, 223 ], [ 651, 206, 689, 223 ], [ 694, 206, 722, 223 ], [ 727, 206, 774, 223 ], [ 117, 219, 151, 238 ], [ 156, 219, 222, 238 ], [ 460, 221, 521, 241 ], [ 258, 223, 372, 240 ], [ 377, 223, 455, 240 ], [ 526, 223, 542, 240 ], [ 547, 223, 683, 240 ], [ 258, 257, 309, 276 ], [ 272, 274, 303, 295 ], [ 308, 277, 344, 294 ], [ 349, 277, 421, 294 ], [ 426, 277, 481, 294 ], [ 486, 277, 526, 294 ], [ 531, 277, 562, 294 ], [ 567, 277, 633, 294 ], [ 637, 277, 699, 294 ], [ 704, 277, 804, 294 ], [ 809, 277, 856, 294 ], [ 272, 292, 332, 312 ], [ 337, 292, 385, 312 ], [ 389, 292, 484, 312 ], [ 272, 310, 326, 330 ], [ 331, 310, 407, 330 ], [ 412, 310, 460, 330 ], [ 465, 310, 489, 330 ], [ 494, 310, 530, 330 ], [ 730, 310, 754, 330 ], [ 759, 310, 820, 330 ], [ 535, 313, 595, 330 ], [ 600, 313, 655, 330 ], [ 660, 313, 705, 330 ], [ 710, 313, 725, 330 ], [ 272, 328, 356, 348 ], [ 361, 328, 453, 348 ], [ 458, 328, 475, 348 ], [ 479, 328, 549, 348 ], [ 554, 328, 609, 348 ], [ 614, 328, 656, 348 ], [ 661, 328, 740, 348 ], [ 760, 328, 823, 348 ], [ 828, 328, 871, 348 ], [ 745, 330, 755, 347 ], [ 272, 345, 289, 365 ], [ 294, 345, 371, 365 ], [ 391, 345, 413, 365 ], [ 418, 345, 438, 365 ], [ 443, 345, 560, 365 ], [ 564, 345, 624, 365 ], [ 629, 345, 644, 365 ], [ 649, 345, 701, 365 ], [ 705, 345, 735, 365 ], [ 740, 345, 748, 365 ], [ 753, 345, 815, 365 ], [ 820, 345, 870, 365 ], [ 376, 347, 386, 364 ], [ 272, 362, 326, 383 ], [ 331, 362, 432, 383 ], [ 437, 362, 463, 383 ], [ 468, 362, 503, 383 ], [ 508, 362, 541, 383 ], [ 272, 381, 322, 401 ], [ 326, 381, 392, 401 ], [ 397, 381, 460, 401 ], [ 465, 381, 502, 401 ], [ 506, 381, 538, 401 ], [ 543, 381, 580, 401 ], [ 585, 381, 627, 401 ], [ 632, 381, 647, 401 ], [ 288, 400, 340, 420 ], [ 345, 400, 414, 420 ], [ 419, 400, 436, 420 ], [ 441, 400, 506, 420 ], [ 511, 400, 591, 420 ], [ 288, 418, 340, 438 ], [ 345, 418, 410, 438 ], [ 415, 418, 516, 438 ], [ 521, 418, 569, 438 ], [ 574, 418, 663, 438 ], [ 288, 437, 346, 457 ], [ 351, 437, 432, 457 ], [ 437, 437, 452, 457 ], [ 457, 437, 518, 457 ], [ 523, 437, 665, 457 ], [ 669, 437, 736, 457 ], [ 741, 437, 789, 457 ], [ 794, 437, 839, 457 ], [ 844, 437, 861, 457 ], [ 288, 454, 324, 474 ], [ 329, 454, 354, 474 ], [ 359, 454, 403, 474 ], [ 408, 454, 432, 474 ], [ 437, 454, 487, 474 ], [ 492, 454, 508, 474 ], [ 513, 454, 537, 474 ], [ 542, 454, 633, 474 ], [ 638, 454, 655, 474 ], [ 660, 454, 752, 474 ], [ 757, 454, 827, 474 ], [ 288, 473, 363, 493 ], [ 368, 473, 403, 493 ], [ 408, 473, 448, 493 ], [ 452, 473, 497, 493 ], [ 502, 473, 522, 493 ], [ 527, 473, 551, 493 ], [ 556, 473, 622, 493 ], [ 627, 473, 656, 493 ], [ 661, 473, 685, 493 ], [ 690, 473, 722, 493 ], [ 727, 473, 766, 493 ], [ 771, 473, 786, 493 ], [ 791, 473, 827, 493 ], [ 288, 490, 343, 510 ], [ 348, 490, 361, 510 ], [ 366, 490, 412, 510 ], [ 417, 490, 427, 510 ], [ 288, 508, 352, 529 ], [ 357, 508, 451, 529 ], [ 456, 508, 554, 529 ], [ 559, 508, 575, 529 ], [ 580, 508, 659, 529 ], [ 664, 508, 715, 529 ], [ 720, 508, 748, 529 ], [ 753, 508, 840, 529 ], [ 288, 526, 336, 546 ], [ 340, 526, 421, 546 ], [ 426, 526, 442, 546 ], [ 447, 526, 508, 546 ], [ 513, 526, 536, 546 ], [ 540, 526, 573, 546 ], [ 578, 526, 628, 546 ], [ 633, 526, 690, 546 ], [ 695, 526, 746, 546 ], [ 751, 526, 801, 546 ], [ 806, 526, 814, 546 ], [ 819, 526, 859, 546 ], [ 288, 544, 340, 565 ], [ 345, 544, 400, 565 ], [ 405, 544, 434, 565 ], [ 438, 544, 478, 565 ], [ 483, 544, 521, 565 ], [ 526, 544, 541, 565 ], [ 546, 544, 586, 565 ], [ 591, 544, 672, 565 ], [ 676, 544, 726, 565 ], [ 731, 544, 767, 565 ], [ 772, 544, 830, 565 ], [ 288, 563, 339, 583 ], [ 344, 563, 387, 583 ], [ 392, 563, 438, 583 ], [ 443, 563, 493, 583 ], [ 498, 563, 542, 583 ], [ 546, 563, 581, 583 ], [ 586, 563, 614, 583 ], [ 288, 582, 329, 602 ], [ 334, 582, 358, 602 ], [ 363, 582, 440, 602 ], [ 445, 582, 476, 602 ], [ 481, 582, 583, 602 ], [ 588, 582, 623, 602 ], [ 627, 582, 681, 602 ], [ 686, 582, 765, 602 ], [ 298, 618, 380, 639 ], [ 384, 618, 410, 639 ], [ 414, 618, 441, 639 ], [ 445, 618, 510, 639 ], [ 752, 618, 821, 639 ], [ 126, 635, 148, 656 ], [ 153, 635, 242, 656 ], [ 247, 635, 317, 656 ], [ 323, 635, 352, 656 ], [ 357, 635, 413, 656 ], [ 418, 635, 499, 656 ], [ 504, 635, 560, 656 ], [ 700, 635, 758, 656 ], [ 763, 635, 794, 656 ], [ 799, 635, 825, 656 ], [ 700, 653, 761, 673 ], [ 766, 653, 781, 673 ], [ 786, 653, 848, 673 ], [ 853, 653, 868, 673 ], [ 700, 670, 758, 691 ], [ 763, 670, 781, 691 ], [ 786, 670, 832, 691 ], [ 837, 670, 852, 691 ], [ 700, 688, 746, 708 ], [ 751, 688, 760, 708 ], [ 700, 705, 810, 725 ], [ 126, 724, 148, 744 ], [ 153, 724, 181, 744 ], [ 186, 724, 264, 744 ], [ 269, 724, 340, 744 ], [ 345, 724, 374, 744 ], [ 379, 724, 440, 744 ], [ 445, 724, 469, 744 ], [ 474, 724, 519, 744 ], [ 524, 724, 593, 744 ], [ 598, 724, 613, 744 ], [ 618, 724, 671, 744 ], [ 700, 724, 797, 744 ], [ 126, 741, 164, 761 ], [ 169, 741, 244, 761 ], [ 249, 741, 343, 761 ], [ 348, 741, 440, 761 ], [ 445, 741, 532, 761 ], [ 537, 741, 561, 761 ], [ 566, 741, 623, 761 ], [ 126, 759, 194, 779 ], [ 199, 759, 267, 779 ], [ 126, 777, 148, 797 ], [ 153, 777, 242, 797 ], [ 247, 777, 317, 797 ], [ 323, 777, 352, 797 ], [ 357, 777, 418, 797 ], [ 423, 777, 447, 797 ], [ 452, 777, 496, 797 ], [ 501, 777, 571, 797 ], [ 575, 777, 609, 797 ], [ 614, 777, 629, 797 ], [ 700, 777, 795, 797 ], [ 126, 794, 174, 814 ], [ 179, 794, 253, 814 ], [ 258, 794, 350, 814 ], [ 355, 794, 371, 814 ], [ 375, 794, 384, 814 ], [ 389, 794, 458, 814 ], [ 464, 794, 529, 814 ], [ 534, 794, 636, 814 ], [ 126, 812, 184, 832 ], [ 189, 812, 257, 832 ], [ 262, 812, 313, 832 ], [ 318, 812, 370, 832 ], [ 700, 830, 797, 850 ], [ 139, 831, 161, 851 ], [ 166, 831, 228, 851 ], [ 233, 831, 303, 851 ], [ 308, 831, 346, 851 ], [ 351, 831, 376, 851 ], [ 382, 831, 483, 851 ], [ 488, 831, 518, 851 ], [ 523, 831, 596, 851 ], [ 601, 831, 625, 851 ], [ 139, 849, 225, 869 ], [ 230, 849, 314, 869 ], [ 318, 849, 335, 869 ], [ 340, 849, 360, 869 ], [ 364, 849, 434, 869 ], [ 439, 849, 495, 869 ], [ 139, 867, 161, 887 ], [ 166, 867, 194, 887 ], [ 199, 867, 269, 887 ], [ 274, 867, 304, 887 ], [ 309, 867, 370, 887 ], [ 375, 867, 399, 887 ], [ 404, 867, 448, 887 ], [ 453, 867, 523, 887 ], [ 154, 886, 163, 906 ], [ 168, 886, 250, 906 ], [ 255, 886, 312, 906 ], [ 317, 886, 355, 906 ], [ 360, 886, 379, 906 ], [ 384, 886, 464, 906 ], [ 469, 886, 507, 906 ], [ 512, 886, 527, 906 ], [ 532, 886, 624, 906 ], [ 628, 886, 637, 906 ], [ 154, 903, 198, 923 ], [ 203, 903, 218, 923 ], [ 223, 903, 247, 923 ], [ 252, 903, 314, 923 ], [ 319, 903, 389, 923 ], [ 394, 903, 444, 923 ], [ 449, 903, 494, 923 ], [ 499, 903, 528, 923 ] ]
[ [ 117, 71, 201, 88 ], [ 206, 71, 219, 88 ], [ 223, 71, 286, 88 ], [ 290, 71, 339, 88 ], [ 696, 71, 746, 88 ], [ 750, 71, 781, 88 ], [ 785, 71, 807, 88 ], [ 811, 71, 868, 88 ], [ 872, 71, 881, 88 ], [ 117, 85, 180, 103 ], [ 184, 85, 240, 103 ], [ 244, 85, 351, 103 ], [ 794, 85, 827, 103 ], [ 832, 85, 844, 103 ], [ 848, 85, 881, 103 ], [ 117, 100, 206, 117 ], [ 210, 100, 233, 117 ], [ 241, 100, 282, 117 ], [ 117, 127, 258, 155 ], [ 265, 127, 336, 155 ], [ 117, 187, 183, 206 ], [ 117, 203, 185, 222 ], [ 190, 203, 205, 222 ], [ 117, 219, 151, 238 ], [ 156, 219, 222, 238 ], [ 258, 186, 289, 206 ], [ 294, 186, 332, 206 ], [ 337, 186, 384, 206 ], [ 389, 186, 462, 206 ], [ 467, 186, 491, 206 ], [ 496, 186, 559, 206 ], [ 564, 186, 632, 206 ], [ 637, 186, 652, 206 ], [ 657, 186, 685, 206 ], [ 690, 186, 753, 206 ], [ 758, 186, 775, 206 ], [ 779, 186, 849, 206 ], [ 258, 203, 324, 224 ], [ 329, 203, 388, 224 ], [ 393, 203, 452, 224 ], [ 457, 203, 488, 224 ], [ 493, 203, 519, 224 ], [ 524, 206, 645, 223 ], [ 651, 206, 689, 223 ], [ 694, 206, 722, 223 ], [ 727, 206, 774, 223 ], [ 258, 223, 372, 240 ], [ 377, 223, 455, 240 ], [ 460, 221, 521, 241 ], [ 526, 223, 542, 240 ], [ 547, 223, 683, 240 ], [ 258, 257, 309, 276 ], [ 272, 274, 303, 295 ], [ 308, 277, 344, 294 ], [ 349, 277, 421, 294 ], [ 426, 277, 481, 294 ], [ 486, 277, 526, 294 ], [ 531, 277, 562, 294 ], [ 567, 277, 633, 294 ], [ 637, 277, 699, 294 ], [ 704, 277, 804, 294 ], [ 809, 277, 856, 294 ], [ 272, 292, 332, 312 ], [ 337, 292, 385, 312 ], [ 389, 292, 484, 312 ], [ 272, 310, 326, 330 ], [ 331, 310, 407, 330 ], [ 412, 310, 460, 330 ], [ 465, 310, 489, 330 ], [ 494, 310, 530, 330 ], [ 535, 313, 595, 330 ], [ 600, 313, 655, 330 ], [ 660, 313, 705, 330 ], [ 710, 313, 725, 330 ], [ 730, 310, 754, 330 ], [ 759, 310, 820, 330 ], [ 272, 328, 356, 348 ], [ 361, 328, 453, 348 ], [ 458, 328, 475, 348 ], [ 479, 328, 549, 348 ], [ 554, 328, 609, 348 ], [ 614, 328, 656, 348 ], [ 661, 328, 740, 348 ], [ 745, 330, 755, 347 ], [ 760, 328, 823, 348 ], [ 828, 328, 871, 348 ], [ 272, 345, 289, 365 ], [ 294, 345, 371, 365 ], [ 376, 347, 386, 364 ], [ 391, 345, 413, 365 ], [ 418, 345, 438, 365 ], [ 443, 345, 560, 365 ], [ 564, 345, 624, 365 ], [ 629, 345, 644, 365 ], [ 649, 345, 701, 365 ], [ 705, 345, 735, 365 ], [ 740, 345, 748, 365 ], [ 753, 345, 815, 365 ], [ 820, 345, 870, 365 ], [ 272, 362, 326, 383 ], [ 331, 362, 432, 383 ], [ 437, 362, 463, 383 ], [ 468, 362, 503, 383 ], [ 508, 362, 541, 383 ], [ 272, 381, 322, 401 ], [ 326, 381, 392, 401 ], [ 397, 381, 460, 401 ], [ 465, 381, 502, 401 ], [ 506, 381, 538, 401 ], [ 543, 381, 580, 401 ], [ 585, 381, 627, 401 ], [ 632, 381, 647, 401 ], [ 288, 400, 340, 420 ], [ 345, 400, 414, 420 ], [ 419, 400, 436, 420 ], [ 441, 400, 506, 420 ], [ 511, 400, 591, 420 ], [ 288, 418, 340, 438 ], [ 345, 418, 410, 438 ], [ 415, 418, 516, 438 ], [ 521, 418, 569, 438 ], [ 574, 418, 663, 438 ], [ 288, 437, 346, 457 ], [ 351, 437, 432, 457 ], [ 437, 437, 452, 457 ], [ 457, 437, 518, 457 ], [ 523, 437, 665, 457 ], [ 669, 437, 736, 457 ], [ 741, 437, 789, 457 ], [ 794, 437, 839, 457 ], [ 844, 437, 861, 457 ], [ 288, 454, 324, 474 ], [ 329, 454, 354, 474 ], [ 359, 454, 403, 474 ], [ 408, 454, 432, 474 ], [ 437, 454, 487, 474 ], [ 492, 454, 508, 474 ], [ 513, 454, 537, 474 ], [ 542, 454, 633, 474 ], [ 638, 454, 655, 474 ], [ 660, 454, 752, 474 ], [ 757, 454, 827, 474 ], [ 288, 473, 363, 493 ], [ 368, 473, 403, 493 ], [ 408, 473, 448, 493 ], [ 452, 473, 497, 493 ], [ 502, 473, 522, 493 ], [ 527, 473, 551, 493 ], [ 556, 473, 622, 493 ], [ 627, 473, 656, 493 ], [ 661, 473, 685, 493 ], [ 690, 473, 722, 493 ], [ 727, 473, 766, 493 ], [ 771, 473, 786, 493 ], [ 791, 473, 827, 493 ], [ 288, 490, 343, 510 ], [ 348, 490, 361, 510 ], [ 366, 490, 412, 510 ], [ 417, 490, 427, 510 ], [ 288, 508, 352, 529 ], [ 357, 508, 451, 529 ], [ 456, 508, 554, 529 ], [ 559, 508, 575, 529 ], [ 580, 508, 659, 529 ], [ 664, 508, 715, 529 ], [ 720, 508, 748, 529 ], [ 753, 508, 840, 529 ], [ 288, 526, 336, 546 ], [ 340, 526, 421, 546 ], [ 426, 526, 442, 546 ], [ 447, 526, 508, 546 ], [ 513, 526, 536, 546 ], [ 540, 526, 573, 546 ], [ 578, 526, 628, 546 ], [ 633, 526, 690, 546 ], [ 695, 526, 746, 546 ], [ 751, 526, 801, 546 ], [ 806, 526, 814, 546 ], [ 819, 526, 859, 546 ], [ 288, 544, 340, 565 ], [ 345, 544, 400, 565 ], [ 405, 544, 434, 565 ], [ 438, 544, 478, 565 ], [ 483, 544, 521, 565 ], [ 526, 544, 541, 565 ], [ 546, 544, 586, 565 ], [ 591, 544, 672, 565 ], [ 676, 544, 726, 565 ], [ 731, 544, 767, 565 ], [ 772, 544, 830, 565 ], [ 288, 563, 339, 583 ], [ 344, 563, 387, 583 ], [ 392, 563, 438, 583 ], [ 443, 563, 493, 583 ], [ 498, 563, 542, 583 ], [ 546, 563, 581, 583 ], [ 586, 563, 614, 583 ], [ 288, 582, 329, 602 ], [ 334, 582, 358, 602 ], [ 363, 582, 440, 602 ], [ 445, 582, 476, 602 ], [ 481, 582, 583, 602 ], [ 588, 582, 623, 602 ], [ 627, 582, 681, 602 ], [ 686, 582, 765, 602 ], [ 298, 618, 380, 639 ], [ 384, 618, 410, 639 ], [ 414, 618, 441, 639 ], [ 445, 618, 510, 639 ], [ 752, 618, 821, 639 ], [ 126, 635, 148, 656 ], [ 153, 635, 242, 656 ], [ 247, 635, 317, 656 ], [ 323, 635, 352, 656 ], [ 357, 635, 413, 656 ], [ 418, 635, 499, 656 ], [ 504, 635, 560, 656 ], [ 700, 635, 758, 656 ], [ 763, 635, 794, 656 ], [ 799, 635, 825, 656 ], [ 700, 653, 761, 673 ], [ 766, 653, 781, 673 ], [ 786, 653, 848, 673 ], [ 853, 653, 868, 673 ], [ 700, 670, 758, 691 ], [ 763, 670, 781, 691 ], [ 786, 670, 832, 691 ], [ 837, 670, 852, 691 ], [ 700, 688, 746, 708 ], [ 751, 688, 760, 708 ], [ 700, 705, 810, 725 ], [ 126, 724, 148, 744 ], [ 153, 724, 181, 744 ], [ 186, 724, 264, 744 ], [ 269, 724, 340, 744 ], [ 345, 724, 374, 744 ], [ 379, 724, 440, 744 ], [ 445, 724, 469, 744 ], [ 474, 724, 519, 744 ], [ 524, 724, 593, 744 ], [ 598, 724, 613, 744 ], [ 618, 724, 671, 744 ], [ 126, 741, 164, 761 ], [ 169, 741, 244, 761 ], [ 249, 741, 343, 761 ], [ 348, 741, 440, 761 ], [ 445, 741, 532, 761 ], [ 537, 741, 561, 761 ], [ 566, 741, 623, 761 ], [ 126, 759, 194, 779 ], [ 199, 759, 267, 779 ], [ 700, 724, 797, 744 ], [ 126, 777, 148, 797 ], [ 153, 777, 242, 797 ], [ 247, 777, 317, 797 ], [ 323, 777, 352, 797 ], [ 357, 777, 418, 797 ], [ 423, 777, 447, 797 ], [ 452, 777, 496, 797 ], [ 501, 777, 571, 797 ], [ 575, 777, 609, 797 ], [ 614, 777, 629, 797 ], [ 126, 794, 174, 814 ], [ 179, 794, 253, 814 ], [ 258, 794, 350, 814 ], [ 355, 794, 371, 814 ], [ 375, 794, 384, 814 ], [ 389, 794, 458, 814 ], [ 464, 794, 529, 814 ], [ 534, 794, 636, 814 ], [ 126, 812, 184, 832 ], [ 189, 812, 257, 832 ], [ 262, 812, 313, 832 ], [ 318, 812, 370, 832 ], [ 700, 777, 795, 797 ], [ 139, 831, 161, 851 ], [ 166, 831, 228, 851 ], [ 233, 831, 303, 851 ], [ 308, 831, 346, 851 ], [ 351, 831, 376, 851 ], [ 382, 831, 483, 851 ], [ 488, 831, 518, 851 ], [ 523, 831, 596, 851 ], [ 601, 831, 625, 851 ], [ 139, 849, 225, 869 ], [ 230, 849, 314, 869 ], [ 318, 849, 335, 869 ], [ 340, 849, 360, 869 ], [ 364, 849, 434, 869 ], [ 439, 849, 495, 869 ], [ 139, 867, 161, 887 ], [ 166, 867, 194, 887 ], [ 199, 867, 269, 887 ], [ 274, 867, 304, 887 ], [ 309, 867, 370, 887 ], [ 375, 867, 399, 887 ], [ 404, 867, 448, 887 ], [ 453, 867, 523, 887 ], [ 154, 886, 163, 906 ], [ 168, 886, 250, 906 ], [ 255, 886, 312, 906 ], [ 317, 886, 355, 906 ], [ 360, 886, 379, 906 ], [ 384, 886, 464, 906 ], [ 469, 886, 507, 906 ], [ 512, 886, 527, 906 ], [ 532, 886, 624, 906 ], [ 628, 886, 637, 906 ], [ 154, 903, 198, 923 ], [ 203, 903, 218, 923 ], [ 223, 903, 247, 923 ], [ 252, 903, 314, 923 ], [ 319, 903, 389, 923 ], [ 394, 903, 444, 923 ], [ 449, 903, 494, 923 ], [ 499, 903, 528, 923 ], [ 700, 830, 797, 850 ] ]
k. MCASC is primarily responsible for Responsibilities of the MCASC identifying post-Vietnam Era record(s) required to document the stressors, or providing confirmation that the claimed stressor(s) cannot be corroborated using records in its custody. A regional office (RO) cannot deny a claim for PTSD based Important: solely on the absence of a verified stressor until MCASC or NARA has confirmed the RO’s negative findings. The following information must be included in each e-mail request to l. Information to Include in MCASC for records needed to document a claimed stressor: Record Requests to the last name Veteran’s MCASC designation of the unit of assignment at the time of the stressful Veteran’s Related to a event down to the lowest possible level Claimed the most specific date(s), at minimum the month and year, during which the Stressor stressful event occurred geographical location where stressful event took place description of the stressful event, and the name and e-mail address of the VA Point of Contact. Notes: Do include in the request any medical information or statement(s) from not the Veteran. MCASC only researches unit command chronology. Therefore, personal identification information, such as SSN, service number, date of birth, and dates of service should not be included in the request. Submit a request to MCASC after exhausting all efforts to document only the claimed stressor(s) through other means, including Virtual VA and/or military web sites. official Include a copy of the e-mail request in the claims folder. Veteran’s References: For e-mail address, see M21-1, Part IV, Subpart ii, 1.D.3.b. MCASC’s For a sample of an e-mail request to MCASC for stressor verification, see M21-1, Part IV, Subpart ii, 1.D.3.m. Below is a sample of the text to include in the e-mail to MCASC for a m. Sample to determination as to the availability of records required to corroborate a MCASC for stressor that occurred during in the Marine Corps after the Vietnam Determination Era. as to Availability of To: Marine Corps Archives and Special Collections Records to Corroborate From: XYZ Regional Office
k. Responsibilities of the MCASC MCASC is primarily responsible for identifying post-Vietnam Era record(s) required to document the stressors, or providing confirmation that the claimed stressor(s) cannot be corroborated using records in its custody. Important: A regional office (RO) cannot deny a claim for PTSD based solely on the absence of a verified stressor until MCASC or NARA has confirmed the RO’s negative findings. l. Information to Include in Record Requests to MCASC Related to a Claimed Stressor The following information must be included in each e-mail request to MCASC for records needed to document a claimed stressor: the Veteran’s last name designation of the Veteran’s unit of assignment at the time of the stressful event down to the lowest possible level the most specific date(s), at minimum the month and year, during which the stressful event occurred geographical location where stressful event took place description of the stressful event, and the name and e-mail address of the VA Point of Contact. Notes: Do not include in the request any medical information or statement(s) from the Veteran. MCASC only researches unit command chronology. Therefore, personal identification information, such as SSN, service number, date of birth, and dates of service should not be included in the request. Submit a request to MCASC only after exhausting all efforts to document the claimed stressor(s) through other means, including Virtual VA and/or official military web sites. Include a copy of the e-mail request in the Veteran’s claims folder. References: For MCASC’s e-mail address, see M21-1, Part IV, Subpart ii, 1.D.3.b. For a sample of an e-mail request to MCASC for stressor verification, see M21-1, Part IV, Subpart ii, 1.D.3.m. m. Sample to MCASC for Determination as to Availability of Records to Corroborate Below is a sample of the text to include in the e-mail to MCASC for a determination as to the availability of records required to corroborate a stressor that occurred during in the Marine Corps after the Vietnam Era. To: Marine Corps Archives and Special Collections From: XYZ Regional Office
0.808096
[ 0, 6, 7, 8, 9, 1, 2, 3, 4, 5, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 45, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 75, 76, 77, 78, 79, 89, 90, 91, 96, 110, 111, 112, 120, 134, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 80, 81, 82, 83, 84, 85, 86, 87, 88, 92, 95, 93, 94, 97, 98, 99, 109, 100, 101, 102, 103, 104, 105, 106, 107, 108, 113, 114, 115, 116, 117, 118, 119, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 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, 174, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 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, 217, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 231, 228, 229, 230, 232, 233, 234, 235, 236, 237, 238, 239, 240, 243, 241, 242, 244, 245, 255, 246, 247, 248, 249, 250, 251, 252, 253, 254, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 291, 292, 293, 305, 306, 318, 320, 321, 322, 323, 331, 332, 333, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 319, 324, 325, 326, 327, 328, 329, 330, 334, 335, 336, 337 ]
M21-1IV_ii_1_SecD.docx
task-1431-658
22
[ [ 117, 61, 132, 81 ], [ 258, 61, 327, 81 ], [ 332, 61, 345, 81 ], [ 350, 61, 423, 81 ], [ 428, 61, 517, 81 ], [ 522, 61, 545, 81 ], [ 117, 77, 237, 97 ], [ 117, 93, 132, 113 ], [ 137, 93, 161, 113 ], [ 165, 93, 231, 113 ], [ 272, 97, 359, 117 ], [ 363, 97, 470, 117 ], [ 475, 97, 502, 117 ], [ 507, 97, 578, 117 ], [ 583, 97, 648, 117 ], [ 653, 97, 668, 117 ], [ 673, 97, 751, 117 ], [ 756, 97, 780, 117 ], [ 784, 97, 857, 117 ], [ 272, 114, 289, 134 ], [ 272, 133, 349, 153 ], [ 353, 133, 455, 153 ], [ 460, 133, 489, 153 ], [ 494, 133, 518, 153 ], [ 523, 133, 585, 153 ], [ 590, 133, 671, 153 ], [ 676, 133, 728, 153 ], [ 733, 133, 751, 153 ], [ 756, 133, 856, 153 ], [ 272, 150, 315, 170 ], [ 320, 150, 377, 170 ], [ 382, 150, 398, 170 ], [ 403, 150, 421, 170 ], [ 426, 150, 492, 170 ], [ 356, 185, 370, 205 ], [ 375, 185, 439, 205 ], [ 444, 185, 489, 205 ], [ 494, 185, 535, 205 ], [ 539, 185, 592, 205 ], [ 596, 185, 635, 205 ], [ 640, 185, 648, 205 ], [ 653, 185, 697, 205 ], [ 702, 185, 725, 205 ], [ 729, 185, 777, 205 ], [ 782, 185, 827, 205 ], [ 258, 186, 346, 205 ], [ 258, 202, 305, 223 ], [ 310, 202, 330, 223 ], [ 334, 202, 358, 223 ], [ 363, 202, 426, 223 ], [ 430, 202, 447, 223 ], [ 452, 202, 460, 223 ], [ 465, 202, 526, 223 ], [ 531, 202, 591, 223 ], [ 596, 202, 632, 223 ], [ 637, 202, 706, 223 ], [ 711, 202, 727, 223 ], [ 732, 202, 787, 223 ], [ 792, 202, 818, 223 ], [ 258, 220, 339, 240 ], [ 344, 220, 368, 240 ], [ 373, 222, 414, 239 ], [ 419, 222, 485, 239 ], [ 490, 222, 559, 239 ], [ 258, 272, 289, 292 ], [ 294, 272, 370, 292 ], [ 375, 272, 468, 292 ], [ 473, 272, 511, 292 ], [ 516, 272, 534, 292 ], [ 539, 272, 606, 292 ], [ 611, 272, 627, 292 ], [ 632, 272, 667, 292 ], [ 672, 272, 722, 292 ], [ 727, 272, 784, 292 ], [ 789, 272, 804, 292 ], [ 117, 273, 127, 292 ], [ 136, 273, 230, 292 ], [ 117, 289, 132, 308 ], [ 137, 289, 195, 308 ], [ 199, 289, 214, 308 ], [ 258, 289, 327, 310 ], [ 332, 289, 355, 310 ], [ 360, 289, 417, 310 ], [ 422, 289, 478, 310 ], [ 483, 289, 498, 310 ], [ 503, 289, 580, 310 ], [ 585, 289, 594, 310 ], [ 599, 289, 661, 310 ], [ 666, 289, 731, 310 ], [ 117, 305, 173, 324 ], [ 117, 321, 186, 340 ], [ 191, 321, 206, 340 ], [ 272, 326, 296, 346 ], [ 382, 326, 410, 346 ], [ 414, 326, 457, 346 ], [ 301, 328, 377, 345 ], [ 117, 337, 183, 356 ], [ 272, 344, 363, 364 ], [ 368, 344, 384, 364 ], [ 389, 344, 413, 364 ], [ 499, 344, 530, 364 ], [ 535, 344, 551, 364 ], [ 556, 344, 644, 364 ], [ 649, 344, 663, 364 ], [ 668, 344, 692, 364 ], [ 697, 344, 732, 364 ], [ 736, 344, 753, 364 ], [ 758, 344, 782, 364 ], [ 787, 344, 852, 364 ], [ 418, 347, 494, 363 ], [ 117, 353, 176, 372 ], [ 181, 353, 196, 372 ], [ 200, 353, 209, 372 ], [ 272, 361, 315, 382 ], [ 320, 361, 363, 382 ], [ 368, 361, 384, 382 ], [ 388, 361, 412, 382 ], [ 417, 361, 468, 382 ], [ 474, 361, 538, 382 ], [ 543, 361, 581, 382 ], [ 117, 368, 182, 388 ], [ 271, 380, 295, 400 ], [ 300, 380, 338, 400 ], [ 343, 380, 404, 400 ], [ 409, 380, 467, 400 ], [ 472, 380, 486, 400 ], [ 491, 380, 568, 400 ], [ 573, 380, 597, 400 ], [ 602, 380, 652, 400 ], [ 657, 380, 685, 400 ], [ 690, 380, 728, 400 ], [ 733, 380, 784, 400 ], [ 789, 380, 837, 400 ], [ 842, 380, 866, 400 ], [ 178, 385, 241, 404 ], [ 271, 397, 337, 417 ], [ 342, 397, 384, 417 ], [ 389, 397, 457, 417 ], [ 272, 416, 374, 436 ], [ 379, 416, 442, 436 ], [ 447, 416, 495, 436 ], [ 499, 416, 565, 436 ], [ 570, 416, 612, 436 ], [ 617, 416, 652, 436 ], [ 657, 416, 698, 436 ], [ 272, 434, 360, 455 ], [ 364, 434, 381, 455 ], [ 386, 434, 410, 455 ], [ 414, 434, 480, 455 ], [ 485, 434, 532, 455 ], [ 537, 434, 565, 455 ], [ 272, 453, 296, 473 ], [ 301, 453, 344, 473 ], [ 349, 453, 377, 473 ], [ 382, 453, 432, 473 ], [ 437, 453, 496, 473 ], [ 501, 453, 517, 473 ], [ 522, 453, 546, 473 ], [ 551, 453, 579, 473 ], [ 584, 453, 625, 473 ], [ 630, 453, 647, 473 ], [ 651, 453, 717, 473 ], [ 258, 489, 309, 508 ], [ 272, 506, 296, 527 ], [ 331, 506, 389, 527 ], [ 394, 506, 409, 527 ], [ 414, 506, 438, 527 ], [ 443, 506, 500, 527 ], [ 504, 506, 533, 527 ], [ 537, 506, 600, 527 ], [ 605, 506, 697, 527 ], [ 702, 506, 719, 527 ], [ 724, 506, 819, 527 ], [ 824, 506, 862, 527 ], [ 301, 508, 326, 526 ], [ 272, 524, 296, 544 ], [ 301, 524, 368, 544 ], [ 272, 542, 341, 562 ], [ 346, 542, 381, 562 ], [ 386, 542, 467, 562 ], [ 472, 542, 503, 562 ], [ 508, 542, 585, 562 ], [ 590, 542, 684, 562 ], [ 694, 542, 776, 562 ], [ 781, 542, 847, 562 ], [ 272, 560, 377, 580 ], [ 382, 560, 479, 580 ], [ 484, 560, 520, 580 ], [ 525, 560, 541, 580 ], [ 546, 560, 587, 580 ], [ 592, 560, 648, 580 ], [ 652, 560, 717, 580 ], [ 722, 560, 755, 580 ], [ 760, 560, 776, 580 ], [ 781, 560, 823, 580 ], [ 828, 560, 856, 580 ], [ 272, 577, 313, 597 ], [ 318, 577, 334, 597 ], [ 339, 577, 394, 597 ], [ 399, 577, 452, 597 ], [ 456, 577, 482, 597 ], [ 487, 577, 505, 597 ], [ 510, 577, 577, 597 ], [ 582, 577, 598, 597 ], [ 603, 577, 627, 597 ], [ 631, 577, 693, 597 ], [ 272, 596, 329, 616 ], [ 334, 596, 343, 616 ], [ 348, 596, 404, 616 ], [ 409, 596, 424, 616 ], [ 429, 596, 498, 616 ], [ 542, 596, 578, 616 ], [ 582, 596, 667, 616 ], [ 672, 596, 692, 616 ], [ 697, 596, 748, 616 ], [ 753, 596, 768, 616 ], [ 773, 596, 850, 616 ], [ 503, 597, 537, 616 ], [ 272, 613, 296, 633 ], [ 301, 613, 363, 633 ], [ 368, 613, 449, 633 ], [ 454, 613, 515, 633 ], [ 520, 613, 560, 633 ], [ 565, 613, 620, 633 ], [ 625, 613, 699, 633 ], [ 704, 613, 759, 633 ], [ 764, 613, 793, 633 ], [ 798, 613, 848, 633 ], [ 333, 630, 395, 651 ], [ 400, 630, 433, 651 ], [ 437, 630, 477, 651 ], [ 272, 632, 328, 650 ], [ 272, 649, 331, 669 ], [ 336, 649, 345, 669 ], [ 350, 649, 388, 669 ], [ 393, 649, 409, 669 ], [ 414, 649, 438, 669 ], [ 443, 649, 493, 669 ], [ 498, 649, 554, 669 ], [ 559, 649, 575, 669 ], [ 580, 649, 604, 669 ], [ 690, 649, 741, 669 ], [ 746, 649, 797, 669 ], [ 608, 651, 685, 668 ], [ 258, 685, 353, 704 ], [ 272, 702, 300, 722 ], [ 392, 702, 442, 722 ], [ 447, 702, 511, 722 ], [ 516, 702, 541, 722 ], [ 546, 702, 604, 722 ], [ 609, 702, 641, 722 ], [ 646, 702, 671, 722 ], [ 676, 702, 737, 722 ], [ 742, 702, 758, 722 ], [ 763, 702, 826, 722 ], [ 304, 705, 387, 722 ], [ 272, 721, 300, 741 ], [ 304, 721, 313, 741 ], [ 318, 721, 374, 741 ], [ 379, 721, 395, 741 ], [ 400, 721, 418, 741 ], [ 423, 721, 473, 741 ], [ 478, 721, 535, 741 ], [ 540, 721, 555, 741 ], [ 560, 721, 629, 741 ], [ 634, 721, 657, 741 ], [ 661, 721, 721, 741 ], [ 726, 721, 821, 741 ], [ 826, 721, 851, 741 ], [ 272, 738, 331, 758 ], [ 336, 738, 367, 758 ], [ 372, 738, 398, 758 ], [ 403, 738, 464, 758 ], [ 469, 738, 484, 758 ], [ 489, 738, 558, 758 ], [ 258, 790, 309, 811 ], [ 314, 790, 327, 811 ], [ 332, 790, 341, 811 ], [ 346, 790, 402, 811 ], [ 406, 790, 423, 811 ], [ 428, 790, 452, 811 ], [ 457, 790, 486, 811 ], [ 491, 790, 506, 811 ], [ 511, 790, 569, 811 ], [ 574, 790, 589, 811 ], [ 594, 790, 618, 811 ], [ 623, 790, 673, 811 ], [ 678, 790, 693, 811 ], [ 698, 790, 767, 811 ], [ 772, 790, 795, 811 ], [ 799, 790, 808, 811 ], [ 117, 791, 137, 810 ], [ 146, 791, 203, 810 ], [ 156, 807, 171, 826 ], [ 258, 808, 367, 828 ], [ 372, 808, 388, 828 ], [ 393, 808, 409, 828 ], [ 414, 808, 437, 828 ], [ 442, 808, 531, 828 ], [ 535, 808, 552, 828 ], [ 557, 808, 614, 828 ], [ 619, 808, 685, 828 ], [ 690, 808, 705, 828 ], [ 710, 808, 800, 828 ], [ 805, 808, 814, 828 ], [ 117, 823, 183, 842 ], [ 188, 823, 211, 842 ], [ 258, 825, 318, 845 ], [ 323, 825, 353, 845 ], [ 357, 825, 426, 845 ], [ 431, 825, 482, 845 ], [ 547, 825, 563, 845 ], [ 568, 825, 592, 845 ], [ 596, 825, 653, 845 ], [ 658, 825, 705, 845 ], [ 710, 825, 746, 845 ], [ 751, 825, 775, 845 ], [ 780, 825, 847, 845 ], [ 117, 839, 229, 858 ], [ 258, 843, 290, 863 ], [ 117, 855, 133, 874 ], [ 138, 855, 153, 874 ], [ 117, 871, 207, 890 ], [ 212, 871, 227, 890 ], [ 317, 879, 345, 898 ], [ 354, 879, 412, 898 ], [ 417, 879, 465, 898 ], [ 470, 879, 538, 898 ], [ 543, 879, 573, 898 ], [ 577, 879, 635, 898 ], [ 640, 879, 729, 898 ], [ 117, 887, 180, 906 ], [ 185, 887, 200, 906 ], [ 117, 903, 214, 922 ], [ 317, 914, 367, 932 ], [ 372, 914, 406, 932 ], [ 411, 914, 482, 932 ], [ 487, 914, 535, 932 ] ]
[ [ 117, 61, 132, 81 ], [ 117, 77, 237, 97 ], [ 117, 93, 132, 113 ], [ 137, 93, 161, 113 ], [ 165, 93, 231, 113 ], [ 258, 61, 327, 81 ], [ 332, 61, 345, 81 ], [ 350, 61, 423, 81 ], [ 428, 61, 517, 81 ], [ 522, 61, 545, 81 ], [ 272, 97, 359, 117 ], [ 363, 97, 470, 117 ], [ 475, 97, 502, 117 ], [ 507, 97, 578, 117 ], [ 583, 97, 648, 117 ], [ 653, 97, 668, 117 ], [ 673, 97, 751, 117 ], [ 756, 97, 780, 117 ], [ 784, 97, 857, 117 ], [ 272, 114, 289, 134 ], [ 272, 133, 349, 153 ], [ 353, 133, 455, 153 ], [ 460, 133, 489, 153 ], [ 494, 133, 518, 153 ], [ 523, 133, 585, 153 ], [ 590, 133, 671, 153 ], [ 676, 133, 728, 153 ], [ 733, 133, 751, 153 ], [ 756, 133, 856, 153 ], [ 272, 150, 315, 170 ], [ 320, 150, 377, 170 ], [ 382, 150, 398, 170 ], [ 403, 150, 421, 170 ], [ 426, 150, 492, 170 ], [ 258, 186, 346, 205 ], [ 356, 185, 370, 205 ], [ 375, 185, 439, 205 ], [ 444, 185, 489, 205 ], [ 494, 185, 535, 205 ], [ 539, 185, 592, 205 ], [ 596, 185, 635, 205 ], [ 640, 185, 648, 205 ], [ 653, 185, 697, 205 ], [ 702, 185, 725, 205 ], [ 729, 185, 777, 205 ], [ 782, 185, 827, 205 ], [ 258, 202, 305, 223 ], [ 310, 202, 330, 223 ], [ 334, 202, 358, 223 ], [ 363, 202, 426, 223 ], [ 430, 202, 447, 223 ], [ 452, 202, 460, 223 ], [ 465, 202, 526, 223 ], [ 531, 202, 591, 223 ], [ 596, 202, 632, 223 ], [ 637, 202, 706, 223 ], [ 711, 202, 727, 223 ], [ 732, 202, 787, 223 ], [ 792, 202, 818, 223 ], [ 258, 220, 339, 240 ], [ 344, 220, 368, 240 ], [ 373, 222, 414, 239 ], [ 419, 222, 485, 239 ], [ 490, 222, 559, 239 ], [ 117, 273, 127, 292 ], [ 136, 273, 230, 292 ], [ 117, 289, 132, 308 ], [ 137, 289, 195, 308 ], [ 199, 289, 214, 308 ], [ 117, 305, 173, 324 ], [ 117, 321, 186, 340 ], [ 191, 321, 206, 340 ], [ 117, 337, 183, 356 ], [ 117, 353, 176, 372 ], [ 181, 353, 196, 372 ], [ 200, 353, 209, 372 ], [ 117, 368, 182, 388 ], [ 178, 385, 241, 404 ], [ 258, 272, 289, 292 ], [ 294, 272, 370, 292 ], [ 375, 272, 468, 292 ], [ 473, 272, 511, 292 ], [ 516, 272, 534, 292 ], [ 539, 272, 606, 292 ], [ 611, 272, 627, 292 ], [ 632, 272, 667, 292 ], [ 672, 272, 722, 292 ], [ 727, 272, 784, 292 ], [ 789, 272, 804, 292 ], [ 258, 289, 327, 310 ], [ 332, 289, 355, 310 ], [ 360, 289, 417, 310 ], [ 422, 289, 478, 310 ], [ 483, 289, 498, 310 ], [ 503, 289, 580, 310 ], [ 585, 289, 594, 310 ], [ 599, 289, 661, 310 ], [ 666, 289, 731, 310 ], [ 272, 326, 296, 346 ], [ 301, 328, 377, 345 ], [ 382, 326, 410, 346 ], [ 414, 326, 457, 346 ], [ 272, 344, 363, 364 ], [ 368, 344, 384, 364 ], [ 389, 344, 413, 364 ], [ 418, 347, 494, 363 ], [ 499, 344, 530, 364 ], [ 535, 344, 551, 364 ], [ 556, 344, 644, 364 ], [ 649, 344, 663, 364 ], [ 668, 344, 692, 364 ], [ 697, 344, 732, 364 ], [ 736, 344, 753, 364 ], [ 758, 344, 782, 364 ], [ 787, 344, 852, 364 ], [ 272, 361, 315, 382 ], [ 320, 361, 363, 382 ], [ 368, 361, 384, 382 ], [ 388, 361, 412, 382 ], [ 417, 361, 468, 382 ], [ 474, 361, 538, 382 ], [ 543, 361, 581, 382 ], [ 271, 380, 295, 400 ], [ 300, 380, 338, 400 ], [ 343, 380, 404, 400 ], [ 409, 380, 467, 400 ], [ 472, 380, 486, 400 ], [ 491, 380, 568, 400 ], [ 573, 380, 597, 400 ], [ 602, 380, 652, 400 ], [ 657, 380, 685, 400 ], [ 690, 380, 728, 400 ], [ 733, 380, 784, 400 ], [ 789, 380, 837, 400 ], [ 842, 380, 866, 400 ], [ 271, 397, 337, 417 ], [ 342, 397, 384, 417 ], [ 389, 397, 457, 417 ], [ 272, 416, 374, 436 ], [ 379, 416, 442, 436 ], [ 447, 416, 495, 436 ], [ 499, 416, 565, 436 ], [ 570, 416, 612, 436 ], [ 617, 416, 652, 436 ], [ 657, 416, 698, 436 ], [ 272, 434, 360, 455 ], [ 364, 434, 381, 455 ], [ 386, 434, 410, 455 ], [ 414, 434, 480, 455 ], [ 485, 434, 532, 455 ], [ 537, 434, 565, 455 ], [ 272, 453, 296, 473 ], [ 301, 453, 344, 473 ], [ 349, 453, 377, 473 ], [ 382, 453, 432, 473 ], [ 437, 453, 496, 473 ], [ 501, 453, 517, 473 ], [ 522, 453, 546, 473 ], [ 551, 453, 579, 473 ], [ 584, 453, 625, 473 ], [ 630, 453, 647, 473 ], [ 651, 453, 717, 473 ], [ 258, 489, 309, 508 ], [ 272, 506, 296, 527 ], [ 301, 508, 326, 526 ], [ 331, 506, 389, 527 ], [ 394, 506, 409, 527 ], [ 414, 506, 438, 527 ], [ 443, 506, 500, 527 ], [ 504, 506, 533, 527 ], [ 537, 506, 600, 527 ], [ 605, 506, 697, 527 ], [ 702, 506, 719, 527 ], [ 724, 506, 819, 527 ], [ 824, 506, 862, 527 ], [ 272, 524, 296, 544 ], [ 301, 524, 368, 544 ], [ 272, 542, 341, 562 ], [ 346, 542, 381, 562 ], [ 386, 542, 467, 562 ], [ 472, 542, 503, 562 ], [ 508, 542, 585, 562 ], [ 590, 542, 684, 562 ], [ 694, 542, 776, 562 ], [ 781, 542, 847, 562 ], [ 272, 560, 377, 580 ], [ 382, 560, 479, 580 ], [ 484, 560, 520, 580 ], [ 525, 560, 541, 580 ], [ 546, 560, 587, 580 ], [ 592, 560, 648, 580 ], [ 652, 560, 717, 580 ], [ 722, 560, 755, 580 ], [ 760, 560, 776, 580 ], [ 781, 560, 823, 580 ], [ 828, 560, 856, 580 ], [ 272, 577, 313, 597 ], [ 318, 577, 334, 597 ], [ 339, 577, 394, 597 ], [ 399, 577, 452, 597 ], [ 456, 577, 482, 597 ], [ 487, 577, 505, 597 ], [ 510, 577, 577, 597 ], [ 582, 577, 598, 597 ], [ 603, 577, 627, 597 ], [ 631, 577, 693, 597 ], [ 272, 596, 329, 616 ], [ 334, 596, 343, 616 ], [ 348, 596, 404, 616 ], [ 409, 596, 424, 616 ], [ 429, 596, 498, 616 ], [ 503, 597, 537, 616 ], [ 542, 596, 578, 616 ], [ 582, 596, 667, 616 ], [ 672, 596, 692, 616 ], [ 697, 596, 748, 616 ], [ 753, 596, 768, 616 ], [ 773, 596, 850, 616 ], [ 272, 613, 296, 633 ], [ 301, 613, 363, 633 ], [ 368, 613, 449, 633 ], [ 454, 613, 515, 633 ], [ 520, 613, 560, 633 ], [ 565, 613, 620, 633 ], [ 625, 613, 699, 633 ], [ 704, 613, 759, 633 ], [ 764, 613, 793, 633 ], [ 798, 613, 848, 633 ], [ 272, 632, 328, 650 ], [ 333, 630, 395, 651 ], [ 400, 630, 433, 651 ], [ 437, 630, 477, 651 ], [ 272, 649, 331, 669 ], [ 336, 649, 345, 669 ], [ 350, 649, 388, 669 ], [ 393, 649, 409, 669 ], [ 414, 649, 438, 669 ], [ 443, 649, 493, 669 ], [ 498, 649, 554, 669 ], [ 559, 649, 575, 669 ], [ 580, 649, 604, 669 ], [ 608, 651, 685, 668 ], [ 690, 649, 741, 669 ], [ 746, 649, 797, 669 ], [ 258, 685, 353, 704 ], [ 272, 702, 300, 722 ], [ 304, 705, 387, 722 ], [ 392, 702, 442, 722 ], [ 447, 702, 511, 722 ], [ 516, 702, 541, 722 ], [ 546, 702, 604, 722 ], [ 609, 702, 641, 722 ], [ 646, 702, 671, 722 ], [ 676, 702, 737, 722 ], [ 742, 702, 758, 722 ], [ 763, 702, 826, 722 ], [ 272, 721, 300, 741 ], [ 304, 721, 313, 741 ], [ 318, 721, 374, 741 ], [ 379, 721, 395, 741 ], [ 400, 721, 418, 741 ], [ 423, 721, 473, 741 ], [ 478, 721, 535, 741 ], [ 540, 721, 555, 741 ], [ 560, 721, 629, 741 ], [ 634, 721, 657, 741 ], [ 661, 721, 721, 741 ], [ 726, 721, 821, 741 ], [ 826, 721, 851, 741 ], [ 272, 738, 331, 758 ], [ 336, 738, 367, 758 ], [ 372, 738, 398, 758 ], [ 403, 738, 464, 758 ], [ 469, 738, 484, 758 ], [ 489, 738, 558, 758 ], [ 117, 791, 137, 810 ], [ 146, 791, 203, 810 ], [ 156, 807, 171, 826 ], [ 117, 823, 183, 842 ], [ 188, 823, 211, 842 ], [ 117, 839, 229, 858 ], [ 117, 855, 133, 874 ], [ 138, 855, 153, 874 ], [ 117, 871, 207, 890 ], [ 212, 871, 227, 890 ], [ 117, 887, 180, 906 ], [ 185, 887, 200, 906 ], [ 117, 903, 214, 922 ], [ 258, 790, 309, 811 ], [ 314, 790, 327, 811 ], [ 332, 790, 341, 811 ], [ 346, 790, 402, 811 ], [ 406, 790, 423, 811 ], [ 428, 790, 452, 811 ], [ 457, 790, 486, 811 ], [ 491, 790, 506, 811 ], [ 511, 790, 569, 811 ], [ 574, 790, 589, 811 ], [ 594, 790, 618, 811 ], [ 623, 790, 673, 811 ], [ 678, 790, 693, 811 ], [ 698, 790, 767, 811 ], [ 772, 790, 795, 811 ], [ 799, 790, 808, 811 ], [ 258, 808, 367, 828 ], [ 372, 808, 388, 828 ], [ 393, 808, 409, 828 ], [ 414, 808, 437, 828 ], [ 442, 808, 531, 828 ], [ 535, 808, 552, 828 ], [ 557, 808, 614, 828 ], [ 619, 808, 685, 828 ], [ 690, 808, 705, 828 ], [ 710, 808, 800, 828 ], [ 805, 808, 814, 828 ], [ 258, 825, 318, 845 ], [ 323, 825, 353, 845 ], [ 357, 825, 426, 845 ], [ 431, 825, 482, 845 ], [ 547, 825, 563, 845 ], [ 568, 825, 592, 845 ], [ 596, 825, 653, 845 ], [ 658, 825, 705, 845 ], [ 710, 825, 746, 845 ], [ 751, 825, 775, 845 ], [ 780, 825, 847, 845 ], [ 258, 843, 290, 863 ], [ 317, 879, 345, 898 ], [ 354, 879, 412, 898 ], [ 417, 879, 465, 898 ], [ 470, 879, 538, 898 ], [ 543, 879, 573, 898 ], [ 577, 879, 635, 898 ], [ 640, 879, 729, 898 ], [ 317, 914, 367, 932 ], [ 372, 914, 406, 932 ], [ 411, 914, 482, 932 ], [ 487, 914, 535, 932 ] ]
Section E. Claims Based on Service in Southwest Asia Overview This section contains the following topics: In This Section Topic Topic Name 1 Developing Claims Based on Southwest Asia Service 2 Examinations in Claims Based on Southwest Asia Service 1. Developing Claims Based on Southwest Asia Service This topic contains information on developing Southwest Asia claims, Introduction including action to take when the Veteran alleges exposure to environmental hazards but claims no disability initial development action on a new Southwest Asia service claim an exhibit of the Section 5103 notice letter attachment for Southwest Asia claims verifying Southwest Asia service using DD Form 214, Certificate of Release or Discharge from Active Duty requesting service department records in a Southwest Asia claim requesting medical evidence in claims under 38 CFR 3.317, and considering whether to clarify or corroborate lay statements November 5, 2015 Change Date A claim is not substantially complete if a Veteran alleges exposure to a. Action to Take When the environmental hazards during service, but does not identify the medical Veteran Alleges condition or symptom for which service connection (SC) is claimed. In cases Exposure to such as these Environmental Hazards but inform the Veteran that he/she identify a specific disability, since must Claims No exposure in and of itself is not a disability, and Disability ask the Veteran to identify the disability(ies) that resulted from exposure to environmental hazards during service. Important: Do not process the claim as a denial. Whenever possible, telephone the Veteran to obtain the information needed
Section E. Claims Based on Service in Southwest Asia Overview In This Section This section contains the following topics: Topic Topic Name 1 Developing Claims Based on Southwest Asia Service 2 Examinations in Claims Based on Southwest Asia Service 1. Developing Claims Based on Southwest Asia Service Introduction This topic contains information on developing Southwest Asia claims, including action to take when the Veteran alleges exposure to environmental hazards but claims no disability initial development action on a new Southwest Asia service claim an exhibit of the Section 5103 notice letter attachment for Southwest Asia claims verifying Southwest Asia service using DD Form 214, Certificate of Release or Discharge from Active Duty requesting service department records in a Southwest Asia claim requesting medical evidence in claims under 38 CFR 3.317, and considering whether to clarify or corroborate lay statements Change Date November 5, 2015 a. Action to Take When the Veteran Alleges Exposure to Environmental Hazards but Claims No Disability A claim is not substantially complete if a Veteran alleges exposure to environmental hazards during service, but does not identify the medical condition or symptom for which service connection (SC) is claimed. In cases such as these inform the Veteran that he/she must identify a specific disability, since exposure in and of itself is not a disability, and ask the Veteran to identify the disability(ies) that resulted from exposure to environmental hazards during service. Important: Do not process the claim as a denial. Whenever possible, telephone the Veteran to obtain the information needed
0.870922
[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 16, 17, 18, 10, 11, 12, 13, 14, 15, 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, 56, 47, 48, 49, 50, 51, 52, 53, 54, 55, 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, 142, 143, 139, 140, 141, 156, 157, 158, 159, 160, 161, 172, 173, 186, 187, 191, 192, 193, 205, 206, 217, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 188, 189, 190, 194, 195, 196, 197, 198, 204, 199, 200, 201, 202, 203, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 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 ]
M21-1IV_ii_1_SecE.docx
task-1431-660
0
[ [ 157, 60, 252, 88 ], [ 259, 60, 284, 88 ], [ 298, 60, 384, 88 ], [ 391, 60, 470, 88 ], [ 477, 60, 509, 88 ], [ 516, 60, 609, 88 ], [ 616, 60, 639, 88 ], [ 647, 60, 779, 88 ], [ 787, 60, 841, 88 ], [ 117, 99, 233, 126 ], [ 258, 157, 293, 177 ], [ 298, 157, 354, 177 ], [ 359, 157, 424, 177 ], [ 429, 157, 453, 177 ], [ 458, 157, 534, 177 ], [ 539, 157, 591, 177 ], [ 117, 158, 134, 177 ], [ 139, 158, 173, 177 ], [ 177, 158, 233, 177 ], [ 287, 193, 335, 214 ], [ 572, 193, 620, 214 ], [ 625, 193, 674, 214 ], [ 306, 215, 315, 235 ], [ 370, 215, 462, 235 ], [ 466, 215, 522, 235 ], [ 527, 215, 575, 235 ], [ 580, 215, 599, 235 ], [ 604, 215, 686, 235 ], [ 691, 215, 727, 235 ], [ 732, 215, 790, 235 ], [ 306, 234, 315, 254 ], [ 370, 234, 478, 254 ], [ 483, 234, 498, 254 ], [ 503, 234, 559, 254 ], [ 563, 234, 611, 254 ], [ 616, 234, 636, 254 ], [ 641, 234, 722, 254 ], [ 727, 234, 763, 254 ], [ 768, 234, 827, 254 ], [ 117, 309, 139, 337 ], [ 153, 309, 294, 337 ], [ 302, 309, 387, 337 ], [ 395, 309, 473, 337 ], [ 480, 309, 512, 337 ], [ 519, 309, 652, 337 ], [ 659, 309, 714, 337 ], [ 721, 309, 814, 337 ], [ 258, 368, 293, 388 ], [ 298, 368, 337, 388 ], [ 342, 368, 408, 388 ], [ 413, 368, 505, 388 ], [ 510, 368, 530, 388 ], [ 535, 368, 622, 388 ], [ 626, 368, 708, 388 ], [ 713, 368, 749, 388 ], [ 754, 368, 810, 388 ], [ 117, 369, 215, 388 ], [ 258, 385, 332, 406 ], [ 272, 421, 320, 442 ], [ 325, 421, 340, 442 ], [ 345, 421, 378, 442 ], [ 383, 421, 425, 442 ], [ 430, 421, 454, 442 ], [ 459, 421, 521, 442 ], [ 526, 421, 581, 442 ], [ 586, 421, 656, 442 ], [ 661, 421, 677, 442 ], [ 682, 421, 795, 442 ], [ 800, 421, 860, 442 ], [ 272, 439, 298, 459 ], [ 302, 439, 354, 459 ], [ 359, 439, 378, 459 ], [ 383, 439, 456, 459 ], [ 272, 457, 318, 478 ], [ 323, 457, 424, 478 ], [ 429, 457, 477, 478 ], [ 482, 457, 502, 478 ], [ 507, 457, 515, 478 ], [ 520, 457, 553, 478 ], [ 558, 457, 639, 478 ], [ 644, 457, 680, 478 ], [ 685, 457, 741, 478 ], [ 746, 457, 789, 478 ], [ 272, 476, 291, 496 ], [ 296, 476, 350, 496 ], [ 355, 476, 372, 496 ], [ 377, 476, 401, 496 ], [ 406, 476, 464, 496 ], [ 469, 476, 508, 496 ], [ 513, 476, 561, 496 ], [ 566, 476, 606, 496 ], [ 611, 476, 697, 496 ], [ 702, 476, 725, 496 ], [ 730, 476, 812, 496 ], [ 817, 476, 853, 496 ], [ 272, 493, 324, 513 ], [ 272, 512, 344, 532 ], [ 349, 512, 431, 532 ], [ 436, 512, 472, 532 ], [ 477, 512, 532, 532 ], [ 537, 512, 580, 532 ], [ 585, 513, 613, 532 ], [ 618, 513, 661, 532 ], [ 666, 513, 701, 532 ], [ 711, 513, 794, 532 ], [ 799, 513, 815, 532 ], [ 272, 531, 333, 549 ], [ 338, 531, 356, 549 ], [ 360, 531, 442, 549 ], [ 447, 531, 484, 549 ], [ 489, 531, 538, 549 ], [ 543, 531, 581, 549 ], [ 272, 548, 354, 568 ], [ 359, 548, 415, 568 ], [ 419, 548, 508, 568 ], [ 513, 548, 570, 568 ], [ 575, 548, 590, 568 ], [ 595, 548, 604, 568 ], [ 609, 548, 691, 568 ], [ 696, 548, 732, 568 ], [ 736, 548, 780, 568 ], [ 272, 566, 354, 587 ], [ 359, 566, 421, 587 ], [ 426, 566, 496, 587 ], [ 501, 566, 516, 587 ], [ 521, 566, 572, 587 ], [ 577, 566, 621, 587 ], [ 626, 566, 646, 587 ], [ 651, 566, 688, 587 ], [ 693, 566, 742, 587 ], [ 747, 566, 775, 587 ], [ 272, 585, 364, 605 ], [ 369, 585, 432, 605 ], [ 437, 585, 452, 605 ], [ 457, 585, 509, 605 ], [ 513, 585, 529, 605 ], [ 534, 585, 625, 605 ], [ 630, 585, 654, 605 ], [ 658, 585, 741, 605 ], [ 258, 637, 341, 657 ], [ 346, 637, 361, 657 ], [ 365, 637, 405, 657 ], [ 117, 638, 176, 657 ], [ 181, 638, 217, 657 ], [ 258, 689, 273, 709 ], [ 277, 689, 321, 709 ], [ 326, 689, 339, 709 ], [ 344, 689, 369, 709 ], [ 374, 689, 473, 709 ], [ 478, 689, 550, 709 ], [ 554, 689, 566, 709 ], [ 572, 689, 580, 709 ], [ 585, 689, 647, 709 ], [ 652, 689, 706, 709 ], [ 711, 689, 782, 709 ], [ 787, 689, 802, 709 ], [ 117, 690, 131, 709 ], [ 140, 690, 191, 709 ], [ 195, 690, 210, 709 ], [ 117, 706, 156, 725 ], [ 161, 706, 207, 725 ], [ 211, 706, 235, 725 ], [ 258, 707, 371, 727 ], [ 376, 707, 436, 727 ], [ 441, 707, 493, 727 ], [ 497, 707, 558, 727 ], [ 563, 707, 588, 727 ], [ 593, 707, 628, 727 ], [ 633, 707, 659, 727 ], [ 664, 707, 725, 727 ], [ 729, 707, 753, 727 ], [ 758, 707, 820, 727 ], [ 117, 722, 179, 741 ], [ 184, 722, 239, 741 ], [ 258, 724, 332, 744 ], [ 337, 724, 354, 744 ], [ 359, 724, 431, 744 ], [ 436, 724, 459, 744 ], [ 464, 724, 512, 744 ], [ 517, 724, 573, 744 ], [ 577, 724, 664, 744 ], [ 669, 724, 706, 744 ], [ 711, 724, 724, 744 ], [ 729, 724, 796, 744 ], [ 806, 724, 821, 744 ], [ 827, 724, 868, 744 ], [ 117, 738, 190, 757 ], [ 195, 738, 210, 757 ], [ 258, 741, 294, 762 ], [ 299, 741, 315, 762 ], [ 320, 741, 361, 762 ], [ 117, 754, 233, 773 ], [ 117, 770, 182, 789 ], [ 187, 770, 213, 789 ], [ 272, 777, 326, 798 ], [ 331, 777, 355, 798 ], [ 360, 777, 422, 798 ], [ 426, 777, 456, 798 ], [ 461, 777, 511, 798 ], [ 558, 777, 619, 798 ], [ 624, 777, 632, 798 ], [ 637, 777, 698, 798 ], [ 703, 777, 781, 798 ], [ 786, 777, 826, 798 ], [ 516, 779, 553, 798 ], [ 117, 786, 171, 805 ], [ 176, 786, 198, 805 ], [ 272, 795, 343, 815 ], [ 348, 795, 364, 815 ], [ 368, 795, 397, 815 ], [ 402, 795, 418, 815 ], [ 423, 795, 462, 815 ], [ 467, 795, 480, 815 ], [ 485, 795, 510, 815 ], [ 515, 795, 524, 815 ], [ 528, 795, 606, 815 ], [ 611, 795, 639, 815 ], [ 117, 802, 191, 821 ], [ 272, 813, 299, 834 ], [ 303, 813, 327, 834 ], [ 332, 813, 394, 834 ], [ 399, 813, 414, 834 ], [ 419, 813, 481, 834 ], [ 485, 813, 509, 834 ], [ 514, 813, 622, 834 ], [ 627, 813, 656, 834 ], [ 661, 813, 723, 834 ], [ 728, 813, 766, 834 ], [ 771, 813, 842, 834 ], [ 847, 813, 862, 834 ], [ 272, 831, 386, 851 ], [ 391, 831, 450, 851 ], [ 455, 831, 507, 851 ], [ 511, 831, 572, 851 ], [ 258, 867, 346, 886 ], [ 272, 884, 296, 904 ], [ 301, 884, 326, 904 ], [ 331, 884, 390, 904 ], [ 395, 884, 419, 904 ], [ 424, 884, 467, 904 ], [ 472, 884, 489, 904 ], [ 494, 884, 502, 904 ], [ 507, 884, 560, 904 ], [ 272, 903, 353, 923 ], [ 358, 903, 427, 923 ], [ 432, 903, 508, 923 ], [ 513, 903, 537, 923 ], [ 542, 903, 604, 923 ], [ 609, 903, 624, 923 ], [ 629, 903, 678, 923 ], [ 683, 903, 707, 923 ], [ 712, 903, 804, 923 ], [ 809, 903, 865, 923 ] ]
[ [ 157, 60, 252, 88 ], [ 259, 60, 284, 88 ], [ 298, 60, 384, 88 ], [ 391, 60, 470, 88 ], [ 477, 60, 509, 88 ], [ 516, 60, 609, 88 ], [ 616, 60, 639, 88 ], [ 647, 60, 779, 88 ], [ 787, 60, 841, 88 ], [ 117, 99, 233, 126 ], [ 117, 158, 134, 177 ], [ 139, 158, 173, 177 ], [ 177, 158, 233, 177 ], [ 258, 157, 293, 177 ], [ 298, 157, 354, 177 ], [ 359, 157, 424, 177 ], [ 429, 157, 453, 177 ], [ 458, 157, 534, 177 ], [ 539, 157, 591, 177 ], [ 287, 193, 335, 214 ], [ 572, 193, 620, 214 ], [ 625, 193, 674, 214 ], [ 306, 215, 315, 235 ], [ 370, 215, 462, 235 ], [ 466, 215, 522, 235 ], [ 527, 215, 575, 235 ], [ 580, 215, 599, 235 ], [ 604, 215, 686, 235 ], [ 691, 215, 727, 235 ], [ 732, 215, 790, 235 ], [ 306, 234, 315, 254 ], [ 370, 234, 478, 254 ], [ 483, 234, 498, 254 ], [ 503, 234, 559, 254 ], [ 563, 234, 611, 254 ], [ 616, 234, 636, 254 ], [ 641, 234, 722, 254 ], [ 727, 234, 763, 254 ], [ 768, 234, 827, 254 ], [ 117, 309, 139, 337 ], [ 153, 309, 294, 337 ], [ 302, 309, 387, 337 ], [ 395, 309, 473, 337 ], [ 480, 309, 512, 337 ], [ 519, 309, 652, 337 ], [ 659, 309, 714, 337 ], [ 721, 309, 814, 337 ], [ 117, 369, 215, 388 ], [ 258, 368, 293, 388 ], [ 298, 368, 337, 388 ], [ 342, 368, 408, 388 ], [ 413, 368, 505, 388 ], [ 510, 368, 530, 388 ], [ 535, 368, 622, 388 ], [ 626, 368, 708, 388 ], [ 713, 368, 749, 388 ], [ 754, 368, 810, 388 ], [ 258, 385, 332, 406 ], [ 272, 421, 320, 442 ], [ 325, 421, 340, 442 ], [ 345, 421, 378, 442 ], [ 383, 421, 425, 442 ], [ 430, 421, 454, 442 ], [ 459, 421, 521, 442 ], [ 526, 421, 581, 442 ], [ 586, 421, 656, 442 ], [ 661, 421, 677, 442 ], [ 682, 421, 795, 442 ], [ 800, 421, 860, 442 ], [ 272, 439, 298, 459 ], [ 302, 439, 354, 459 ], [ 359, 439, 378, 459 ], [ 383, 439, 456, 459 ], [ 272, 457, 318, 478 ], [ 323, 457, 424, 478 ], [ 429, 457, 477, 478 ], [ 482, 457, 502, 478 ], [ 507, 457, 515, 478 ], [ 520, 457, 553, 478 ], [ 558, 457, 639, 478 ], [ 644, 457, 680, 478 ], [ 685, 457, 741, 478 ], [ 746, 457, 789, 478 ], [ 272, 476, 291, 496 ], [ 296, 476, 350, 496 ], [ 355, 476, 372, 496 ], [ 377, 476, 401, 496 ], [ 406, 476, 464, 496 ], [ 469, 476, 508, 496 ], [ 513, 476, 561, 496 ], [ 566, 476, 606, 496 ], [ 611, 476, 697, 496 ], [ 702, 476, 725, 496 ], [ 730, 476, 812, 496 ], [ 817, 476, 853, 496 ], [ 272, 493, 324, 513 ], [ 272, 512, 344, 532 ], [ 349, 512, 431, 532 ], [ 436, 512, 472, 532 ], [ 477, 512, 532, 532 ], [ 537, 512, 580, 532 ], [ 585, 513, 613, 532 ], [ 618, 513, 661, 532 ], [ 666, 513, 701, 532 ], [ 711, 513, 794, 532 ], [ 799, 513, 815, 532 ], [ 272, 531, 333, 549 ], [ 338, 531, 356, 549 ], [ 360, 531, 442, 549 ], [ 447, 531, 484, 549 ], [ 489, 531, 538, 549 ], [ 543, 531, 581, 549 ], [ 272, 548, 354, 568 ], [ 359, 548, 415, 568 ], [ 419, 548, 508, 568 ], [ 513, 548, 570, 568 ], [ 575, 548, 590, 568 ], [ 595, 548, 604, 568 ], [ 609, 548, 691, 568 ], [ 696, 548, 732, 568 ], [ 736, 548, 780, 568 ], [ 272, 566, 354, 587 ], [ 359, 566, 421, 587 ], [ 426, 566, 496, 587 ], [ 501, 566, 516, 587 ], [ 521, 566, 572, 587 ], [ 577, 566, 621, 587 ], [ 626, 566, 646, 587 ], [ 651, 566, 688, 587 ], [ 693, 566, 742, 587 ], [ 747, 566, 775, 587 ], [ 272, 585, 364, 605 ], [ 369, 585, 432, 605 ], [ 437, 585, 452, 605 ], [ 457, 585, 509, 605 ], [ 513, 585, 529, 605 ], [ 534, 585, 625, 605 ], [ 630, 585, 654, 605 ], [ 658, 585, 741, 605 ], [ 117, 638, 176, 657 ], [ 181, 638, 217, 657 ], [ 258, 637, 341, 657 ], [ 346, 637, 361, 657 ], [ 365, 637, 405, 657 ], [ 117, 690, 131, 709 ], [ 140, 690, 191, 709 ], [ 195, 690, 210, 709 ], [ 117, 706, 156, 725 ], [ 161, 706, 207, 725 ], [ 211, 706, 235, 725 ], [ 117, 722, 179, 741 ], [ 184, 722, 239, 741 ], [ 117, 738, 190, 757 ], [ 195, 738, 210, 757 ], [ 117, 754, 233, 773 ], [ 117, 770, 182, 789 ], [ 187, 770, 213, 789 ], [ 117, 786, 171, 805 ], [ 176, 786, 198, 805 ], [ 117, 802, 191, 821 ], [ 258, 689, 273, 709 ], [ 277, 689, 321, 709 ], [ 326, 689, 339, 709 ], [ 344, 689, 369, 709 ], [ 374, 689, 473, 709 ], [ 478, 689, 550, 709 ], [ 554, 689, 566, 709 ], [ 572, 689, 580, 709 ], [ 585, 689, 647, 709 ], [ 652, 689, 706, 709 ], [ 711, 689, 782, 709 ], [ 787, 689, 802, 709 ], [ 258, 707, 371, 727 ], [ 376, 707, 436, 727 ], [ 441, 707, 493, 727 ], [ 497, 707, 558, 727 ], [ 563, 707, 588, 727 ], [ 593, 707, 628, 727 ], [ 633, 707, 659, 727 ], [ 664, 707, 725, 727 ], [ 729, 707, 753, 727 ], [ 758, 707, 820, 727 ], [ 258, 724, 332, 744 ], [ 337, 724, 354, 744 ], [ 359, 724, 431, 744 ], [ 436, 724, 459, 744 ], [ 464, 724, 512, 744 ], [ 517, 724, 573, 744 ], [ 577, 724, 664, 744 ], [ 669, 724, 706, 744 ], [ 711, 724, 724, 744 ], [ 729, 724, 796, 744 ], [ 806, 724, 821, 744 ], [ 827, 724, 868, 744 ], [ 258, 741, 294, 762 ], [ 299, 741, 315, 762 ], [ 320, 741, 361, 762 ], [ 272, 777, 326, 798 ], [ 331, 777, 355, 798 ], [ 360, 777, 422, 798 ], [ 426, 777, 456, 798 ], [ 461, 777, 511, 798 ], [ 516, 779, 553, 798 ], [ 558, 777, 619, 798 ], [ 624, 777, 632, 798 ], [ 637, 777, 698, 798 ], [ 703, 777, 781, 798 ], [ 786, 777, 826, 798 ], [ 272, 795, 343, 815 ], [ 348, 795, 364, 815 ], [ 368, 795, 397, 815 ], [ 402, 795, 418, 815 ], [ 423, 795, 462, 815 ], [ 467, 795, 480, 815 ], [ 485, 795, 510, 815 ], [ 515, 795, 524, 815 ], [ 528, 795, 606, 815 ], [ 611, 795, 639, 815 ], [ 272, 813, 299, 834 ], [ 303, 813, 327, 834 ], [ 332, 813, 394, 834 ], [ 399, 813, 414, 834 ], [ 419, 813, 481, 834 ], [ 485, 813, 509, 834 ], [ 514, 813, 622, 834 ], [ 627, 813, 656, 834 ], [ 661, 813, 723, 834 ], [ 728, 813, 766, 834 ], [ 771, 813, 842, 834 ], [ 847, 813, 862, 834 ], [ 272, 831, 386, 851 ], [ 391, 831, 450, 851 ], [ 455, 831, 507, 851 ], [ 511, 831, 572, 851 ], [ 258, 867, 346, 886 ], [ 272, 884, 296, 904 ], [ 301, 884, 326, 904 ], [ 331, 884, 390, 904 ], [ 395, 884, 419, 904 ], [ 424, 884, 467, 904 ], [ 472, 884, 489, 904 ], [ 494, 884, 502, 904 ], [ 507, 884, 560, 904 ], [ 272, 903, 353, 923 ], [ 358, 903, 427, 923 ], [ 432, 903, 508, 923 ], [ 513, 903, 537, 923 ], [ 542, 903, 604, 923 ], [ 609, 903, 624, 923 ], [ 629, 903, 678, 923 ], [ 683, 903, 707, 923 ], [ 712, 903, 804, 923 ], [ 809, 903, 865, 923 ] ]
unique circumstance challenges those who must determine a disability rating. While individual exposure levels cannot be accurately determined, DoD considers constrictive bronchiolitis (initially diagnosed as to be “bronchiolitis obliterans”) plausibly associated with exposure to the 2003 Mishraq State sulfur fire event. This health effect has been scientifically associated with high exposures to SO2 . Both sulfur dioxide and hydrogen sulfide are gases that can produce irritation and reddening of the nose and throat, eye irritation/pain, and coughing. At high levels, sulfur dioxide can burn the skin and can cause severe airway obstruction, hypoxemia, pulmonary edema, and even death. The firefighters involved with suppressing this fire experienced irritation, minor burns, and other effects such as blood-tinged nasal mucous. Some have been found to have long-term respiratory conditions such as “constrictive bronchiolitis.” Note: If the claim is for a respiratory condition possibly related to the sulfur fire exposure consider requesting tests for be conducted in addition to “bronchiolitis” other respiratory testing, while noting that many standard test results may be normal. This information is not meant to influence examiners rendering opinions concerning the etiology of any particular disability; but rather to ensure that such opinions are fully informed based on all known objective facts. Therefore, when rendering opinions requested by rating authorities for a disability potentially related to such exposure, please utilize this information objectively and together with the remaining evidence, including lay evidence, in the record. Veteran’s _____________________ Adjudication Authority 12. Exhibit 4: Fact Sheet Qarmat Ali Water Treatment Plant in Basrah, Iraq August 7, 2015 Change Date a. Fact Sheet: Fact Sheet for Claims of Exposure Based on the Qarmat Ali Water Treatment Qarmat Ali is shown below. Plant in Basrah, Iraq, Water Treatment Plant
unique circumstance challenges those who must determine a disability rating. While individual exposure levels cannot be accurately determined, DoD considers constrictive bronchiolitis (initially diagnosed as “bronchiolitis obliterans”) to be plausibly associated with exposure to the 2003 Mishraq State sulfur fire event. This health effect has been scientifically associated with high exposures to SO2 . Both sulfur dioxide and hydrogen sulfide are gases that can produce irritation and reddening of the nose and throat, eye irritation/pain, and coughing. At high levels, sulfur dioxide can burn the skin and can cause severe airway obstruction, hypoxemia, pulmonary edema, and even death. The firefighters involved with suppressing this fire experienced irritation, minor burns, and other effects such as blood-tinged nasal mucous. Some have been found to have long-term respiratory conditions such as “constrictive bronchiolitis.” Note: If the claim is for a respiratory condition possibly related to the sulfur fire exposure consider requesting tests for “bronchiolitis” be conducted in addition to other respiratory testing, while noting that many standard test results may be normal. This information is not meant to influence examiners rendering opinions concerning the etiology of any particular disability; but rather to ensure that such opinions are fully informed based on all known objective facts. Therefore, when rendering opinions requested by rating authorities for a disability potentially related to such exposure, please utilize this information objectively and together with the remaining evidence, including lay evidence, in the Veteran’s record. _____________________ Adjudication Authority 12. Exhibit 4: Fact Sheet Qarmat Ali Water Treatment Plant in Basrah, Iraq Change Date August 7, 2015 a. Fact Sheet: Qarmat Ali Water Treatment Plant Fact Sheet for Claims of Exposure Based on the Qarmat Ali Water Treatment Plant in Basrah, Iraq, is shown below.
0.919695
[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 27, 28, 25, 26, 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, 155, 150, 151, 152, 153, 154, 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, 235, 234, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 255, 256, 252, 253, 254, 257, 258, 259, 273, 274, 282, 283, 284, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 278, 279, 280, 281, 275, 276, 277 ]
M21-1IV_ii_1_SecI.docx
task-1431-664
32
[ [ 117, 61, 176, 82 ], [ 182, 61, 297, 82 ], [ 302, 61, 396, 82 ], [ 402, 61, 450, 82 ], [ 455, 61, 491, 82 ], [ 497, 61, 539, 82 ], [ 545, 61, 632, 82 ], [ 637, 61, 648, 82 ], [ 654, 61, 729, 82 ], [ 734, 61, 789, 82 ], [ 117, 96, 166, 117 ], [ 172, 96, 253, 117 ], [ 259, 96, 339, 117 ], [ 345, 96, 395, 117 ], [ 401, 96, 459, 117 ], [ 465, 96, 487, 117 ], [ 492, 96, 582, 117 ], [ 587, 96, 690, 117 ], [ 696, 96, 735, 117 ], [ 741, 96, 825, 117 ], [ 117, 114, 215, 135 ], [ 221, 114, 324, 135 ], [ 330, 114, 395, 135 ], [ 400, 114, 491, 135 ], [ 497, 114, 517, 135 ], [ 742, 114, 758, 135 ], [ 764, 114, 785, 135 ], [ 523, 116, 633, 133 ], [ 638, 116, 736, 133 ], [ 117, 131, 194, 152 ], [ 199, 131, 293, 152 ], [ 298, 131, 333, 152 ], [ 339, 131, 419, 152 ], [ 425, 131, 441, 152 ], [ 446, 131, 474, 152 ], [ 479, 131, 523, 152 ], [ 528, 131, 598, 152 ], [ 603, 131, 649, 152 ], [ 655, 131, 703, 152 ], [ 708, 131, 735, 152 ], [ 741, 131, 794, 152 ], [ 805, 131, 842, 152 ], [ 117, 149, 171, 169 ], [ 176, 149, 224, 169 ], [ 230, 149, 261, 169 ], [ 267, 149, 310, 169 ], [ 316, 149, 420, 169 ], [ 426, 149, 519, 169 ], [ 525, 149, 560, 169 ], [ 565, 149, 602, 169 ], [ 608, 149, 698, 169 ], [ 704, 149, 720, 169 ], [ 726, 149, 765, 169 ], [ 770, 149, 776, 169 ], [ 117, 191, 158, 212 ], [ 163, 191, 211, 212 ], [ 216, 191, 278, 212 ], [ 284, 191, 317, 212 ], [ 322, 191, 404, 212 ], [ 409, 191, 466, 212 ], [ 472, 191, 500, 212 ], [ 505, 191, 558, 212 ], [ 563, 191, 596, 212 ], [ 601, 191, 633, 212 ], [ 638, 191, 709, 212 ], [ 714, 191, 784, 212 ], [ 790, 191, 823, 212 ], [ 117, 208, 204, 229 ], [ 210, 208, 226, 229 ], [ 232, 208, 259, 229 ], [ 264, 208, 307, 229 ], [ 312, 208, 345, 229 ], [ 351, 208, 406, 229 ], [ 412, 208, 443, 229 ], [ 449, 208, 566, 229 ], [ 572, 208, 605, 229 ], [ 610, 208, 695, 229 ], [ 706, 208, 724, 229 ], [ 730, 208, 767, 229 ], [ 773, 208, 828, 229 ], [ 834, 208, 882, 229 ], [ 117, 226, 179, 247 ], [ 185, 226, 216, 247 ], [ 222, 226, 261, 247 ], [ 267, 226, 294, 247 ], [ 299, 226, 334, 247 ], [ 340, 226, 372, 247 ], [ 378, 226, 409, 247 ], [ 415, 226, 467, 247 ], [ 473, 226, 531, 247 ], [ 537, 226, 593, 247 ], [ 599, 226, 700, 247 ], [ 706, 226, 806, 247 ], [ 117, 243, 209, 264 ], [ 214, 243, 280, 264 ], [ 285, 243, 318, 264 ], [ 323, 243, 366, 264 ], [ 371, 243, 426, 264 ], [ 437, 243, 470, 264 ], [ 476, 243, 567, 264 ], [ 573, 243, 645, 264 ], [ 650, 243, 685, 264 ], [ 691, 243, 796, 264 ], [ 802, 243, 833, 264 ], [ 838, 243, 865, 264 ], [ 117, 261, 224, 281 ], [ 230, 261, 305, 281 ], [ 310, 261, 359, 281 ], [ 365, 261, 419, 281 ], [ 425, 261, 457, 281 ], [ 463, 261, 508, 281 ], [ 513, 261, 571, 281 ], [ 576, 261, 618, 281 ], [ 623, 261, 644, 281 ], [ 649, 261, 757, 281 ], [ 763, 261, 810, 281 ], [ 117, 278, 191, 299 ], [ 202, 278, 254, 299 ], [ 259, 278, 301, 299 ], [ 307, 278, 351, 299 ], [ 356, 278, 405, 299 ], [ 411, 278, 427, 299 ], [ 433, 278, 475, 299 ], [ 480, 278, 563, 299 ], [ 569, 278, 661, 299 ], [ 667, 278, 755, 299 ], [ 761, 278, 802, 299 ], [ 808, 278, 828, 299 ], [ 117, 298, 222, 315 ], [ 227, 298, 343, 315 ], [ 117, 328, 166, 349 ], [ 172, 328, 182, 349 ], [ 188, 328, 215, 349 ], [ 221, 328, 266, 349 ], [ 272, 328, 286, 349 ], [ 291, 328, 315, 349 ], [ 320, 328, 331, 349 ], [ 336, 328, 429, 349 ], [ 434, 328, 513, 349 ], [ 518, 328, 589, 349 ], [ 595, 328, 655, 349 ], [ 660, 328, 677, 349 ], [ 682, 328, 709, 349 ], [ 715, 328, 763, 349 ], [ 768, 328, 795, 349 ], [ 117, 346, 198, 366 ], [ 203, 346, 278, 366 ], [ 283, 346, 375, 366 ], [ 380, 346, 421, 366 ], [ 427, 346, 450, 366 ], [ 577, 346, 599, 366 ], [ 605, 346, 695, 366 ], [ 701, 346, 716, 366 ], [ 721, 346, 790, 366 ], [ 796, 346, 812, 366 ], [ 455, 348, 572, 365 ], [ 117, 363, 162, 384 ], [ 168, 363, 260, 384 ], [ 265, 363, 328, 384 ], [ 334, 363, 379, 384 ], [ 384, 363, 438, 384 ], [ 443, 363, 476, 384 ], [ 481, 363, 529, 384 ], [ 535, 363, 611, 384 ], [ 617, 363, 648, 384 ], [ 654, 363, 711, 384 ], [ 717, 363, 754, 384 ], [ 759, 363, 781, 384 ], [ 117, 380, 183, 401 ], [ 117, 415, 154, 436 ], [ 160, 415, 257, 436 ], [ 262, 415, 276, 436 ], [ 282, 415, 309, 436 ], [ 314, 415, 369, 436 ], [ 375, 415, 391, 436 ], [ 396, 415, 475, 436 ], [ 480, 415, 571, 436 ], [ 576, 415, 659, 436 ], [ 665, 415, 737, 436 ], [ 743, 415, 839, 436 ], [ 844, 415, 872, 436 ], [ 117, 433, 185, 453 ], [ 190, 433, 207, 453 ], [ 212, 433, 244, 453 ], [ 249, 433, 330, 453 ], [ 335, 433, 416, 453 ], [ 421, 433, 449, 453 ], [ 454, 433, 505, 453 ], [ 511, 433, 527, 453 ], [ 533, 433, 593, 453 ], [ 598, 433, 631, 453 ], [ 636, 433, 678, 453 ], [ 683, 433, 756, 453 ], [ 762, 433, 790, 453 ], [ 795, 433, 830, 453 ], [ 117, 450, 194, 471 ], [ 199, 450, 252, 471 ], [ 258, 450, 280, 471 ], [ 285, 450, 305, 471 ], [ 310, 450, 367, 471 ], [ 372, 450, 450, 471 ], [ 455, 450, 502, 471 ], [ 513, 450, 603, 471 ], [ 609, 450, 656, 471 ], [ 661, 450, 744, 471 ], [ 749, 450, 823, 471 ], [ 117, 468, 205, 488 ], [ 210, 468, 231, 488 ], [ 236, 468, 285, 488 ], [ 291, 468, 381, 488 ], [ 386, 468, 410, 488 ], [ 415, 468, 426, 488 ], [ 431, 468, 506, 488 ], [ 512, 468, 600, 488 ], [ 605, 468, 666, 488 ], [ 671, 468, 687, 488 ], [ 693, 468, 734, 488 ], [ 740, 468, 826, 488 ], [ 117, 485, 175, 506 ], [ 181, 485, 230, 506 ], [ 236, 485, 267, 506 ], [ 272, 485, 369, 506 ], [ 375, 485, 466, 506 ], [ 471, 485, 504, 506 ], [ 510, 485, 582, 506 ], [ 587, 485, 622, 506 ], [ 627, 485, 655, 506 ], [ 660, 485, 746, 506 ], [ 752, 485, 836, 506 ], [ 117, 502, 195, 523 ], [ 200, 502, 225, 523 ], [ 231, 502, 315, 523 ], [ 320, 502, 335, 523 ], [ 341, 502, 368, 523 ], [ 462, 502, 523, 523 ], [ 374, 505, 456, 522 ], [ 588, 555, 817, 575 ], [ 588, 572, 695, 593 ], [ 700, 572, 777, 593 ], [ 117, 694, 153, 722 ], [ 168, 694, 255, 722 ], [ 262, 694, 286, 722 ], [ 300, 694, 354, 722 ], [ 361, 694, 432, 722 ], [ 440, 694, 531, 722 ], [ 539, 694, 572, 722 ], [ 579, 694, 652, 722 ], [ 659, 694, 785, 722 ], [ 793, 694, 857, 722 ], [ 117, 717, 140, 745 ], [ 148, 717, 243, 745 ], [ 251, 717, 299, 745 ], [ 258, 776, 315, 796 ], [ 320, 776, 334, 796 ], [ 339, 776, 379, 796 ], [ 117, 777, 176, 796 ], [ 181, 777, 217, 796 ], [ 117, 829, 131, 848 ], [ 140, 829, 174, 848 ], [ 178, 829, 226, 848 ], [ 258, 830, 294, 848 ], [ 299, 830, 341, 848 ], [ 346, 830, 369, 848 ], [ 374, 830, 430, 848 ], [ 435, 830, 450, 848 ], [ 455, 830, 529, 848 ], [ 534, 830, 582, 848 ], [ 587, 830, 606, 848 ], [ 611, 830, 635, 848 ], [ 640, 830, 701, 848 ], [ 706, 830, 729, 848 ], [ 734, 830, 782, 848 ], [ 787, 830, 867, 848 ], [ 117, 845, 178, 864 ], [ 183, 845, 206, 864 ], [ 436, 846, 449, 866 ], [ 454, 846, 505, 866 ], [ 510, 846, 563, 866 ], [ 258, 847, 301, 866 ], [ 306, 847, 321, 866 ], [ 326, 847, 388, 866 ], [ 393, 847, 431, 866 ], [ 117, 861, 166, 880 ], [ 117, 877, 199, 896 ], [ 117, 893, 158, 912 ] ]
[ [ 117, 61, 176, 82 ], [ 182, 61, 297, 82 ], [ 302, 61, 396, 82 ], [ 402, 61, 450, 82 ], [ 455, 61, 491, 82 ], [ 497, 61, 539, 82 ], [ 545, 61, 632, 82 ], [ 637, 61, 648, 82 ], [ 654, 61, 729, 82 ], [ 734, 61, 789, 82 ], [ 117, 96, 166, 117 ], [ 172, 96, 253, 117 ], [ 259, 96, 339, 117 ], [ 345, 96, 395, 117 ], [ 401, 96, 459, 117 ], [ 465, 96, 487, 117 ], [ 492, 96, 582, 117 ], [ 587, 96, 690, 117 ], [ 696, 96, 735, 117 ], [ 741, 96, 825, 117 ], [ 117, 114, 215, 135 ], [ 221, 114, 324, 135 ], [ 330, 114, 395, 135 ], [ 400, 114, 491, 135 ], [ 497, 114, 517, 135 ], [ 523, 116, 633, 133 ], [ 638, 116, 736, 133 ], [ 742, 114, 758, 135 ], [ 764, 114, 785, 135 ], [ 117, 131, 194, 152 ], [ 199, 131, 293, 152 ], [ 298, 131, 333, 152 ], [ 339, 131, 419, 152 ], [ 425, 131, 441, 152 ], [ 446, 131, 474, 152 ], [ 479, 131, 523, 152 ], [ 528, 131, 598, 152 ], [ 603, 131, 649, 152 ], [ 655, 131, 703, 152 ], [ 708, 131, 735, 152 ], [ 741, 131, 794, 152 ], [ 805, 131, 842, 152 ], [ 117, 149, 171, 169 ], [ 176, 149, 224, 169 ], [ 230, 149, 261, 169 ], [ 267, 149, 310, 169 ], [ 316, 149, 420, 169 ], [ 426, 149, 519, 169 ], [ 525, 149, 560, 169 ], [ 565, 149, 602, 169 ], [ 608, 149, 698, 169 ], [ 704, 149, 720, 169 ], [ 726, 149, 765, 169 ], [ 770, 149, 776, 169 ], [ 117, 191, 158, 212 ], [ 163, 191, 211, 212 ], [ 216, 191, 278, 212 ], [ 284, 191, 317, 212 ], [ 322, 191, 404, 212 ], [ 409, 191, 466, 212 ], [ 472, 191, 500, 212 ], [ 505, 191, 558, 212 ], [ 563, 191, 596, 212 ], [ 601, 191, 633, 212 ], [ 638, 191, 709, 212 ], [ 714, 191, 784, 212 ], [ 790, 191, 823, 212 ], [ 117, 208, 204, 229 ], [ 210, 208, 226, 229 ], [ 232, 208, 259, 229 ], [ 264, 208, 307, 229 ], [ 312, 208, 345, 229 ], [ 351, 208, 406, 229 ], [ 412, 208, 443, 229 ], [ 449, 208, 566, 229 ], [ 572, 208, 605, 229 ], [ 610, 208, 695, 229 ], [ 706, 208, 724, 229 ], [ 730, 208, 767, 229 ], [ 773, 208, 828, 229 ], [ 834, 208, 882, 229 ], [ 117, 226, 179, 247 ], [ 185, 226, 216, 247 ], [ 222, 226, 261, 247 ], [ 267, 226, 294, 247 ], [ 299, 226, 334, 247 ], [ 340, 226, 372, 247 ], [ 378, 226, 409, 247 ], [ 415, 226, 467, 247 ], [ 473, 226, 531, 247 ], [ 537, 226, 593, 247 ], [ 599, 226, 700, 247 ], [ 706, 226, 806, 247 ], [ 117, 243, 209, 264 ], [ 214, 243, 280, 264 ], [ 285, 243, 318, 264 ], [ 323, 243, 366, 264 ], [ 371, 243, 426, 264 ], [ 437, 243, 470, 264 ], [ 476, 243, 567, 264 ], [ 573, 243, 645, 264 ], [ 650, 243, 685, 264 ], [ 691, 243, 796, 264 ], [ 802, 243, 833, 264 ], [ 838, 243, 865, 264 ], [ 117, 261, 224, 281 ], [ 230, 261, 305, 281 ], [ 310, 261, 359, 281 ], [ 365, 261, 419, 281 ], [ 425, 261, 457, 281 ], [ 463, 261, 508, 281 ], [ 513, 261, 571, 281 ], [ 576, 261, 618, 281 ], [ 623, 261, 644, 281 ], [ 649, 261, 757, 281 ], [ 763, 261, 810, 281 ], [ 117, 278, 191, 299 ], [ 202, 278, 254, 299 ], [ 259, 278, 301, 299 ], [ 307, 278, 351, 299 ], [ 356, 278, 405, 299 ], [ 411, 278, 427, 299 ], [ 433, 278, 475, 299 ], [ 480, 278, 563, 299 ], [ 569, 278, 661, 299 ], [ 667, 278, 755, 299 ], [ 761, 278, 802, 299 ], [ 808, 278, 828, 299 ], [ 117, 298, 222, 315 ], [ 227, 298, 343, 315 ], [ 117, 328, 166, 349 ], [ 172, 328, 182, 349 ], [ 188, 328, 215, 349 ], [ 221, 328, 266, 349 ], [ 272, 328, 286, 349 ], [ 291, 328, 315, 349 ], [ 320, 328, 331, 349 ], [ 336, 328, 429, 349 ], [ 434, 328, 513, 349 ], [ 518, 328, 589, 349 ], [ 595, 328, 655, 349 ], [ 660, 328, 677, 349 ], [ 682, 328, 709, 349 ], [ 715, 328, 763, 349 ], [ 768, 328, 795, 349 ], [ 117, 346, 198, 366 ], [ 203, 346, 278, 366 ], [ 283, 346, 375, 366 ], [ 380, 346, 421, 366 ], [ 427, 346, 450, 366 ], [ 455, 348, 572, 365 ], [ 577, 346, 599, 366 ], [ 605, 346, 695, 366 ], [ 701, 346, 716, 366 ], [ 721, 346, 790, 366 ], [ 796, 346, 812, 366 ], [ 117, 363, 162, 384 ], [ 168, 363, 260, 384 ], [ 265, 363, 328, 384 ], [ 334, 363, 379, 384 ], [ 384, 363, 438, 384 ], [ 443, 363, 476, 384 ], [ 481, 363, 529, 384 ], [ 535, 363, 611, 384 ], [ 617, 363, 648, 384 ], [ 654, 363, 711, 384 ], [ 717, 363, 754, 384 ], [ 759, 363, 781, 384 ], [ 117, 380, 183, 401 ], [ 117, 415, 154, 436 ], [ 160, 415, 257, 436 ], [ 262, 415, 276, 436 ], [ 282, 415, 309, 436 ], [ 314, 415, 369, 436 ], [ 375, 415, 391, 436 ], [ 396, 415, 475, 436 ], [ 480, 415, 571, 436 ], [ 576, 415, 659, 436 ], [ 665, 415, 737, 436 ], [ 743, 415, 839, 436 ], [ 844, 415, 872, 436 ], [ 117, 433, 185, 453 ], [ 190, 433, 207, 453 ], [ 212, 433, 244, 453 ], [ 249, 433, 330, 453 ], [ 335, 433, 416, 453 ], [ 421, 433, 449, 453 ], [ 454, 433, 505, 453 ], [ 511, 433, 527, 453 ], [ 533, 433, 593, 453 ], [ 598, 433, 631, 453 ], [ 636, 433, 678, 453 ], [ 683, 433, 756, 453 ], [ 762, 433, 790, 453 ], [ 795, 433, 830, 453 ], [ 117, 450, 194, 471 ], [ 199, 450, 252, 471 ], [ 258, 450, 280, 471 ], [ 285, 450, 305, 471 ], [ 310, 450, 367, 471 ], [ 372, 450, 450, 471 ], [ 455, 450, 502, 471 ], [ 513, 450, 603, 471 ], [ 609, 450, 656, 471 ], [ 661, 450, 744, 471 ], [ 749, 450, 823, 471 ], [ 117, 468, 205, 488 ], [ 210, 468, 231, 488 ], [ 236, 468, 285, 488 ], [ 291, 468, 381, 488 ], [ 386, 468, 410, 488 ], [ 415, 468, 426, 488 ], [ 431, 468, 506, 488 ], [ 512, 468, 600, 488 ], [ 605, 468, 666, 488 ], [ 671, 468, 687, 488 ], [ 693, 468, 734, 488 ], [ 740, 468, 826, 488 ], [ 117, 485, 175, 506 ], [ 181, 485, 230, 506 ], [ 236, 485, 267, 506 ], [ 272, 485, 369, 506 ], [ 375, 485, 466, 506 ], [ 471, 485, 504, 506 ], [ 510, 485, 582, 506 ], [ 587, 485, 622, 506 ], [ 627, 485, 655, 506 ], [ 660, 485, 746, 506 ], [ 752, 485, 836, 506 ], [ 117, 502, 195, 523 ], [ 200, 502, 225, 523 ], [ 231, 502, 315, 523 ], [ 320, 502, 335, 523 ], [ 341, 502, 368, 523 ], [ 374, 505, 456, 522 ], [ 462, 502, 523, 523 ], [ 588, 555, 817, 575 ], [ 588, 572, 695, 593 ], [ 700, 572, 777, 593 ], [ 117, 694, 153, 722 ], [ 168, 694, 255, 722 ], [ 262, 694, 286, 722 ], [ 300, 694, 354, 722 ], [ 361, 694, 432, 722 ], [ 440, 694, 531, 722 ], [ 539, 694, 572, 722 ], [ 579, 694, 652, 722 ], [ 659, 694, 785, 722 ], [ 793, 694, 857, 722 ], [ 117, 717, 140, 745 ], [ 148, 717, 243, 745 ], [ 251, 717, 299, 745 ], [ 117, 777, 176, 796 ], [ 181, 777, 217, 796 ], [ 258, 776, 315, 796 ], [ 320, 776, 334, 796 ], [ 339, 776, 379, 796 ], [ 117, 829, 131, 848 ], [ 140, 829, 174, 848 ], [ 178, 829, 226, 848 ], [ 117, 845, 178, 864 ], [ 183, 845, 206, 864 ], [ 117, 861, 166, 880 ], [ 117, 877, 199, 896 ], [ 117, 893, 158, 912 ], [ 258, 830, 294, 848 ], [ 299, 830, 341, 848 ], [ 346, 830, 369, 848 ], [ 374, 830, 430, 848 ], [ 435, 830, 450, 848 ], [ 455, 830, 529, 848 ], [ 534, 830, 582, 848 ], [ 587, 830, 606, 848 ], [ 611, 830, 635, 848 ], [ 640, 830, 701, 848 ], [ 706, 830, 729, 848 ], [ 734, 830, 782, 848 ], [ 787, 830, 867, 848 ], [ 258, 847, 301, 866 ], [ 306, 847, 321, 866 ], [ 326, 847, 388, 866 ], [ 393, 847, 431, 866 ], [ 436, 846, 449, 866 ], [ 454, 846, 505, 866 ], [ 510, 846, 563, 866 ] ]
the presence of symptoms sufficient to diagnose the specific disorder at least three months prior to diagnosis. FGIDs do not include structural gastrointestinal diseases, such as Important: inflammatory bowel disease (such as ulcerative colitis or Crohn's disease) and gastroesophageal reflux disease, as these conditions are considered to be organic or structural diseases characterized by abnormalities seen on x-ray, endoscopy, or through laboratory tests. The effective date of the amendment to to include FGIDs was July 15, Note: 2011. k. Examination In general, when a Veteran with GW service claims symptoms fitting the Requirement description of an MUCMI, as described in , before proceeding with a for MUCMIs ensure that an examination with a medical opinion has been decision, obtained. The opinion must classify the symptom as an MUCMI without conclusive pathology or etiology before SC under can be awarded. If the diagnosis shown in medical records involves one of the Exception: MUCMIs described in (chronic fatigue syndrome, fibromyalgia, or functional gastrointestinal disorders), then SC is appropriate and a VA examination may only be necessary to determine current level of severity. Chronic multi-symptom illnesses of partially explained etiology and l. Partially Understood pathophysiology, such as diabetes and multiple sclerosis, are not considered Chronic medically unexplained and cannot be considered a qualifying chronic disability for purposes of . Illnesses When adjudicating conditions with partially explained etiology, SC can only be awarded on another basis such as direct SC under or presumptive SC under and . m. The presumptive period for manifestation of qualifying chronic disability Presumptive under Period for Manifestation begins on the date following last performance of active military, naval, or of Disability air service in the Southwest Asia theater of operations during the GW, and Under 38 CFR extends through December 31, 2016. 3.317 specifies the following 13 categories of signs or symptoms that may be n. Signs and Symptoms of manifestations of an undiagnosed illness or an MUCMI Undiagnosed
the presence of symptoms sufficient to diagnose the specific disorder at least three months prior to diagnosis. Important: FGIDs do not include structural gastrointestinal diseases, such as inflammatory bowel disease (such as ulcerative colitis or Crohn's disease) and gastroesophageal reflux disease, as these conditions are considered to be organic or structural diseases characterized by abnormalities seen on x-ray, endoscopy, or through laboratory tests. Note: The effective date of the amendment to to include FGIDs was July 15, 2011. k. Examination Requirement for MUCMIs In general, when a Veteran with GW service claims symptoms fitting the description of an MUCMI, as described in , before proceeding with a decision, ensure that an examination with a medical opinion has been obtained. The opinion must classify the symptom as an MUCMI without conclusive pathology or etiology before SC under can be awarded. Exception: If the diagnosis shown in medical records involves one of the MUCMIs described in (chronic fatigue syndrome, fibromyalgia, or functional gastrointestinal disorders), then SC is appropriate and a VA examination may only be necessary to determine current level of severity. l. Partially Understood Chronic Illnesses Chronic multi-symptom illnesses of partially explained etiology and pathophysiology, such as diabetes and multiple sclerosis, are not considered medically unexplained and cannot be considered a qualifying chronic disability for purposes of . When adjudicating conditions with partially explained etiology, SC can only be awarded on another basis such as direct SC under or presumptive SC under and . m. Presumptive Period for Manifestation of Disability Under 38 CFR 3.317 The presumptive period for manifestation of qualifying chronic disability under begins on the date following last performance of active military, naval, or air service in the Southwest Asia theater of operations during the GW, and extends through December 31, 2016. n. Signs and Symptoms of Undiagnosed specifies the following 13 categories of signs or symptoms that may be manifestations of an undiagnosed illness or an MUCMI
0.846857
[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 26, 17, 18, 19, 20, 21, 22, 23, 24, 25, 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, 76, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 92, 105, 106, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 117, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 150, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 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, 188, 189, 190, 201, 216, 180, 181, 182, 183, 184, 185, 186, 187, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 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, 253, 255, 256, 257, 270, 271, 285, 286, 287, 293, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 288, 289, 290, 291, 292, 306, 307, 308, 309, 310, 319, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 317, 318 ]
M21-1IV_ii_2_secD.docx
task-1431-672
5
[ [ 272, 71, 296, 91 ], [ 301, 71, 370, 91 ], [ 375, 71, 391, 91 ], [ 396, 71, 477, 91 ], [ 482, 71, 556, 91 ], [ 561, 71, 576, 91 ], [ 581, 71, 650, 91 ], [ 655, 71, 679, 91 ], [ 684, 71, 745, 91 ], [ 750, 71, 814, 91 ], [ 819, 71, 833, 91 ], [ 272, 88, 308, 109 ], [ 313, 88, 352, 109 ], [ 357, 88, 415, 109 ], [ 420, 88, 458, 109 ], [ 463, 88, 478, 109 ], [ 483, 88, 562, 109 ], [ 356, 123, 409, 143 ], [ 414, 123, 433, 143 ], [ 438, 123, 463, 143 ], [ 468, 123, 526, 143 ], [ 531, 123, 605, 143 ], [ 610, 123, 730, 143 ], [ 735, 123, 804, 143 ], [ 808, 123, 844, 143 ], [ 849, 123, 866, 143 ], [ 258, 124, 346, 143 ], [ 258, 141, 365, 161 ], [ 370, 141, 418, 161 ], [ 423, 141, 479, 161 ], [ 484, 141, 527, 161 ], [ 532, 141, 548, 161 ], [ 553, 141, 630, 161 ], [ 635, 141, 683, 161 ], [ 688, 141, 705, 161 ], [ 709, 141, 769, 161 ], [ 258, 158, 321, 178 ], [ 326, 158, 354, 178 ], [ 360, 158, 494, 178 ], [ 499, 158, 546, 178 ], [ 551, 158, 613, 178 ], [ 618, 158, 634, 178 ], [ 639, 158, 679, 178 ], [ 684, 158, 766, 178 ], [ 771, 158, 795, 178 ], [ 258, 176, 343, 196 ], [ 348, 176, 363, 196 ], [ 368, 176, 387, 196 ], [ 392, 176, 450, 196 ], [ 455, 176, 472, 196 ], [ 477, 176, 551, 196 ], [ 555, 176, 620, 196 ], [ 625, 176, 729, 196 ], [ 734, 176, 754, 196 ], [ 759, 176, 865, 196 ], [ 258, 193, 293, 213 ], [ 298, 193, 318, 213 ], [ 323, 193, 369, 213 ], [ 374, 193, 462, 213 ], [ 467, 193, 484, 213 ], [ 489, 193, 549, 213 ], [ 554, 193, 635, 213 ], [ 640, 193, 680, 213 ], [ 312, 228, 342, 248 ], [ 347, 228, 416, 248 ], [ 420, 228, 453, 248 ], [ 458, 228, 475, 248 ], [ 479, 228, 503, 248 ], [ 508, 228, 600, 248 ], [ 605, 228, 620, 248 ], [ 630, 228, 645, 248 ], [ 650, 228, 708, 248 ], [ 712, 228, 766, 248 ], [ 771, 228, 801, 248 ], [ 806, 228, 839, 248 ], [ 844, 228, 868, 248 ], [ 258, 229, 302, 248 ], [ 258, 245, 302, 265 ], [ 117, 298, 132, 317 ], [ 141, 298, 240, 317 ], [ 258, 298, 274, 318 ], [ 280, 298, 342, 318 ], [ 347, 298, 389, 318 ], [ 394, 298, 403, 318 ], [ 408, 298, 470, 318 ], [ 475, 298, 510, 318 ], [ 515, 298, 548, 318 ], [ 553, 298, 608, 318 ], [ 613, 298, 664, 318 ], [ 669, 298, 749, 318 ], [ 754, 298, 802, 318 ], [ 807, 298, 831, 318 ], [ 117, 314, 218, 333 ], [ 258, 315, 345, 335 ], [ 350, 315, 367, 335 ], [ 372, 315, 390, 335 ], [ 395, 315, 468, 335 ], [ 474, 315, 490, 335 ], [ 495, 315, 570, 335 ], [ 575, 315, 590, 335 ], [ 595, 315, 600, 335 ], [ 605, 317, 655, 335 ], [ 660, 317, 748, 335 ], [ 753, 317, 787, 335 ], [ 792, 317, 801, 335 ], [ 117, 330, 140, 349 ], [ 145, 330, 219, 349 ], [ 334, 332, 385, 353 ], [ 389, 332, 419, 353 ], [ 424, 332, 442, 353 ], [ 447, 332, 544, 353 ], [ 549, 332, 584, 353 ], [ 589, 332, 598, 353 ], [ 603, 332, 664, 353 ], [ 669, 332, 729, 353 ], [ 734, 332, 760, 353 ], [ 765, 332, 802, 353 ], [ 258, 334, 329, 353 ], [ 258, 350, 331, 370 ], [ 258, 385, 289, 405 ], [ 294, 385, 354, 405 ], [ 359, 385, 397, 405 ], [ 402, 385, 462, 405 ], [ 466, 385, 490, 405 ], [ 495, 385, 568, 405 ], [ 573, 385, 589, 405 ], [ 594, 385, 613, 405 ], [ 618, 385, 687, 405 ], [ 691, 385, 751, 405 ], [ 756, 385, 840, 405 ], [ 258, 402, 337, 422 ], [ 342, 402, 358, 422 ], [ 363, 402, 427, 422 ], [ 432, 402, 482, 422 ], [ 487, 402, 511, 422 ], [ 516, 402, 561, 422 ], [ 570, 402, 598, 422 ], [ 603, 402, 621, 422 ], [ 626, 402, 697, 422 ], [ 356, 437, 368, 457 ], [ 373, 437, 397, 457 ], [ 402, 437, 476, 457 ], [ 481, 437, 532, 457 ], [ 537, 437, 553, 457 ], [ 557, 437, 619, 457 ], [ 624, 437, 682, 457 ], [ 687, 437, 753, 457 ], [ 758, 437, 787, 457 ], [ 791, 437, 808, 457 ], [ 813, 437, 837, 457 ], [ 258, 438, 346, 457 ], [ 258, 454, 334, 475 ], [ 339, 454, 414, 475 ], [ 419, 454, 435, 475 ], [ 444, 454, 510, 475 ], [ 515, 454, 569, 475 ], [ 574, 454, 656, 475 ], [ 661, 454, 767, 475 ], [ 772, 454, 789, 475 ], [ 258, 472, 338, 492 ], [ 343, 472, 463, 492 ], [ 468, 472, 551, 492 ], [ 556, 472, 589, 492 ], [ 594, 472, 618, 492 ], [ 623, 472, 636, 492 ], [ 641, 472, 730, 492 ], [ 735, 472, 764, 492 ], [ 769, 472, 777, 492 ], [ 782, 472, 810, 492 ], [ 258, 489, 355, 509 ], [ 360, 489, 394, 509 ], [ 399, 489, 434, 509 ], [ 438, 489, 457, 509 ], [ 462, 489, 539, 509 ], [ 543, 489, 558, 509 ], [ 563, 489, 642, 509 ], [ 647, 489, 702, 509 ], [ 707, 489, 745, 509 ], [ 750, 489, 766, 509 ], [ 771, 489, 838, 509 ], [ 258, 541, 322, 562 ], [ 326, 541, 447, 562 ], [ 452, 541, 519, 562 ], [ 524, 541, 540, 562 ], [ 545, 541, 611, 562 ], [ 615, 541, 691, 562 ], [ 696, 541, 761, 562 ], [ 765, 541, 794, 562 ], [ 117, 542, 127, 561 ], [ 136, 542, 203, 561 ], [ 117, 558, 207, 577 ], [ 258, 559, 394, 579 ], [ 399, 559, 435, 579 ], [ 440, 559, 456, 579 ], [ 461, 559, 525, 579 ], [ 530, 559, 558, 579 ], [ 563, 559, 629, 579 ], [ 634, 559, 706, 579 ], [ 711, 559, 735, 579 ], [ 739, 559, 764, 579 ], [ 770, 559, 854, 579 ], [ 117, 574, 180, 593 ], [ 258, 576, 336, 596 ], [ 340, 576, 436, 596 ], [ 441, 576, 470, 596 ], [ 474, 576, 527, 596 ], [ 532, 576, 550, 596 ], [ 555, 576, 640, 596 ], [ 645, 576, 654, 596 ], [ 658, 576, 739, 596 ], [ 744, 576, 803, 596 ], [ 258, 594, 332, 614 ], [ 336, 594, 359, 614 ], [ 364, 594, 433, 614 ], [ 438, 594, 455, 614 ], [ 460, 594, 465, 614 ], [ 117, 606, 181, 625 ], [ 258, 628, 305, 649 ], [ 310, 628, 407, 649 ], [ 412, 628, 494, 649 ], [ 499, 628, 533, 649 ], [ 538, 628, 604, 649 ], [ 608, 628, 685, 649 ], [ 690, 628, 759, 649 ], [ 764, 628, 788, 649 ], [ 793, 628, 820, 649 ], [ 825, 628, 860, 649 ], [ 258, 646, 277, 666 ], [ 282, 646, 348, 666 ], [ 353, 646, 373, 666 ], [ 377, 646, 436, 666 ], [ 441, 646, 480, 666 ], [ 485, 646, 521, 666 ], [ 526, 646, 543, 666 ], [ 547, 646, 592, 666 ], [ 597, 646, 621, 666 ], [ 626, 646, 671, 666 ], [ 680, 646, 697, 666 ], [ 702, 646, 799, 666 ], [ 804, 646, 828, 666 ], [ 258, 663, 303, 684 ], [ 313, 663, 341, 684 ], [ 346, 663, 351, 684 ], [ 117, 716, 137, 736 ], [ 258, 716, 289, 736 ], [ 294, 716, 391, 736 ], [ 395, 716, 446, 736 ], [ 451, 716, 474, 736 ], [ 478, 716, 585, 736 ], [ 590, 716, 606, 736 ], [ 611, 716, 692, 736 ], [ 697, 716, 756, 736 ], [ 760, 716, 834, 736 ], [ 117, 732, 214, 752 ], [ 258, 733, 303, 753 ], [ 117, 748, 168, 767 ], [ 173, 748, 196, 767 ], [ 117, 764, 224, 783 ], [ 272, 769, 323, 789 ], [ 328, 769, 348, 789 ], [ 353, 769, 377, 789 ], [ 382, 769, 415, 789 ], [ 419, 769, 496, 789 ], [ 501, 769, 528, 789 ], [ 533, 769, 632, 789 ], [ 637, 769, 653, 789 ], [ 658, 769, 705, 789 ], [ 710, 769, 777, 789 ], [ 782, 769, 829, 789 ], [ 834, 769, 850, 789 ], [ 117, 780, 132, 799 ], [ 137, 780, 211, 799 ], [ 272, 786, 293, 807 ], [ 298, 786, 354, 807 ], [ 358, 786, 374, 807 ], [ 379, 786, 403, 807 ], [ 407, 786, 489, 807 ], [ 494, 786, 530, 807 ], [ 535, 786, 588, 807 ], [ 593, 786, 609, 807 ], [ 614, 786, 696, 807 ], [ 701, 786, 752, 807 ], [ 757, 786, 781, 807 ], [ 786, 786, 824, 807 ], [ 828, 786, 857, 807 ], [ 117, 796, 166, 815 ], [ 171, 796, 189, 815 ], [ 193, 796, 230, 815 ], [ 272, 805, 332, 825 ], [ 337, 805, 398, 825 ], [ 403, 805, 484, 825 ], [ 489, 805, 513, 825 ], [ 518, 805, 562, 825 ], [ 117, 812, 158, 831 ], [ 263, 862, 332, 882 ], [ 337, 862, 361, 882 ], [ 365, 862, 442, 882 ], [ 447, 862, 466, 882 ], [ 471, 862, 551, 882 ], [ 555, 862, 572, 882 ], [ 577, 862, 617, 882 ], [ 622, 862, 638, 882 ], [ 643, 862, 724, 882 ], [ 729, 862, 758, 882 ], [ 763, 862, 797, 882 ], [ 802, 862, 821, 882 ], [ 117, 863, 132, 882 ], [ 141, 863, 182, 882 ], [ 186, 863, 215, 882 ], [ 117, 879, 198, 898 ], [ 203, 879, 218, 898 ], [ 258, 880, 373, 900 ], [ 378, 880, 394, 900 ], [ 399, 880, 417, 900 ], [ 422, 880, 521, 900 ], [ 526, 880, 576, 900 ], [ 581, 880, 598, 900 ], [ 603, 880, 621, 900 ], [ 626, 880, 695, 900 ], [ 117, 895, 217, 914 ] ]
[ [ 272, 71, 296, 91 ], [ 301, 71, 370, 91 ], [ 375, 71, 391, 91 ], [ 396, 71, 477, 91 ], [ 482, 71, 556, 91 ], [ 561, 71, 576, 91 ], [ 581, 71, 650, 91 ], [ 655, 71, 679, 91 ], [ 684, 71, 745, 91 ], [ 750, 71, 814, 91 ], [ 819, 71, 833, 91 ], [ 272, 88, 308, 109 ], [ 313, 88, 352, 109 ], [ 357, 88, 415, 109 ], [ 420, 88, 458, 109 ], [ 463, 88, 478, 109 ], [ 483, 88, 562, 109 ], [ 258, 124, 346, 143 ], [ 356, 123, 409, 143 ], [ 414, 123, 433, 143 ], [ 438, 123, 463, 143 ], [ 468, 123, 526, 143 ], [ 531, 123, 605, 143 ], [ 610, 123, 730, 143 ], [ 735, 123, 804, 143 ], [ 808, 123, 844, 143 ], [ 849, 123, 866, 143 ], [ 258, 141, 365, 161 ], [ 370, 141, 418, 161 ], [ 423, 141, 479, 161 ], [ 484, 141, 527, 161 ], [ 532, 141, 548, 161 ], [ 553, 141, 630, 161 ], [ 635, 141, 683, 161 ], [ 688, 141, 705, 161 ], [ 709, 141, 769, 161 ], [ 258, 158, 321, 178 ], [ 326, 158, 354, 178 ], [ 360, 158, 494, 178 ], [ 499, 158, 546, 178 ], [ 551, 158, 613, 178 ], [ 618, 158, 634, 178 ], [ 639, 158, 679, 178 ], [ 684, 158, 766, 178 ], [ 771, 158, 795, 178 ], [ 258, 176, 343, 196 ], [ 348, 176, 363, 196 ], [ 368, 176, 387, 196 ], [ 392, 176, 450, 196 ], [ 455, 176, 472, 196 ], [ 477, 176, 551, 196 ], [ 555, 176, 620, 196 ], [ 625, 176, 729, 196 ], [ 734, 176, 754, 196 ], [ 759, 176, 865, 196 ], [ 258, 193, 293, 213 ], [ 298, 193, 318, 213 ], [ 323, 193, 369, 213 ], [ 374, 193, 462, 213 ], [ 467, 193, 484, 213 ], [ 489, 193, 549, 213 ], [ 554, 193, 635, 213 ], [ 640, 193, 680, 213 ], [ 258, 229, 302, 248 ], [ 312, 228, 342, 248 ], [ 347, 228, 416, 248 ], [ 420, 228, 453, 248 ], [ 458, 228, 475, 248 ], [ 479, 228, 503, 248 ], [ 508, 228, 600, 248 ], [ 605, 228, 620, 248 ], [ 630, 228, 645, 248 ], [ 650, 228, 708, 248 ], [ 712, 228, 766, 248 ], [ 771, 228, 801, 248 ], [ 806, 228, 839, 248 ], [ 844, 228, 868, 248 ], [ 258, 245, 302, 265 ], [ 117, 298, 132, 317 ], [ 141, 298, 240, 317 ], [ 117, 314, 218, 333 ], [ 117, 330, 140, 349 ], [ 145, 330, 219, 349 ], [ 258, 298, 274, 318 ], [ 280, 298, 342, 318 ], [ 347, 298, 389, 318 ], [ 394, 298, 403, 318 ], [ 408, 298, 470, 318 ], [ 475, 298, 510, 318 ], [ 515, 298, 548, 318 ], [ 553, 298, 608, 318 ], [ 613, 298, 664, 318 ], [ 669, 298, 749, 318 ], [ 754, 298, 802, 318 ], [ 807, 298, 831, 318 ], [ 258, 315, 345, 335 ], [ 350, 315, 367, 335 ], [ 372, 315, 390, 335 ], [ 395, 315, 468, 335 ], [ 474, 315, 490, 335 ], [ 495, 315, 570, 335 ], [ 575, 315, 590, 335 ], [ 595, 315, 600, 335 ], [ 605, 317, 655, 335 ], [ 660, 317, 748, 335 ], [ 753, 317, 787, 335 ], [ 792, 317, 801, 335 ], [ 258, 334, 329, 353 ], [ 334, 332, 385, 353 ], [ 389, 332, 419, 353 ], [ 424, 332, 442, 353 ], [ 447, 332, 544, 353 ], [ 549, 332, 584, 353 ], [ 589, 332, 598, 353 ], [ 603, 332, 664, 353 ], [ 669, 332, 729, 353 ], [ 734, 332, 760, 353 ], [ 765, 332, 802, 353 ], [ 258, 350, 331, 370 ], [ 258, 385, 289, 405 ], [ 294, 385, 354, 405 ], [ 359, 385, 397, 405 ], [ 402, 385, 462, 405 ], [ 466, 385, 490, 405 ], [ 495, 385, 568, 405 ], [ 573, 385, 589, 405 ], [ 594, 385, 613, 405 ], [ 618, 385, 687, 405 ], [ 691, 385, 751, 405 ], [ 756, 385, 840, 405 ], [ 258, 402, 337, 422 ], [ 342, 402, 358, 422 ], [ 363, 402, 427, 422 ], [ 432, 402, 482, 422 ], [ 487, 402, 511, 422 ], [ 516, 402, 561, 422 ], [ 570, 402, 598, 422 ], [ 603, 402, 621, 422 ], [ 626, 402, 697, 422 ], [ 258, 438, 346, 457 ], [ 356, 437, 368, 457 ], [ 373, 437, 397, 457 ], [ 402, 437, 476, 457 ], [ 481, 437, 532, 457 ], [ 537, 437, 553, 457 ], [ 557, 437, 619, 457 ], [ 624, 437, 682, 457 ], [ 687, 437, 753, 457 ], [ 758, 437, 787, 457 ], [ 791, 437, 808, 457 ], [ 813, 437, 837, 457 ], [ 258, 454, 334, 475 ], [ 339, 454, 414, 475 ], [ 419, 454, 435, 475 ], [ 444, 454, 510, 475 ], [ 515, 454, 569, 475 ], [ 574, 454, 656, 475 ], [ 661, 454, 767, 475 ], [ 772, 454, 789, 475 ], [ 258, 472, 338, 492 ], [ 343, 472, 463, 492 ], [ 468, 472, 551, 492 ], [ 556, 472, 589, 492 ], [ 594, 472, 618, 492 ], [ 623, 472, 636, 492 ], [ 641, 472, 730, 492 ], [ 735, 472, 764, 492 ], [ 769, 472, 777, 492 ], [ 782, 472, 810, 492 ], [ 258, 489, 355, 509 ], [ 360, 489, 394, 509 ], [ 399, 489, 434, 509 ], [ 438, 489, 457, 509 ], [ 462, 489, 539, 509 ], [ 543, 489, 558, 509 ], [ 563, 489, 642, 509 ], [ 647, 489, 702, 509 ], [ 707, 489, 745, 509 ], [ 750, 489, 766, 509 ], [ 771, 489, 838, 509 ], [ 117, 542, 127, 561 ], [ 136, 542, 203, 561 ], [ 117, 558, 207, 577 ], [ 117, 574, 180, 593 ], [ 117, 606, 181, 625 ], [ 258, 541, 322, 562 ], [ 326, 541, 447, 562 ], [ 452, 541, 519, 562 ], [ 524, 541, 540, 562 ], [ 545, 541, 611, 562 ], [ 615, 541, 691, 562 ], [ 696, 541, 761, 562 ], [ 765, 541, 794, 562 ], [ 258, 559, 394, 579 ], [ 399, 559, 435, 579 ], [ 440, 559, 456, 579 ], [ 461, 559, 525, 579 ], [ 530, 559, 558, 579 ], [ 563, 559, 629, 579 ], [ 634, 559, 706, 579 ], [ 711, 559, 735, 579 ], [ 739, 559, 764, 579 ], [ 770, 559, 854, 579 ], [ 258, 576, 336, 596 ], [ 340, 576, 436, 596 ], [ 441, 576, 470, 596 ], [ 474, 576, 527, 596 ], [ 532, 576, 550, 596 ], [ 555, 576, 640, 596 ], [ 645, 576, 654, 596 ], [ 658, 576, 739, 596 ], [ 744, 576, 803, 596 ], [ 258, 594, 332, 614 ], [ 336, 594, 359, 614 ], [ 364, 594, 433, 614 ], [ 438, 594, 455, 614 ], [ 460, 594, 465, 614 ], [ 258, 628, 305, 649 ], [ 310, 628, 407, 649 ], [ 412, 628, 494, 649 ], [ 499, 628, 533, 649 ], [ 538, 628, 604, 649 ], [ 608, 628, 685, 649 ], [ 690, 628, 759, 649 ], [ 764, 628, 788, 649 ], [ 793, 628, 820, 649 ], [ 825, 628, 860, 649 ], [ 258, 646, 277, 666 ], [ 282, 646, 348, 666 ], [ 353, 646, 373, 666 ], [ 377, 646, 436, 666 ], [ 441, 646, 480, 666 ], [ 485, 646, 521, 666 ], [ 526, 646, 543, 666 ], [ 547, 646, 592, 666 ], [ 597, 646, 621, 666 ], [ 626, 646, 671, 666 ], [ 680, 646, 697, 666 ], [ 702, 646, 799, 666 ], [ 804, 646, 828, 666 ], [ 258, 663, 303, 684 ], [ 313, 663, 341, 684 ], [ 346, 663, 351, 684 ], [ 117, 716, 137, 736 ], [ 117, 732, 214, 752 ], [ 117, 748, 168, 767 ], [ 173, 748, 196, 767 ], [ 117, 764, 224, 783 ], [ 117, 780, 132, 799 ], [ 137, 780, 211, 799 ], [ 117, 796, 166, 815 ], [ 171, 796, 189, 815 ], [ 193, 796, 230, 815 ], [ 117, 812, 158, 831 ], [ 258, 716, 289, 736 ], [ 294, 716, 391, 736 ], [ 395, 716, 446, 736 ], [ 451, 716, 474, 736 ], [ 478, 716, 585, 736 ], [ 590, 716, 606, 736 ], [ 611, 716, 692, 736 ], [ 697, 716, 756, 736 ], [ 760, 716, 834, 736 ], [ 258, 733, 303, 753 ], [ 272, 769, 323, 789 ], [ 328, 769, 348, 789 ], [ 353, 769, 377, 789 ], [ 382, 769, 415, 789 ], [ 419, 769, 496, 789 ], [ 501, 769, 528, 789 ], [ 533, 769, 632, 789 ], [ 637, 769, 653, 789 ], [ 658, 769, 705, 789 ], [ 710, 769, 777, 789 ], [ 782, 769, 829, 789 ], [ 834, 769, 850, 789 ], [ 272, 786, 293, 807 ], [ 298, 786, 354, 807 ], [ 358, 786, 374, 807 ], [ 379, 786, 403, 807 ], [ 407, 786, 489, 807 ], [ 494, 786, 530, 807 ], [ 535, 786, 588, 807 ], [ 593, 786, 609, 807 ], [ 614, 786, 696, 807 ], [ 701, 786, 752, 807 ], [ 757, 786, 781, 807 ], [ 786, 786, 824, 807 ], [ 828, 786, 857, 807 ], [ 272, 805, 332, 825 ], [ 337, 805, 398, 825 ], [ 403, 805, 484, 825 ], [ 489, 805, 513, 825 ], [ 518, 805, 562, 825 ], [ 117, 863, 132, 882 ], [ 141, 863, 182, 882 ], [ 186, 863, 215, 882 ], [ 117, 879, 198, 898 ], [ 203, 879, 218, 898 ], [ 117, 895, 217, 914 ], [ 263, 862, 332, 882 ], [ 337, 862, 361, 882 ], [ 365, 862, 442, 882 ], [ 447, 862, 466, 882 ], [ 471, 862, 551, 882 ], [ 555, 862, 572, 882 ], [ 577, 862, 617, 882 ], [ 622, 862, 638, 882 ], [ 643, 862, 724, 882 ], [ 729, 862, 758, 882 ], [ 763, 862, 797, 882 ], [ 802, 862, 821, 882 ], [ 258, 880, 373, 900 ], [ 378, 880, 394, 900 ], [ 399, 880, 417, 900 ], [ 422, 880, 521, 900 ], [ 526, 880, 576, 900 ], [ 581, 880, 598, 900 ], [ 603, 880, 621, 900 ], [ 626, 880, 695, 900 ] ]
As held in, 19 Vet.App. 1 (2004) the Veteran is not required to Important: provide evidence linking a qualifying chronic disability listed in to events in service, as long as the Veteran meets all other requirements in . Because the course of an undiagnosed illness cannot be predicted, monitor it i. Considering the Need for a by establishing the necessary controls for a future examination within 24 Future months of the last examination of record. Examination of an Undiagnosed At the expiration of the control period, review the evidence of record to Illness determine whether reexamination is necessary. 3. General Information About Rating Decisions for Qualifying Disabilities Introduction This topic contains general information about rating decisions for qualifying disabilities, including stating the issue in rating decisions for undiagnosed qualifying chronic disabilities language for the section of the rating decision Decision referencing relevant dates in the rating decision termination or reduction of benefits previously awarded under , and Southwest Asia participation in VA-sponsored research projects. Veterans’ Change Date June 3, 2015 State the issue in the rating decision in claims for undiagnosed qualifying a. Stating the Issue in Rating chronic disabilities as [specify signs or symptoms] Service connection for as Decisions for due to a qualifying chronic disability. Undiagnosed Qualifying Chronic Disabilities
Important: As held in, 19 Vet.App. 1 (2004) the Veteran is not required to provide evidence linking a qualifying chronic disability listed in to events in service, as long as the Veteran meets all other requirements in . i. Considering the Need for a Future Examination of an Undiagnosed Illness Because the course of an undiagnosed illness cannot be predicted, monitor it by establishing the necessary controls for a future examination within 24 months of the last examination of record. At the expiration of the control period, review the evidence of record to determine whether reexamination is necessary. 3. General Information About Rating Decisions for Qualifying Disabilities Introduction This topic contains general information about rating decisions for qualifying disabilities, including stating the issue in rating decisions for undiagnosed qualifying chronic disabilities language for the Decision section of the rating decision referencing relevant dates in the rating decision termination or reduction of benefits previously awarded under , and Southwest Asia Veterans’ participation in VA-sponsored research projects. Change Date June 3, 2015 a. Stating the Issue in Rating Decisions for Undiagnosed Qualifying Chronic Disabilities State the issue in the rating decision in claims for undiagnosed qualifying chronic disabilities as Service connection for [specify signs or symptoms] as due to a qualifying chronic disability.
0.8279
[ 13, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 50, 51, 52, 53, 54, 55, 67, 75, 76, 77, 78, 92, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 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, 139, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 164, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 182, 183, 184, 185, 186, 187, 199, 200, 207, 208, 209, 210, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 188, 189, 190, 195, 196, 197, 191, 192, 193, 194, 198, 201, 202, 203, 204, 205, 206 ]
M21-1IV_ii_2_secD.docx
task-1431-672
13
[ [ 356, 87, 377, 108 ], [ 382, 87, 416, 108 ], [ 421, 87, 441, 108 ], [ 446, 87, 465, 108 ], [ 470, 87, 542, 108 ], [ 547, 87, 557, 108 ], [ 562, 87, 614, 108 ], [ 619, 87, 643, 108 ], [ 648, 87, 710, 108 ], [ 715, 87, 728, 108 ], [ 733, 87, 758, 108 ], [ 763, 87, 828, 108 ], [ 833, 87, 848, 108 ], [ 258, 89, 346, 108 ], [ 258, 105, 318, 125 ], [ 323, 105, 393, 125 ], [ 398, 105, 453, 125 ], [ 458, 105, 467, 125 ], [ 472, 105, 552, 125 ], [ 557, 105, 616, 125 ], [ 621, 105, 694, 125 ], [ 699, 105, 741, 125 ], [ 746, 105, 761, 125 ], [ 771, 105, 787, 125 ], [ 791, 105, 841, 125 ], [ 846, 105, 862, 125 ], [ 258, 122, 319, 142 ], [ 324, 122, 340, 142 ], [ 345, 122, 380, 142 ], [ 385, 122, 401, 142 ], [ 406, 122, 430, 142 ], [ 435, 122, 497, 142 ], [ 502, 122, 547, 142 ], [ 552, 122, 572, 142 ], [ 577, 122, 617, 142 ], [ 622, 122, 724, 142 ], [ 729, 122, 745, 142 ], [ 749, 122, 754, 142 ], [ 258, 174, 323, 195 ], [ 328, 174, 352, 195 ], [ 357, 174, 409, 195 ], [ 413, 174, 430, 195 ], [ 435, 174, 453, 195 ], [ 458, 174, 557, 195 ], [ 562, 174, 612, 195 ], [ 617, 174, 670, 195 ], [ 675, 174, 693, 195 ], [ 698, 174, 775, 195 ], [ 780, 174, 843, 195 ], [ 848, 174, 859, 195 ], [ 117, 175, 127, 194 ], [ 136, 175, 230, 194 ], [ 117, 191, 141, 210 ], [ 146, 191, 185, 210 ], [ 189, 191, 212, 210 ], [ 217, 191, 226, 210 ], [ 258, 192, 278, 212 ], [ 283, 192, 377, 212 ], [ 381, 192, 405, 212 ], [ 410, 192, 487, 212 ], [ 491, 192, 554, 212 ], [ 559, 192, 582, 212 ], [ 587, 192, 596, 212 ], [ 601, 192, 648, 212 ], [ 653, 192, 750, 212 ], [ 755, 192, 805, 212 ], [ 810, 192, 829, 212 ], [ 117, 207, 170, 226 ], [ 258, 209, 316, 230 ], [ 321, 209, 337, 230 ], [ 342, 209, 366, 230 ], [ 371, 209, 398, 230 ], [ 403, 209, 500, 230 ], [ 505, 209, 521, 230 ], [ 526, 209, 581, 230 ], [ 117, 223, 216, 242 ], [ 221, 223, 236, 242 ], [ 117, 239, 136, 258 ], [ 141, 239, 241, 258 ], [ 258, 244, 278, 264 ], [ 283, 244, 307, 264 ], [ 312, 244, 391, 264 ], [ 396, 244, 413, 264 ], [ 417, 244, 441, 264 ], [ 446, 244, 502, 264 ], [ 507, 244, 562, 264 ], [ 567, 244, 620, 264 ], [ 625, 244, 649, 264 ], [ 654, 244, 723, 264 ], [ 728, 244, 745, 264 ], [ 750, 244, 800, 264 ], [ 805, 244, 820, 264 ], [ 117, 255, 166, 274 ], [ 258, 261, 337, 282 ], [ 342, 261, 405, 282 ], [ 410, 261, 522, 282 ], [ 527, 261, 540, 282 ], [ 545, 261, 626, 282 ], [ 117, 354, 139, 382 ], [ 153, 354, 251, 382 ], [ 258, 354, 402, 382 ], [ 409, 354, 485, 382 ], [ 492, 354, 573, 382 ], [ 581, 354, 704, 382 ], [ 712, 354, 746, 382 ], [ 754, 354, 881, 382 ], [ 117, 377, 255, 405 ], [ 117, 436, 215, 456 ], [ 258, 436, 293, 456 ], [ 298, 436, 337, 456 ], [ 342, 436, 408, 456 ], [ 413, 436, 470, 456 ], [ 475, 436, 568, 456 ], [ 573, 436, 616, 456 ], [ 621, 436, 667, 456 ], [ 672, 436, 745, 456 ], [ 750, 436, 773, 456 ], [ 777, 436, 858, 456 ], [ 258, 453, 348, 473 ], [ 353, 453, 427, 473 ], [ 272, 489, 325, 509 ], [ 330, 489, 354, 509 ], [ 358, 489, 398, 509 ], [ 403, 489, 418, 509 ], [ 423, 489, 469, 509 ], [ 474, 489, 546, 509 ], [ 551, 489, 574, 509 ], [ 579, 489, 678, 509 ], [ 683, 489, 764, 509 ], [ 768, 489, 827, 509 ], [ 272, 506, 358, 527 ], [ 272, 525, 343, 545 ], [ 348, 525, 371, 545 ], [ 376, 525, 400, 545 ], [ 479, 525, 535, 545 ], [ 540, 525, 556, 545 ], [ 561, 525, 585, 545 ], [ 590, 525, 636, 545 ], [ 640, 525, 706, 545 ], [ 405, 527, 474, 545 ], [ 272, 544, 362, 564 ], [ 367, 544, 430, 564 ], [ 435, 544, 475, 564 ], [ 480, 544, 495, 564 ], [ 500, 544, 524, 564 ], [ 529, 544, 575, 564 ], [ 579, 544, 645, 564 ], [ 272, 562, 363, 582 ], [ 368, 562, 384, 582 ], [ 389, 562, 463, 582 ], [ 468, 562, 484, 582 ], [ 489, 562, 551, 582 ], [ 556, 562, 639, 582 ], [ 644, 562, 710, 582 ], [ 715, 562, 760, 582 ], [ 765, 562, 770, 582 ], [ 775, 562, 803, 582 ], [ 272, 581, 354, 601 ], [ 359, 581, 395, 601 ], [ 481, 581, 580, 601 ], [ 585, 581, 600, 601 ], [ 605, 581, 719, 601 ], [ 724, 581, 790, 601 ], [ 794, 581, 861, 601 ], [ 400, 583, 476, 600 ], [ 117, 633, 176, 653 ], [ 181, 633, 217, 653 ], [ 258, 633, 294, 653 ], [ 299, 633, 314, 653 ], [ 319, 633, 358, 653 ], [ 258, 685, 298, 705 ], [ 302, 685, 326, 705 ], [ 331, 685, 371, 705 ], [ 375, 685, 391, 705 ], [ 396, 685, 420, 705 ], [ 424, 685, 470, 705 ], [ 475, 685, 540, 705 ], [ 545, 685, 561, 705 ], [ 565, 685, 617, 705 ], [ 622, 685, 644, 705 ], [ 649, 685, 748, 705 ], [ 753, 685, 834, 705 ], [ 117, 686, 131, 705 ], [ 140, 686, 195, 705 ], [ 199, 686, 223, 705 ], [ 117, 702, 156, 721 ], [ 161, 702, 176, 721 ], [ 180, 702, 232, 721 ], [ 258, 702, 317, 723 ], [ 322, 702, 407, 723 ], [ 412, 702, 428, 723 ], [ 615, 703, 679, 724 ], [ 684, 703, 725, 724 ], [ 730, 703, 749, 724 ], [ 754, 703, 845, 724 ], [ 433, 704, 491, 722 ], [ 496, 704, 582, 722 ], [ 587, 704, 610, 722 ], [ 850, 704, 867, 722 ], [ 117, 717, 189, 737 ], [ 194, 717, 217, 737 ], [ 258, 721, 287, 740 ], [ 291, 721, 307, 740 ], [ 312, 721, 321, 740 ], [ 326, 721, 406, 740 ], [ 411, 721, 471, 740 ], [ 476, 721, 554, 740 ], [ 117, 734, 217, 753 ], [ 117, 749, 199, 769 ], [ 117, 766, 180, 785 ], [ 117, 781, 202, 801 ] ]
[ [ 258, 89, 346, 108 ], [ 356, 87, 377, 108 ], [ 382, 87, 416, 108 ], [ 421, 87, 441, 108 ], [ 446, 87, 465, 108 ], [ 470, 87, 542, 108 ], [ 547, 87, 557, 108 ], [ 562, 87, 614, 108 ], [ 619, 87, 643, 108 ], [ 648, 87, 710, 108 ], [ 715, 87, 728, 108 ], [ 733, 87, 758, 108 ], [ 763, 87, 828, 108 ], [ 833, 87, 848, 108 ], [ 258, 105, 318, 125 ], [ 323, 105, 393, 125 ], [ 398, 105, 453, 125 ], [ 458, 105, 467, 125 ], [ 472, 105, 552, 125 ], [ 557, 105, 616, 125 ], [ 621, 105, 694, 125 ], [ 699, 105, 741, 125 ], [ 746, 105, 761, 125 ], [ 771, 105, 787, 125 ], [ 791, 105, 841, 125 ], [ 846, 105, 862, 125 ], [ 258, 122, 319, 142 ], [ 324, 122, 340, 142 ], [ 345, 122, 380, 142 ], [ 385, 122, 401, 142 ], [ 406, 122, 430, 142 ], [ 435, 122, 497, 142 ], [ 502, 122, 547, 142 ], [ 552, 122, 572, 142 ], [ 577, 122, 617, 142 ], [ 622, 122, 724, 142 ], [ 729, 122, 745, 142 ], [ 749, 122, 754, 142 ], [ 117, 175, 127, 194 ], [ 136, 175, 230, 194 ], [ 117, 191, 141, 210 ], [ 146, 191, 185, 210 ], [ 189, 191, 212, 210 ], [ 217, 191, 226, 210 ], [ 117, 207, 170, 226 ], [ 117, 223, 216, 242 ], [ 221, 223, 236, 242 ], [ 117, 239, 136, 258 ], [ 141, 239, 241, 258 ], [ 117, 255, 166, 274 ], [ 258, 174, 323, 195 ], [ 328, 174, 352, 195 ], [ 357, 174, 409, 195 ], [ 413, 174, 430, 195 ], [ 435, 174, 453, 195 ], [ 458, 174, 557, 195 ], [ 562, 174, 612, 195 ], [ 617, 174, 670, 195 ], [ 675, 174, 693, 195 ], [ 698, 174, 775, 195 ], [ 780, 174, 843, 195 ], [ 848, 174, 859, 195 ], [ 258, 192, 278, 212 ], [ 283, 192, 377, 212 ], [ 381, 192, 405, 212 ], [ 410, 192, 487, 212 ], [ 491, 192, 554, 212 ], [ 559, 192, 582, 212 ], [ 587, 192, 596, 212 ], [ 601, 192, 648, 212 ], [ 653, 192, 750, 212 ], [ 755, 192, 805, 212 ], [ 810, 192, 829, 212 ], [ 258, 209, 316, 230 ], [ 321, 209, 337, 230 ], [ 342, 209, 366, 230 ], [ 371, 209, 398, 230 ], [ 403, 209, 500, 230 ], [ 505, 209, 521, 230 ], [ 526, 209, 581, 230 ], [ 258, 244, 278, 264 ], [ 283, 244, 307, 264 ], [ 312, 244, 391, 264 ], [ 396, 244, 413, 264 ], [ 417, 244, 441, 264 ], [ 446, 244, 502, 264 ], [ 507, 244, 562, 264 ], [ 567, 244, 620, 264 ], [ 625, 244, 649, 264 ], [ 654, 244, 723, 264 ], [ 728, 244, 745, 264 ], [ 750, 244, 800, 264 ], [ 805, 244, 820, 264 ], [ 258, 261, 337, 282 ], [ 342, 261, 405, 282 ], [ 410, 261, 522, 282 ], [ 527, 261, 540, 282 ], [ 545, 261, 626, 282 ], [ 117, 354, 139, 382 ], [ 153, 354, 251, 382 ], [ 258, 354, 402, 382 ], [ 409, 354, 485, 382 ], [ 492, 354, 573, 382 ], [ 581, 354, 704, 382 ], [ 712, 354, 746, 382 ], [ 754, 354, 881, 382 ], [ 117, 377, 255, 405 ], [ 117, 436, 215, 456 ], [ 258, 436, 293, 456 ], [ 298, 436, 337, 456 ], [ 342, 436, 408, 456 ], [ 413, 436, 470, 456 ], [ 475, 436, 568, 456 ], [ 573, 436, 616, 456 ], [ 621, 436, 667, 456 ], [ 672, 436, 745, 456 ], [ 750, 436, 773, 456 ], [ 777, 436, 858, 456 ], [ 258, 453, 348, 473 ], [ 353, 453, 427, 473 ], [ 272, 489, 325, 509 ], [ 330, 489, 354, 509 ], [ 358, 489, 398, 509 ], [ 403, 489, 418, 509 ], [ 423, 489, 469, 509 ], [ 474, 489, 546, 509 ], [ 551, 489, 574, 509 ], [ 579, 489, 678, 509 ], [ 683, 489, 764, 509 ], [ 768, 489, 827, 509 ], [ 272, 506, 358, 527 ], [ 272, 525, 343, 545 ], [ 348, 525, 371, 545 ], [ 376, 525, 400, 545 ], [ 405, 527, 474, 545 ], [ 479, 525, 535, 545 ], [ 540, 525, 556, 545 ], [ 561, 525, 585, 545 ], [ 590, 525, 636, 545 ], [ 640, 525, 706, 545 ], [ 272, 544, 362, 564 ], [ 367, 544, 430, 564 ], [ 435, 544, 475, 564 ], [ 480, 544, 495, 564 ], [ 500, 544, 524, 564 ], [ 529, 544, 575, 564 ], [ 579, 544, 645, 564 ], [ 272, 562, 363, 582 ], [ 368, 562, 384, 582 ], [ 389, 562, 463, 582 ], [ 468, 562, 484, 582 ], [ 489, 562, 551, 582 ], [ 556, 562, 639, 582 ], [ 644, 562, 710, 582 ], [ 715, 562, 760, 582 ], [ 765, 562, 770, 582 ], [ 775, 562, 803, 582 ], [ 272, 581, 354, 601 ], [ 359, 581, 395, 601 ], [ 400, 583, 476, 600 ], [ 481, 581, 580, 601 ], [ 585, 581, 600, 601 ], [ 605, 581, 719, 601 ], [ 724, 581, 790, 601 ], [ 794, 581, 861, 601 ], [ 117, 633, 176, 653 ], [ 181, 633, 217, 653 ], [ 258, 633, 294, 653 ], [ 299, 633, 314, 653 ], [ 319, 633, 358, 653 ], [ 117, 686, 131, 705 ], [ 140, 686, 195, 705 ], [ 199, 686, 223, 705 ], [ 117, 702, 156, 721 ], [ 161, 702, 176, 721 ], [ 180, 702, 232, 721 ], [ 117, 717, 189, 737 ], [ 194, 717, 217, 737 ], [ 117, 734, 217, 753 ], [ 117, 749, 199, 769 ], [ 117, 766, 180, 785 ], [ 117, 781, 202, 801 ], [ 258, 685, 298, 705 ], [ 302, 685, 326, 705 ], [ 331, 685, 371, 705 ], [ 375, 685, 391, 705 ], [ 396, 685, 420, 705 ], [ 424, 685, 470, 705 ], [ 475, 685, 540, 705 ], [ 545, 685, 561, 705 ], [ 565, 685, 617, 705 ], [ 622, 685, 644, 705 ], [ 649, 685, 748, 705 ], [ 753, 685, 834, 705 ], [ 258, 702, 317, 723 ], [ 322, 702, 407, 723 ], [ 412, 702, 428, 723 ], [ 433, 704, 491, 722 ], [ 496, 704, 582, 722 ], [ 587, 704, 610, 722 ], [ 615, 703, 679, 724 ], [ 684, 703, 725, 724 ], [ 730, 703, 749, 724 ], [ 754, 703, 845, 724 ], [ 850, 704, 867, 722 ], [ 258, 721, 287, 740 ], [ 291, 721, 307, 740 ], [ 312, 721, 321, 740 ], [ 326, 721, 406, 740 ], [ 411, 721, 471, 740 ], [ 476, 721, 554, 740 ] ]
endocrine system 79 8879 central nervous system 80 8880 miscellaneous neurological 81 8881 cranial nerve paralysis 82 8882 cranial nerve neuritis 83 8883 cranial nerve neuralgia 84 8884 peripheral nerve paralysis 85 8885 peripheral nerve neuritis 86 8886 peripheral nerve neuralgia 87 8887 epilepsies 89 8889 psychotic disorders 92 8892 organic mental 93 8893 psychoneurotic 94 8894 psychophysiologic 95 8895 dental and oral 99 8899 The table below contains examples of analogous codes that may be used g. Examples of Analogous when evaluating undiagnosed illnesses manifest by the 13 signs or symptoms Codes for found in . For the second code, use a DC with rating criteria that most Undiagnosed accurately evaluates manifestations of the disability. Disabilities This list does not contain all possible analogous codes. Note: For more information on the 13 signs or symptoms of an Reference: undiagnosed illness, see . If the symptom is Then the hyphenated DC is … … abnormal weight loss 8873-7328, (resection of intestine). cardiovascular signs or symptoms 8870-7013, (tachycardia). cardiovascular signs or symptoms 8870-7005, (arteriosclerotic heart disease (ASHD)). fatigue 8863-6354, (chronic fatigue syndrome). fatigue 8877-7700, (anemia). gastrointestinal signs or symptoms 8873-7305, (ulcer), or 8873-7319, (irritable bowel syndrome). headache 8881-8100, (migraine headaches). joint pain 8850-5002, (rheumatoid arthritis). menstrual disorders 8876-7622, (uterus displacement). muscle pain 8850-5021, (myositis). neurologic signs or symptoms 8885-85__, (peripheral neuropathy). neuropsychological signs or 8893-9300, (organic mental symptoms disorder).
endocrine system 79 8879 central nervous system 80 8880 miscellaneous neurological 81 8881 cranial nerve paralysis 82 8882 cranial nerve neuritis 83 8883 cranial nerve neuralgia 84 8884 peripheral nerve paralysis 85 8885 peripheral nerve neuritis 86 8886 peripheral nerve neuralgia 87 8887 epilepsies 89 8889 psychotic disorders 92 8892 organic mental 93 8893 psychoneurotic 94 8894 psychophysiologic 95 8895 dental and oral 99 8899 g. Examples of Analogous Codes for Undiagnosed Disabilities The table below contains examples of analogous codes that may be used when evaluating undiagnosed illnesses manifest by the 13 signs or symptoms found in . For the second code, use a DC with rating criteria that most accurately evaluates manifestations of the disability. Note: This list does not contain all possible analogous codes. Reference: For more information on the 13 signs or symptoms of an undiagnosed illness, see . If the symptom is … Then the hyphenated DC is … abnormal weight loss 8873-7328, (resection of intestine). cardiovascular signs or symptoms 8870-7013, (tachycardia). cardiovascular signs or symptoms 8870-7005, (arteriosclerotic heart disease (ASHD)). fatigue 8863-6354, (chronic fatigue syndrome). fatigue 8877-7700, (anemia). gastrointestinal signs or symptoms 8873-7305, (ulcer), or 8873-7319, (irritable bowel syndrome). headache 8881-8100, (migraine headaches). joint pain 8850-5002, (rheumatoid arthritis). menstrual disorders 8876-7622, (uterus displacement). muscle pain 8850-5021, (myositis). neurologic signs or symptoms 8885-85__, (peripheral neuropathy). neuropsychological signs or symptoms 8893-9300, (organic mental disorder).
0.89893
[ 0, 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, 77, 78, 79, 80, 92, 93, 109, 116, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 110, 111, 112, 113, 114, 115, 126, 117, 118, 119, 120, 121, 122, 123, 124, 125, 138, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 143, 144, 145, 146, 152, 147, 148, 149, 150, 151, 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, 226, 223, 224, 225, 227 ]
M21-1IV_ii_2_secD.docx
task-1431-672
18
[ [ 264, 71, 341, 91 ], [ 346, 71, 400, 91 ], [ 491, 71, 511, 91 ], [ 678, 71, 718, 91 ], [ 264, 89, 317, 109 ], [ 322, 89, 384, 109 ], [ 389, 89, 444, 109 ], [ 491, 89, 511, 109 ], [ 678, 89, 718, 109 ], [ 264, 108, 375, 128 ], [ 380, 108, 478, 128 ], [ 491, 108, 511, 128 ], [ 678, 108, 718, 128 ], [ 264, 126, 317, 146 ], [ 322, 126, 366, 146 ], [ 371, 126, 440, 146 ], [ 491, 126, 511, 146 ], [ 678, 126, 718, 146 ], [ 264, 144, 317, 165 ], [ 322, 144, 366, 165 ], [ 371, 144, 430, 165 ], [ 491, 144, 511, 165 ], [ 678, 144, 718, 165 ], [ 264, 163, 317, 183 ], [ 322, 163, 366, 183 ], [ 371, 163, 444, 183 ], [ 491, 163, 511, 183 ], [ 678, 163, 718, 183 ], [ 264, 181, 344, 201 ], [ 349, 181, 392, 201 ], [ 397, 181, 467, 201 ], [ 491, 181, 511, 201 ], [ 678, 181, 718, 201 ], [ 264, 199, 344, 220 ], [ 349, 199, 392, 220 ], [ 397, 199, 456, 220 ], [ 491, 199, 511, 220 ], [ 678, 199, 718, 220 ], [ 264, 218, 344, 238 ], [ 349, 218, 392, 238 ], [ 397, 218, 470, 238 ], [ 491, 218, 511, 238 ], [ 678, 218, 718, 238 ], [ 264, 236, 341, 256 ], [ 491, 236, 511, 256 ], [ 678, 236, 718, 256 ], [ 264, 255, 339, 275 ], [ 344, 255, 416, 275 ], [ 491, 255, 511, 275 ], [ 678, 255, 718, 275 ], [ 264, 273, 323, 293 ], [ 328, 273, 381, 293 ], [ 491, 273, 511, 293 ], [ 678, 273, 718, 293 ], [ 264, 291, 384, 312 ], [ 491, 291, 511, 312 ], [ 678, 291, 718, 312 ], [ 264, 310, 411, 330 ], [ 491, 310, 511, 330 ], [ 678, 310, 718, 330 ], [ 264, 328, 312, 348 ], [ 317, 328, 345, 348 ], [ 350, 328, 381, 348 ], [ 491, 328, 511, 348 ], [ 678, 328, 718, 348 ], [ 258, 381, 289, 401 ], [ 294, 381, 332, 401 ], [ 337, 381, 384, 401 ], [ 390, 381, 455, 401 ], [ 460, 381, 534, 401 ], [ 539, 381, 555, 401 ], [ 560, 381, 640, 401 ], [ 645, 381, 689, 401 ], [ 694, 381, 724, 401 ], [ 728, 381, 762, 401 ], [ 767, 381, 786, 401 ], [ 790, 381, 826, 401 ], [ 117, 382, 131, 401 ], [ 140, 382, 215, 401 ], [ 219, 382, 234, 401 ], [ 117, 398, 198, 417 ], [ 258, 399, 301, 419 ], [ 306, 399, 387, 419 ], [ 392, 399, 491, 419 ], [ 496, 399, 563, 419 ], [ 568, 399, 635, 419 ], [ 640, 399, 660, 419 ], [ 665, 399, 688, 419 ], [ 693, 399, 713, 419 ], [ 718, 399, 758, 419 ], [ 763, 399, 780, 419 ], [ 784, 399, 865, 419 ], [ 117, 414, 164, 433 ], [ 169, 414, 192, 433 ], [ 258, 416, 304, 436 ], [ 309, 416, 324, 436 ], [ 329, 416, 334, 436 ], [ 344, 416, 371, 436 ], [ 376, 416, 400, 436 ], [ 405, 416, 459, 436 ], [ 464, 416, 506, 436 ], [ 511, 416, 537, 436 ], [ 542, 416, 551, 436 ], [ 556, 416, 583, 436 ], [ 588, 416, 623, 436 ], [ 628, 416, 673, 436 ], [ 678, 416, 734, 436 ], [ 739, 416, 768, 436 ], [ 773, 416, 811, 436 ], [ 117, 430, 217, 449 ], [ 258, 433, 339, 454 ], [ 344, 433, 417, 454 ], [ 422, 433, 536, 454 ], [ 541, 433, 557, 454 ], [ 562, 433, 586, 454 ], [ 591, 433, 669, 454 ], [ 117, 446, 202, 465 ], [ 312, 468, 347, 489 ], [ 352, 468, 376, 489 ], [ 381, 468, 416, 489 ], [ 421, 468, 446, 489 ], [ 451, 468, 509, 489 ], [ 514, 468, 533, 489 ], [ 538, 468, 603, 489 ], [ 607, 468, 687, 489 ], [ 692, 468, 741, 489 ], [ 258, 470, 302, 489 ], [ 355, 503, 382, 523 ], [ 387, 503, 428, 523 ], [ 433, 503, 525, 523 ], [ 530, 503, 550, 523 ], [ 555, 503, 579, 523 ], [ 584, 503, 603, 523 ], [ 608, 503, 648, 523 ], [ 653, 503, 670, 523 ], [ 675, 503, 755, 523 ], [ 760, 503, 776, 523 ], [ 781, 503, 800, 523 ], [ 258, 504, 345, 523 ], [ 258, 521, 357, 541 ], [ 362, 521, 417, 541 ], [ 422, 521, 447, 541 ], [ 452, 521, 457, 541 ], [ 264, 557, 278, 578 ], [ 283, 557, 310, 578 ], [ 314, 557, 392, 578 ], [ 396, 557, 410, 578 ], [ 573, 557, 616, 578 ], [ 621, 557, 647, 578 ], [ 652, 557, 750, 578 ], [ 755, 557, 783, 578 ], [ 788, 557, 801, 578 ], [ 414, 559, 434, 576 ], [ 806, 559, 826, 576 ], [ 264, 575, 338, 595 ], [ 343, 575, 396, 595 ], [ 401, 575, 432, 595 ], [ 573, 575, 662, 595 ], [ 667, 575, 744, 595 ], [ 749, 575, 766, 595 ], [ 771, 575, 849, 595 ], [ 264, 593, 378, 613 ], [ 383, 593, 424, 613 ], [ 429, 593, 445, 613 ], [ 450, 593, 530, 613 ], [ 573, 593, 662, 613 ], [ 667, 593, 776, 613 ], [ 264, 612, 378, 632 ], [ 383, 612, 424, 632 ], [ 429, 612, 445, 632 ], [ 450, 612, 530, 632 ], [ 573, 612, 662, 632 ], [ 667, 612, 791, 632 ], [ 796, 612, 835, 632 ], [ 573, 629, 629, 649 ], [ 634, 629, 712, 649 ], [ 264, 647, 319, 668 ], [ 573, 647, 662, 668 ], [ 667, 647, 733, 668 ], [ 737, 647, 792, 668 ], [ 573, 665, 661, 685 ], [ 264, 683, 319, 703 ], [ 573, 683, 662, 703 ], [ 667, 683, 742, 703 ], [ 264, 702, 384, 722 ], [ 389, 702, 429, 722 ], [ 434, 702, 450, 722 ], [ 455, 702, 536, 722 ], [ 587, 703, 676, 723 ], [ 681, 703, 738, 723 ], [ 743, 703, 760, 723 ], [ 587, 721, 676, 741 ], [ 681, 721, 750, 741 ], [ 755, 721, 803, 741 ], [ 587, 739, 675, 759 ], [ 264, 757, 337, 777 ], [ 573, 757, 662, 777 ], [ 667, 757, 743, 777 ], [ 748, 757, 840, 777 ], [ 264, 775, 300, 796 ], [ 305, 775, 339, 796 ], [ 573, 775, 662, 796 ], [ 667, 775, 763, 796 ], [ 768, 775, 840, 796 ], [ 264, 794, 341, 814 ], [ 346, 794, 418, 814 ], [ 573, 794, 662, 814 ], [ 667, 794, 722, 814 ], [ 726, 794, 841, 814 ], [ 264, 812, 320, 832 ], [ 325, 812, 358, 832 ], [ 573, 812, 662, 832 ], [ 667, 812, 752, 832 ], [ 264, 830, 348, 851 ], [ 353, 830, 393, 851 ], [ 398, 830, 415, 851 ], [ 419, 830, 500, 851 ], [ 573, 830, 662, 851 ], [ 667, 830, 753, 851 ], [ 758, 830, 858, 851 ], [ 264, 849, 417, 869 ], [ 423, 849, 463, 869 ], [ 468, 849, 484, 869 ], [ 573, 849, 662, 869 ], [ 667, 849, 733, 869 ], [ 737, 849, 791, 869 ], [ 264, 866, 345, 886 ], [ 573, 866, 648, 886 ] ]
[ [ 264, 71, 341, 91 ], [ 346, 71, 400, 91 ], [ 491, 71, 511, 91 ], [ 678, 71, 718, 91 ], [ 264, 89, 317, 109 ], [ 322, 89, 384, 109 ], [ 389, 89, 444, 109 ], [ 491, 89, 511, 109 ], [ 678, 89, 718, 109 ], [ 264, 108, 375, 128 ], [ 380, 108, 478, 128 ], [ 491, 108, 511, 128 ], [ 678, 108, 718, 128 ], [ 264, 126, 317, 146 ], [ 322, 126, 366, 146 ], [ 371, 126, 440, 146 ], [ 491, 126, 511, 146 ], [ 678, 126, 718, 146 ], [ 264, 144, 317, 165 ], [ 322, 144, 366, 165 ], [ 371, 144, 430, 165 ], [ 491, 144, 511, 165 ], [ 678, 144, 718, 165 ], [ 264, 163, 317, 183 ], [ 322, 163, 366, 183 ], [ 371, 163, 444, 183 ], [ 491, 163, 511, 183 ], [ 678, 163, 718, 183 ], [ 264, 181, 344, 201 ], [ 349, 181, 392, 201 ], [ 397, 181, 467, 201 ], [ 491, 181, 511, 201 ], [ 678, 181, 718, 201 ], [ 264, 199, 344, 220 ], [ 349, 199, 392, 220 ], [ 397, 199, 456, 220 ], [ 491, 199, 511, 220 ], [ 678, 199, 718, 220 ], [ 264, 218, 344, 238 ], [ 349, 218, 392, 238 ], [ 397, 218, 470, 238 ], [ 491, 218, 511, 238 ], [ 678, 218, 718, 238 ], [ 264, 236, 341, 256 ], [ 491, 236, 511, 256 ], [ 678, 236, 718, 256 ], [ 264, 255, 339, 275 ], [ 344, 255, 416, 275 ], [ 491, 255, 511, 275 ], [ 678, 255, 718, 275 ], [ 264, 273, 323, 293 ], [ 328, 273, 381, 293 ], [ 491, 273, 511, 293 ], [ 678, 273, 718, 293 ], [ 264, 291, 384, 312 ], [ 491, 291, 511, 312 ], [ 678, 291, 718, 312 ], [ 264, 310, 411, 330 ], [ 491, 310, 511, 330 ], [ 678, 310, 718, 330 ], [ 264, 328, 312, 348 ], [ 317, 328, 345, 348 ], [ 350, 328, 381, 348 ], [ 491, 328, 511, 348 ], [ 678, 328, 718, 348 ], [ 117, 382, 131, 401 ], [ 140, 382, 215, 401 ], [ 219, 382, 234, 401 ], [ 117, 398, 198, 417 ], [ 117, 414, 164, 433 ], [ 169, 414, 192, 433 ], [ 117, 430, 217, 449 ], [ 117, 446, 202, 465 ], [ 258, 381, 289, 401 ], [ 294, 381, 332, 401 ], [ 337, 381, 384, 401 ], [ 390, 381, 455, 401 ], [ 460, 381, 534, 401 ], [ 539, 381, 555, 401 ], [ 560, 381, 640, 401 ], [ 645, 381, 689, 401 ], [ 694, 381, 724, 401 ], [ 728, 381, 762, 401 ], [ 767, 381, 786, 401 ], [ 790, 381, 826, 401 ], [ 258, 399, 301, 419 ], [ 306, 399, 387, 419 ], [ 392, 399, 491, 419 ], [ 496, 399, 563, 419 ], [ 568, 399, 635, 419 ], [ 640, 399, 660, 419 ], [ 665, 399, 688, 419 ], [ 693, 399, 713, 419 ], [ 718, 399, 758, 419 ], [ 763, 399, 780, 419 ], [ 784, 399, 865, 419 ], [ 258, 416, 304, 436 ], [ 309, 416, 324, 436 ], [ 329, 416, 334, 436 ], [ 344, 416, 371, 436 ], [ 376, 416, 400, 436 ], [ 405, 416, 459, 436 ], [ 464, 416, 506, 436 ], [ 511, 416, 537, 436 ], [ 542, 416, 551, 436 ], [ 556, 416, 583, 436 ], [ 588, 416, 623, 436 ], [ 628, 416, 673, 436 ], [ 678, 416, 734, 436 ], [ 739, 416, 768, 436 ], [ 773, 416, 811, 436 ], [ 258, 433, 339, 454 ], [ 344, 433, 417, 454 ], [ 422, 433, 536, 454 ], [ 541, 433, 557, 454 ], [ 562, 433, 586, 454 ], [ 591, 433, 669, 454 ], [ 258, 470, 302, 489 ], [ 312, 468, 347, 489 ], [ 352, 468, 376, 489 ], [ 381, 468, 416, 489 ], [ 421, 468, 446, 489 ], [ 451, 468, 509, 489 ], [ 514, 468, 533, 489 ], [ 538, 468, 603, 489 ], [ 607, 468, 687, 489 ], [ 692, 468, 741, 489 ], [ 258, 504, 345, 523 ], [ 355, 503, 382, 523 ], [ 387, 503, 428, 523 ], [ 433, 503, 525, 523 ], [ 530, 503, 550, 523 ], [ 555, 503, 579, 523 ], [ 584, 503, 603, 523 ], [ 608, 503, 648, 523 ], [ 653, 503, 670, 523 ], [ 675, 503, 755, 523 ], [ 760, 503, 776, 523 ], [ 781, 503, 800, 523 ], [ 258, 521, 357, 541 ], [ 362, 521, 417, 541 ], [ 422, 521, 447, 541 ], [ 452, 521, 457, 541 ], [ 264, 557, 278, 578 ], [ 283, 557, 310, 578 ], [ 314, 557, 392, 578 ], [ 396, 557, 410, 578 ], [ 414, 559, 434, 576 ], [ 573, 557, 616, 578 ], [ 621, 557, 647, 578 ], [ 652, 557, 750, 578 ], [ 755, 557, 783, 578 ], [ 788, 557, 801, 578 ], [ 806, 559, 826, 576 ], [ 264, 575, 338, 595 ], [ 343, 575, 396, 595 ], [ 401, 575, 432, 595 ], [ 573, 575, 662, 595 ], [ 667, 575, 744, 595 ], [ 749, 575, 766, 595 ], [ 771, 575, 849, 595 ], [ 264, 593, 378, 613 ], [ 383, 593, 424, 613 ], [ 429, 593, 445, 613 ], [ 450, 593, 530, 613 ], [ 573, 593, 662, 613 ], [ 667, 593, 776, 613 ], [ 264, 612, 378, 632 ], [ 383, 612, 424, 632 ], [ 429, 612, 445, 632 ], [ 450, 612, 530, 632 ], [ 573, 612, 662, 632 ], [ 667, 612, 791, 632 ], [ 796, 612, 835, 632 ], [ 573, 629, 629, 649 ], [ 634, 629, 712, 649 ], [ 264, 647, 319, 668 ], [ 573, 647, 662, 668 ], [ 667, 647, 733, 668 ], [ 737, 647, 792, 668 ], [ 573, 665, 661, 685 ], [ 264, 683, 319, 703 ], [ 573, 683, 662, 703 ], [ 667, 683, 742, 703 ], [ 264, 702, 384, 722 ], [ 389, 702, 429, 722 ], [ 434, 702, 450, 722 ], [ 455, 702, 536, 722 ], [ 587, 703, 676, 723 ], [ 681, 703, 738, 723 ], [ 743, 703, 760, 723 ], [ 587, 721, 676, 741 ], [ 681, 721, 750, 741 ], [ 755, 721, 803, 741 ], [ 587, 739, 675, 759 ], [ 264, 757, 337, 777 ], [ 573, 757, 662, 777 ], [ 667, 757, 743, 777 ], [ 748, 757, 840, 777 ], [ 264, 775, 300, 796 ], [ 305, 775, 339, 796 ], [ 573, 775, 662, 796 ], [ 667, 775, 763, 796 ], [ 768, 775, 840, 796 ], [ 264, 794, 341, 814 ], [ 346, 794, 418, 814 ], [ 573, 794, 662, 814 ], [ 667, 794, 722, 814 ], [ 726, 794, 841, 814 ], [ 264, 812, 320, 832 ], [ 325, 812, 358, 832 ], [ 573, 812, 662, 832 ], [ 667, 812, 752, 832 ], [ 264, 830, 348, 851 ], [ 353, 830, 393, 851 ], [ 398, 830, 415, 851 ], [ 419, 830, 500, 851 ], [ 573, 830, 662, 851 ], [ 667, 830, 753, 851 ], [ 758, 830, 858, 851 ], [ 264, 849, 417, 869 ], [ 423, 849, 463, 869 ], [ 468, 849, 484, 869 ], [ 264, 866, 345, 886 ], [ 573, 849, 662, 869 ], [ 667, 849, 733, 869 ], [ 737, 849, 791, 869 ], [ 573, 866, 648, 886 ] ]
Section F. Compensation Based on Individual Unemployability (IU) Overview In This Section This section contains the following topics: Topic Topic Name 1 General Information on IU Claims 2 Evaluating Evidence to Establish Entitlement to IU 3 Evaluating Evidence of Self-Employment or Employment With a Tightly Held Corporation 1. 4 Preparing a Rating Decision Addressing the Issue of IU General 5 Special Considerations in IU Claims 6 Exhibit 1: Rating Decision Addressing to Veteran’s Failure on Complete a Field Examination 7 Exhibit 2: Rating Decision Addressing to Respond Veteran’s Failure IU to a Notice of Proposed Adverse Action After Failure to Complete a Claims Field Examination 8 Exhibit 3: Rating Decision Addressing the Subsequent Receipt of Evidence That Restores IU After Failure to Complete a Field Examination 9 Poverty Threshold Information Introduction This topic contains general information on IU claims, including establishing entitlement to a total disability rating for compensation based on IU (TDIU) unemployable vs. unemployed definition of substantially gainful employment, and definition of marginal employment. Change Date November 9, 2015
Section F. Compensation Based on Individual Unemployability (IU) Overview In This Section This section contains the following topics: Topic Topic Name 1 General Information on IU Claims 2 Evaluating Evidence to Establish Entitlement to IU 3 Evaluating Evidence of Self-Employment or Employment With a Tightly Held Corporation 4 Preparing a Rating Decision Addressing the Issue of IU 5 Special Considerations in IU Claims 6 Exhibit 1: Rating Decision Addressing Veteran’s Failure to Complete a Field Examination 7 Exhibit 2: Rating Decision Addressing Veteran’s Failure to Respond to a Notice of Proposed Adverse Action After Failure to Complete a Field Examination 8 Exhibit 3: Rating Decision Addressing the Subsequent Receipt of Evidence That Restores IU After Failure to Complete a Field Examination 9 Poverty Threshold Information 1. General on IU Claims Introduction This topic contains general information on IU claims, including establishing entitlement to a total disability rating for compensation based on IU (TDIU) unemployable vs. unemployed definition of substantially gainful employment, and definition of marginal employment. Change Date November 9, 2015
0.895331
[ 0, 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, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 71, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 87, 88, 85, 86, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 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, 47, 58, 74, 89, 102, 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 ]
M21-1IV_ii_2_SecF.docx
task-1431-674
0
[ [ 212, 60, 306, 88 ], [ 313, 60, 337, 88 ], [ 351, 60, 533, 88 ], [ 540, 60, 619, 88 ], [ 626, 60, 658, 88 ], [ 665, 60, 787, 88 ], [ 373, 83, 575, 111 ], [ 582, 83, 625, 111 ], [ 117, 122, 233, 150 ], [ 117, 181, 134, 200 ], [ 139, 181, 173, 200 ], [ 177, 181, 233, 200 ], [ 258, 181, 293, 201 ], [ 298, 181, 354, 201 ], [ 359, 181, 424, 201 ], [ 429, 181, 453, 201 ], [ 458, 181, 534, 201 ], [ 539, 181, 591, 201 ], [ 254, 217, 302, 238 ], [ 546, 217, 595, 238 ], [ 599, 217, 648, 238 ], [ 273, 235, 283, 255 ], [ 324, 235, 386, 255 ], [ 392, 235, 485, 255 ], [ 490, 235, 510, 255 ], [ 515, 235, 535, 255 ], [ 540, 235, 596, 255 ], [ 273, 253, 283, 273 ], [ 324, 253, 409, 273 ], [ 414, 253, 487, 273 ], [ 492, 253, 507, 273 ], [ 512, 253, 584, 273 ], [ 589, 253, 681, 273 ], [ 686, 253, 701, 273 ], [ 706, 253, 726, 273 ], [ 273, 271, 283, 292 ], [ 324, 271, 409, 292 ], [ 414, 271, 487, 292 ], [ 492, 271, 508, 292 ], [ 513, 271, 653, 292 ], [ 658, 271, 674, 292 ], [ 679, 271, 780, 292 ], [ 785, 271, 824, 292 ], [ 829, 271, 838, 292 ], [ 324, 289, 382, 309 ], [ 387, 289, 425, 309 ], [ 430, 289, 525, 309 ], [ 117, 290, 139, 318 ], [ 273, 307, 283, 327 ], [ 324, 307, 401, 327 ], [ 405, 307, 414, 327 ], [ 419, 307, 471, 327 ], [ 476, 307, 546, 327 ], [ 551, 307, 640, 327 ], [ 645, 307, 669, 327 ], [ 674, 307, 714, 327 ], [ 719, 307, 736, 327 ], [ 741, 307, 761, 327 ], [ 117, 313, 214, 341 ], [ 273, 326, 283, 346 ], [ 324, 326, 382, 346 ], [ 387, 326, 505, 346 ], [ 509, 326, 525, 346 ], [ 530, 326, 550, 346 ], [ 555, 326, 611, 346 ], [ 273, 344, 283, 364 ], [ 324, 344, 382, 364 ], [ 387, 344, 402, 364 ], [ 412, 344, 465, 364 ], [ 469, 344, 539, 364 ], [ 544, 344, 633, 364 ], [ 779, 344, 795, 364 ], [ 638, 347, 714, 363 ], [ 719, 347, 775, 363 ], [ 163, 360, 195, 388 ], [ 324, 361, 401, 382 ], [ 406, 361, 414, 382 ], [ 419, 361, 459, 382 ], [ 464, 361, 565, 382 ], [ 273, 380, 283, 400 ], [ 324, 380, 382, 400 ], [ 387, 380, 402, 400 ], [ 412, 380, 465, 400 ], [ 469, 380, 539, 400 ], [ 544, 380, 633, 400 ], [ 779, 380, 795, 400 ], [ 800, 380, 868, 400 ], [ 638, 382, 714, 399 ], [ 719, 382, 775, 399 ], [ 117, 383, 143, 411 ], [ 324, 397, 340, 417 ], [ 345, 397, 353, 417 ], [ 358, 397, 410, 417 ], [ 415, 397, 432, 417 ], [ 436, 397, 509, 417 ], [ 514, 397, 580, 417 ], [ 584, 397, 638, 417 ], [ 643, 397, 684, 417 ], [ 689, 397, 745, 417 ], [ 750, 397, 765, 417 ], [ 770, 397, 846, 417 ], [ 851, 397, 860, 417 ], [ 117, 406, 203, 434 ], [ 324, 415, 365, 435 ], [ 370, 415, 470, 435 ], [ 273, 433, 283, 453 ], [ 324, 433, 382, 453 ], [ 387, 433, 402, 453 ], [ 412, 433, 465, 453 ], [ 469, 433, 539, 453 ], [ 544, 433, 633, 453 ], [ 638, 433, 662, 453 ], [ 667, 433, 757, 453 ], [ 762, 433, 822, 453 ], [ 827, 433, 843, 453 ], [ 324, 450, 397, 471 ], [ 402, 450, 438, 471 ], [ 443, 450, 511, 471 ], [ 516, 450, 536, 471 ], [ 541, 450, 582, 471 ], [ 587, 450, 643, 471 ], [ 648, 450, 663, 471 ], [ 668, 450, 744, 471 ], [ 749, 450, 758, 471 ], [ 763, 450, 803, 471 ], [ 324, 468, 425, 488 ], [ 273, 486, 283, 506 ], [ 324, 486, 386, 506 ], [ 390, 486, 470, 506 ], [ 475, 486, 569, 506 ], [ 117, 505, 215, 525 ], [ 258, 505, 293, 525 ], [ 298, 505, 337, 525 ], [ 342, 505, 408, 525 ], [ 413, 505, 470, 525 ], [ 475, 505, 568, 525 ], [ 573, 505, 592, 525 ], [ 597, 505, 618, 525 ], [ 623, 505, 679, 525 ], [ 684, 505, 758, 525 ], [ 272, 541, 366, 561 ], [ 371, 541, 459, 561 ], [ 464, 541, 479, 561 ], [ 484, 541, 493, 561 ], [ 498, 541, 533, 561 ], [ 538, 541, 611, 561 ], [ 615, 541, 661, 561 ], [ 666, 541, 689, 561 ], [ 694, 541, 803, 561 ], [ 807, 541, 852, 561 ], [ 272, 558, 292, 578 ], [ 297, 558, 318, 578 ], [ 323, 558, 382, 578 ], [ 272, 577, 383, 597 ], [ 388, 577, 411, 597 ], [ 416, 577, 512, 597 ], [ 272, 595, 349, 615 ], [ 354, 595, 370, 615 ], [ 375, 595, 474, 615 ], [ 479, 595, 534, 615 ], [ 539, 595, 642, 615 ], [ 647, 595, 675, 615 ], [ 272, 614, 349, 634 ], [ 354, 614, 370, 634 ], [ 375, 614, 444, 634 ], [ 449, 614, 552, 634 ], [ 117, 666, 176, 686 ], [ 181, 666, 217, 686 ], [ 263, 666, 346, 686 ], [ 351, 666, 365, 686 ], [ 370, 666, 410, 686 ] ]
[ [ 212, 60, 306, 88 ], [ 313, 60, 337, 88 ], [ 351, 60, 533, 88 ], [ 540, 60, 619, 88 ], [ 626, 60, 658, 88 ], [ 665, 60, 787, 88 ], [ 373, 83, 575, 111 ], [ 582, 83, 625, 111 ], [ 117, 122, 233, 150 ], [ 117, 181, 134, 200 ], [ 139, 181, 173, 200 ], [ 177, 181, 233, 200 ], [ 258, 181, 293, 201 ], [ 298, 181, 354, 201 ], [ 359, 181, 424, 201 ], [ 429, 181, 453, 201 ], [ 458, 181, 534, 201 ], [ 539, 181, 591, 201 ], [ 254, 217, 302, 238 ], [ 546, 217, 595, 238 ], [ 599, 217, 648, 238 ], [ 273, 235, 283, 255 ], [ 324, 235, 386, 255 ], [ 392, 235, 485, 255 ], [ 490, 235, 510, 255 ], [ 515, 235, 535, 255 ], [ 540, 235, 596, 255 ], [ 273, 253, 283, 273 ], [ 324, 253, 409, 273 ], [ 414, 253, 487, 273 ], [ 492, 253, 507, 273 ], [ 512, 253, 584, 273 ], [ 589, 253, 681, 273 ], [ 686, 253, 701, 273 ], [ 706, 253, 726, 273 ], [ 273, 271, 283, 292 ], [ 324, 271, 409, 292 ], [ 414, 271, 487, 292 ], [ 492, 271, 508, 292 ], [ 513, 271, 653, 292 ], [ 658, 271, 674, 292 ], [ 679, 271, 780, 292 ], [ 785, 271, 824, 292 ], [ 829, 271, 838, 292 ], [ 324, 289, 382, 309 ], [ 387, 289, 425, 309 ], [ 430, 289, 525, 309 ], [ 273, 307, 283, 327 ], [ 324, 307, 401, 327 ], [ 405, 307, 414, 327 ], [ 419, 307, 471, 327 ], [ 476, 307, 546, 327 ], [ 551, 307, 640, 327 ], [ 645, 307, 669, 327 ], [ 674, 307, 714, 327 ], [ 719, 307, 736, 327 ], [ 741, 307, 761, 327 ], [ 273, 326, 283, 346 ], [ 324, 326, 382, 346 ], [ 387, 326, 505, 346 ], [ 509, 326, 525, 346 ], [ 530, 326, 550, 346 ], [ 555, 326, 611, 346 ], [ 273, 344, 283, 364 ], [ 324, 344, 382, 364 ], [ 387, 344, 402, 364 ], [ 412, 344, 465, 364 ], [ 469, 344, 539, 364 ], [ 544, 344, 633, 364 ], [ 638, 347, 714, 363 ], [ 719, 347, 775, 363 ], [ 779, 344, 795, 364 ], [ 324, 361, 401, 382 ], [ 406, 361, 414, 382 ], [ 419, 361, 459, 382 ], [ 464, 361, 565, 382 ], [ 273, 380, 283, 400 ], [ 324, 380, 382, 400 ], [ 387, 380, 402, 400 ], [ 412, 380, 465, 400 ], [ 469, 380, 539, 400 ], [ 544, 380, 633, 400 ], [ 638, 382, 714, 399 ], [ 719, 382, 775, 399 ], [ 779, 380, 795, 400 ], [ 800, 380, 868, 400 ], [ 324, 397, 340, 417 ], [ 345, 397, 353, 417 ], [ 358, 397, 410, 417 ], [ 415, 397, 432, 417 ], [ 436, 397, 509, 417 ], [ 514, 397, 580, 417 ], [ 584, 397, 638, 417 ], [ 643, 397, 684, 417 ], [ 689, 397, 745, 417 ], [ 750, 397, 765, 417 ], [ 770, 397, 846, 417 ], [ 851, 397, 860, 417 ], [ 324, 415, 365, 435 ], [ 370, 415, 470, 435 ], [ 273, 433, 283, 453 ], [ 324, 433, 382, 453 ], [ 387, 433, 402, 453 ], [ 412, 433, 465, 453 ], [ 469, 433, 539, 453 ], [ 544, 433, 633, 453 ], [ 638, 433, 662, 453 ], [ 667, 433, 757, 453 ], [ 762, 433, 822, 453 ], [ 827, 433, 843, 453 ], [ 324, 450, 397, 471 ], [ 402, 450, 438, 471 ], [ 443, 450, 511, 471 ], [ 516, 450, 536, 471 ], [ 541, 450, 582, 471 ], [ 587, 450, 643, 471 ], [ 648, 450, 663, 471 ], [ 668, 450, 744, 471 ], [ 749, 450, 758, 471 ], [ 763, 450, 803, 471 ], [ 324, 468, 425, 488 ], [ 273, 486, 283, 506 ], [ 324, 486, 386, 506 ], [ 390, 486, 470, 506 ], [ 475, 486, 569, 506 ], [ 117, 290, 139, 318 ], [ 117, 313, 214, 341 ], [ 163, 360, 195, 388 ], [ 117, 383, 143, 411 ], [ 117, 406, 203, 434 ], [ 117, 505, 215, 525 ], [ 258, 505, 293, 525 ], [ 298, 505, 337, 525 ], [ 342, 505, 408, 525 ], [ 413, 505, 470, 525 ], [ 475, 505, 568, 525 ], [ 573, 505, 592, 525 ], [ 597, 505, 618, 525 ], [ 623, 505, 679, 525 ], [ 684, 505, 758, 525 ], [ 272, 541, 366, 561 ], [ 371, 541, 459, 561 ], [ 464, 541, 479, 561 ], [ 484, 541, 493, 561 ], [ 498, 541, 533, 561 ], [ 538, 541, 611, 561 ], [ 615, 541, 661, 561 ], [ 666, 541, 689, 561 ], [ 694, 541, 803, 561 ], [ 807, 541, 852, 561 ], [ 272, 558, 292, 578 ], [ 297, 558, 318, 578 ], [ 323, 558, 382, 578 ], [ 272, 577, 383, 597 ], [ 388, 577, 411, 597 ], [ 416, 577, 512, 597 ], [ 272, 595, 349, 615 ], [ 354, 595, 370, 615 ], [ 375, 595, 474, 615 ], [ 479, 595, 534, 615 ], [ 539, 595, 642, 615 ], [ 647, 595, 675, 615 ], [ 272, 614, 349, 634 ], [ 354, 614, 370, 634 ], [ 375, 614, 444, 634 ], [ 449, 614, 552, 634 ], [ 117, 666, 176, 686 ], [ 181, 666, 217, 686 ], [ 263, 666, 346, 686 ], [ 351, 666, 365, 686 ], [ 370, 666, 410, 686 ] ]
Department of Veterans Affairs M21-1, Part IV, Subpart ii Veterans Benefits Administration July 30, 2015 Washington, DC 20420 Transmittal Sheet The table below describes the changes included in this revision of Veterans Changes Included in Benefits Manual M21-1, Part IV, “Compensation DIC, and Death This Revision Subpart Compensation Benefits,” ii, “Compensation.” Notes: The also includes pension management center term “regional office” (RO) (PMC), where appropriate. The term also includes “Veterans Service Center Manager” (VSCM) Pension Management Center Manager (PMCM), where appropriate. Unless otherwise noted, the term the official, “claims folder” refers to numbered, Department of Veterans Affairs (VA) repository whether paper – or electronic for all documentation relating to claims that a Veteran and/or – his/her dependent(s) file with VA. Reason(s) for the Change Citation M21-1, Part IV, To provide guidance on how to send the Subpart ii, Chapter 2, Counseling/Evaluation/Rehabilitation (CER) folder to the scanning Section F, Topic 2, vendor when the contents of the CER folder have evidentiary value. Block i To add references to Appeals Management Center (AMC) (IV.ii.2.F.2.i) procedures for obtaining VR&E records, and shipping requirements. To correct the reference that refers to the AMC procedure for IV.ii.2.F.2.j requesting VR&E records. Rescissions None Authority By Direction of the Under Secretary for Benefits Signature Thomas J. Murphy, Director Compensation Service LOCAL REPRODUCTION AUTHORIZED Distribution
Department of Veterans Affairs M21-1, Part IV, Subpart ii Veterans Benefits Administration July 30, 2015 Washington, DC 20420 Transmittal Sheet Changes Included in This Revision The table below describes the changes included in this revision of Veterans Benefits Manual M21-1, Part IV, “Compensation DIC, and Death Compensation Benefits,” Subpart ii, “Compensation.” Notes: The term “regional office” (RO) also includes pension management center (PMC), where appropriate. The term “Veterans Service Center Manager” (VSCM) also includes Pension Management Center Manager (PMCM), where appropriate. Unless otherwise noted, the term “claims folder” refers to the official, numbered, Department of Veterans Affairs (VA) repository – whether paper or electronic – for all documentation relating to claims that a Veteran and/or his/her dependent(s) file with VA. Reason(s) for the Change Citation To provide guidance on how to send the Counseling/Evaluation/Rehabilitation (CER) folder to the scanning vendor when the contents of the CER folder have evidentiary value. To add references to Appeals Management Center (AMC) procedures for obtaining VR&E records, and shipping requirements. M21-1, Part IV, Subpart ii, Chapter 2, Section F, Topic 2, Block i (IV.ii.2.F.2.i) To correct the reference that refers to the AMC procedure for requesting VR&E records. IV.ii.2.F.2.j Rescissions None Authority By Direction of the Under Secretary for Benefits Signature Thomas J. Murphy, Director Compensation Service Distribution LOCAL REPRODUCTION AUTHORIZED
0.745602
[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 32, 33, 34, 44, 45, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 35, 36, 37, 38, 39, 40, 41, 42, 43, 47, 48, 46, 49, 50, 51, 52, 58, 59, 60, 61, 53, 54, 55, 56, 57, 62, 63, 64, 65, 66, 69, 70, 71, 72, 73, 67, 68, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 88, 89, 90, 91, 86, 87, 92, 93, 94, 95, 96, 97, 98, 101, 99, 100, 102, 103, 114, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 128, 129, 130, 131, 132, 133, 134, 135, 140, 141, 142, 143, 144, 145, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 163, 164, 165, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 179, 125, 126, 127, 136, 137, 138, 139, 146, 147, 148, 149, 161, 162, 171, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 192, 193, 194, 191, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 216, 213, 214, 215 ]
M21-1IV_ii_2_SecF_TS.docx
task-1431-675
0
[ [ 117, 71, 201, 88 ], [ 206, 71, 219, 88 ], [ 223, 71, 286, 88 ], [ 290, 71, 339, 88 ], [ 696, 71, 746, 88 ], [ 750, 71, 781, 88 ], [ 785, 71, 807, 88 ], [ 811, 71, 868, 88 ], [ 872, 71, 881, 88 ], [ 117, 85, 180, 103 ], [ 184, 85, 240, 103 ], [ 244, 85, 351, 103 ], [ 789, 85, 819, 103 ], [ 823, 85, 843, 103 ], [ 847, 85, 880, 103 ], [ 117, 100, 206, 117 ], [ 210, 100, 233, 117 ], [ 241, 100, 282, 117 ], [ 117, 127, 258, 155 ], [ 265, 127, 336, 155 ], [ 258, 186, 289, 206 ], [ 294, 186, 332, 206 ], [ 337, 186, 384, 206 ], [ 389, 186, 462, 206 ], [ 467, 186, 491, 206 ], [ 496, 186, 559, 206 ], [ 564, 186, 632, 206 ], [ 637, 186, 652, 206 ], [ 657, 186, 685, 206 ], [ 690, 186, 753, 206 ], [ 758, 186, 775, 206 ], [ 779, 186, 849, 206 ], [ 117, 187, 183, 206 ], [ 117, 203, 185, 222 ], [ 190, 203, 205, 222 ], [ 258, 203, 324, 224 ], [ 329, 203, 388, 224 ], [ 393, 203, 452, 224 ], [ 457, 203, 488, 224 ], [ 493, 203, 519, 224 ], [ 524, 206, 645, 223 ], [ 651, 206, 689, 223 ], [ 694, 206, 722, 223 ], [ 727, 206, 774, 223 ], [ 117, 219, 151, 238 ], [ 156, 219, 222, 238 ], [ 460, 221, 521, 241 ], [ 258, 223, 372, 240 ], [ 377, 223, 455, 240 ], [ 526, 223, 542, 240 ], [ 547, 223, 683, 240 ], [ 258, 257, 309, 276 ], [ 272, 274, 303, 295 ], [ 531, 274, 562, 295 ], [ 567, 274, 633, 295 ], [ 638, 274, 699, 295 ], [ 704, 274, 804, 295 ], [ 809, 274, 857, 295 ], [ 308, 277, 344, 294 ], [ 349, 277, 421, 294 ], [ 426, 277, 481, 294 ], [ 486, 277, 526, 294 ], [ 272, 292, 332, 312 ], [ 337, 292, 385, 312 ], [ 389, 292, 484, 312 ], [ 272, 310, 303, 330 ], [ 308, 310, 344, 330 ], [ 710, 310, 741, 330 ], [ 746, 310, 812, 330 ], [ 349, 313, 427, 330 ], [ 432, 313, 491, 330 ], [ 496, 313, 548, 330 ], [ 553, 313, 631, 330 ], [ 636, 313, 705, 330 ], [ 272, 328, 335, 348 ], [ 339, 328, 442, 348 ], [ 447, 328, 499, 348 ], [ 504, 328, 574, 348 ], [ 578, 328, 655, 348 ], [ 660, 328, 708, 348 ], [ 713, 328, 807, 348 ], [ 272, 346, 326, 366 ], [ 331, 346, 407, 366 ], [ 412, 346, 460, 366 ], [ 465, 346, 489, 366 ], [ 494, 346, 530, 366 ], [ 730, 346, 754, 366 ], [ 759, 346, 820, 366 ], [ 535, 349, 595, 365 ], [ 600, 349, 655, 365 ], [ 660, 349, 705, 365 ], [ 710, 349, 725, 365 ], [ 272, 364, 356, 384 ], [ 361, 364, 453, 384 ], [ 458, 364, 475, 384 ], [ 479, 364, 549, 384 ], [ 554, 364, 609, 384 ], [ 614, 364, 656, 384 ], [ 661, 364, 740, 384 ], [ 760, 364, 823, 384 ], [ 828, 364, 871, 384 ], [ 745, 366, 755, 383 ], [ 272, 381, 289, 401 ], [ 294, 381, 371, 401 ], [ 391, 381, 413, 401 ], [ 418, 381, 438, 401 ], [ 443, 381, 560, 401 ], [ 564, 381, 624, 401 ], [ 629, 381, 644, 401 ], [ 649, 381, 701, 401 ], [ 705, 381, 735, 401 ], [ 740, 381, 748, 401 ], [ 753, 381, 815, 401 ], [ 820, 381, 870, 401 ], [ 376, 383, 386, 400 ], [ 272, 398, 326, 419 ], [ 331, 398, 432, 419 ], [ 437, 398, 463, 419 ], [ 468, 398, 503, 419 ], [ 508, 398, 541, 419 ], [ 294, 435, 376, 456 ], [ 381, 435, 406, 456 ], [ 411, 435, 437, 456 ], [ 442, 435, 506, 456 ], [ 748, 435, 817, 456 ], [ 692, 453, 751, 473 ], [ 755, 453, 787, 473 ], [ 792, 453, 817, 473 ], [ 139, 454, 161, 474 ], [ 166, 454, 226, 474 ], [ 231, 454, 302, 474 ], [ 306, 454, 326, 474 ], [ 331, 454, 365, 474 ], [ 370, 454, 385, 474 ], [ 390, 454, 426, 474 ], [ 431, 454, 455, 474 ], [ 692, 470, 753, 490 ], [ 758, 470, 774, 490 ], [ 779, 470, 841, 490 ], [ 846, 470, 861, 490 ], [ 139, 471, 435, 491 ], [ 440, 471, 492, 491 ], [ 496, 471, 543, 491 ], [ 548, 471, 564, 491 ], [ 568, 471, 592, 491 ], [ 597, 471, 667, 491 ], [ 692, 487, 751, 508 ], [ 756, 487, 772, 508 ], [ 777, 487, 822, 508 ], [ 827, 487, 842, 508 ], [ 139, 488, 194, 509 ], [ 199, 488, 241, 509 ], [ 246, 488, 270, 509 ], [ 275, 488, 340, 509 ], [ 345, 488, 362, 509 ], [ 366, 488, 390, 509 ], [ 395, 488, 433, 509 ], [ 438, 488, 485, 509 ], [ 490, 488, 527, 509 ], [ 532, 488, 620, 509 ], [ 625, 488, 672, 509 ], [ 692, 505, 739, 525 ], [ 744, 505, 749, 525 ], [ 139, 507, 161, 527 ], [ 166, 507, 194, 527 ], [ 204, 507, 284, 527 ], [ 289, 507, 305, 527 ], [ 310, 507, 374, 527 ], [ 379, 507, 481, 527 ], [ 486, 507, 538, 527 ], [ 543, 507, 601, 527 ], [ 692, 522, 797, 542 ], [ 139, 524, 225, 545 ], [ 230, 524, 253, 545 ], [ 258, 524, 332, 545 ], [ 337, 524, 391, 545 ], [ 396, 524, 459, 545 ], [ 464, 524, 492, 545 ], [ 497, 524, 565, 545 ], [ 139, 542, 246, 562 ], [ 126, 560, 148, 581 ], [ 153, 560, 207, 581 ], [ 212, 560, 236, 581 ], [ 241, 560, 314, 581 ], [ 319, 560, 348, 581 ], [ 353, 560, 397, 581 ], [ 402, 560, 418, 581 ], [ 423, 560, 446, 581 ], [ 451, 560, 496, 581 ], [ 501, 560, 579, 581 ], [ 584, 560, 607, 581 ], [ 692, 560, 784, 581 ], [ 126, 578, 208, 598 ], [ 212, 578, 267, 598 ], [ 272, 578, 335, 598 ], [ 117, 631, 211, 652 ], [ 258, 631, 301, 651 ], [ 117, 683, 200, 704 ], [ 258, 683, 281, 703 ], [ 286, 683, 360, 703 ], [ 365, 683, 381, 703 ], [ 386, 683, 410, 703 ], [ 415, 683, 464, 703 ], [ 469, 683, 543, 703 ], [ 548, 683, 571, 703 ], [ 576, 683, 641, 703 ], [ 117, 733, 199, 754 ], [ 258, 785, 321, 805 ], [ 326, 785, 339, 805 ], [ 344, 785, 412, 805 ], [ 417, 785, 482, 805 ], [ 258, 802, 372, 822 ], [ 377, 802, 435, 822 ], [ 389, 854, 454, 874 ], [ 459, 854, 611, 874 ], [ 616, 854, 742, 874 ], [ 117, 855, 220, 876 ] ]
[ [ 117, 71, 201, 88 ], [ 206, 71, 219, 88 ], [ 223, 71, 286, 88 ], [ 290, 71, 339, 88 ], [ 696, 71, 746, 88 ], [ 750, 71, 781, 88 ], [ 785, 71, 807, 88 ], [ 811, 71, 868, 88 ], [ 872, 71, 881, 88 ], [ 117, 85, 180, 103 ], [ 184, 85, 240, 103 ], [ 244, 85, 351, 103 ], [ 789, 85, 819, 103 ], [ 823, 85, 843, 103 ], [ 847, 85, 880, 103 ], [ 117, 100, 206, 117 ], [ 210, 100, 233, 117 ], [ 241, 100, 282, 117 ], [ 117, 127, 258, 155 ], [ 265, 127, 336, 155 ], [ 117, 187, 183, 206 ], [ 117, 203, 185, 222 ], [ 190, 203, 205, 222 ], [ 117, 219, 151, 238 ], [ 156, 219, 222, 238 ], [ 258, 186, 289, 206 ], [ 294, 186, 332, 206 ], [ 337, 186, 384, 206 ], [ 389, 186, 462, 206 ], [ 467, 186, 491, 206 ], [ 496, 186, 559, 206 ], [ 564, 186, 632, 206 ], [ 637, 186, 652, 206 ], [ 657, 186, 685, 206 ], [ 690, 186, 753, 206 ], [ 758, 186, 775, 206 ], [ 779, 186, 849, 206 ], [ 258, 203, 324, 224 ], [ 329, 203, 388, 224 ], [ 393, 203, 452, 224 ], [ 457, 203, 488, 224 ], [ 493, 203, 519, 224 ], [ 524, 206, 645, 223 ], [ 651, 206, 689, 223 ], [ 694, 206, 722, 223 ], [ 727, 206, 774, 223 ], [ 258, 223, 372, 240 ], [ 377, 223, 455, 240 ], [ 460, 221, 521, 241 ], [ 526, 223, 542, 240 ], [ 547, 223, 683, 240 ], [ 258, 257, 309, 276 ], [ 272, 274, 303, 295 ], [ 308, 277, 344, 294 ], [ 349, 277, 421, 294 ], [ 426, 277, 481, 294 ], [ 486, 277, 526, 294 ], [ 531, 274, 562, 295 ], [ 567, 274, 633, 295 ], [ 638, 274, 699, 295 ], [ 704, 274, 804, 295 ], [ 809, 274, 857, 295 ], [ 272, 292, 332, 312 ], [ 337, 292, 385, 312 ], [ 389, 292, 484, 312 ], [ 272, 310, 303, 330 ], [ 308, 310, 344, 330 ], [ 349, 313, 427, 330 ], [ 432, 313, 491, 330 ], [ 496, 313, 548, 330 ], [ 553, 313, 631, 330 ], [ 636, 313, 705, 330 ], [ 710, 310, 741, 330 ], [ 746, 310, 812, 330 ], [ 272, 328, 335, 348 ], [ 339, 328, 442, 348 ], [ 447, 328, 499, 348 ], [ 504, 328, 574, 348 ], [ 578, 328, 655, 348 ], [ 660, 328, 708, 348 ], [ 713, 328, 807, 348 ], [ 272, 346, 326, 366 ], [ 331, 346, 407, 366 ], [ 412, 346, 460, 366 ], [ 465, 346, 489, 366 ], [ 494, 346, 530, 366 ], [ 535, 349, 595, 365 ], [ 600, 349, 655, 365 ], [ 660, 349, 705, 365 ], [ 710, 349, 725, 365 ], [ 730, 346, 754, 366 ], [ 759, 346, 820, 366 ], [ 272, 364, 356, 384 ], [ 361, 364, 453, 384 ], [ 458, 364, 475, 384 ], [ 479, 364, 549, 384 ], [ 554, 364, 609, 384 ], [ 614, 364, 656, 384 ], [ 661, 364, 740, 384 ], [ 745, 366, 755, 383 ], [ 760, 364, 823, 384 ], [ 828, 364, 871, 384 ], [ 272, 381, 289, 401 ], [ 294, 381, 371, 401 ], [ 376, 383, 386, 400 ], [ 391, 381, 413, 401 ], [ 418, 381, 438, 401 ], [ 443, 381, 560, 401 ], [ 564, 381, 624, 401 ], [ 629, 381, 644, 401 ], [ 649, 381, 701, 401 ], [ 705, 381, 735, 401 ], [ 740, 381, 748, 401 ], [ 753, 381, 815, 401 ], [ 820, 381, 870, 401 ], [ 272, 398, 326, 419 ], [ 331, 398, 432, 419 ], [ 437, 398, 463, 419 ], [ 468, 398, 503, 419 ], [ 508, 398, 541, 419 ], [ 294, 435, 376, 456 ], [ 381, 435, 406, 456 ], [ 411, 435, 437, 456 ], [ 442, 435, 506, 456 ], [ 748, 435, 817, 456 ], [ 139, 454, 161, 474 ], [ 166, 454, 226, 474 ], [ 231, 454, 302, 474 ], [ 306, 454, 326, 474 ], [ 331, 454, 365, 474 ], [ 370, 454, 385, 474 ], [ 390, 454, 426, 474 ], [ 431, 454, 455, 474 ], [ 139, 471, 435, 491 ], [ 440, 471, 492, 491 ], [ 496, 471, 543, 491 ], [ 548, 471, 564, 491 ], [ 568, 471, 592, 491 ], [ 597, 471, 667, 491 ], [ 139, 488, 194, 509 ], [ 199, 488, 241, 509 ], [ 246, 488, 270, 509 ], [ 275, 488, 340, 509 ], [ 345, 488, 362, 509 ], [ 366, 488, 390, 509 ], [ 395, 488, 433, 509 ], [ 438, 488, 485, 509 ], [ 490, 488, 527, 509 ], [ 532, 488, 620, 509 ], [ 625, 488, 672, 509 ], [ 139, 507, 161, 527 ], [ 166, 507, 194, 527 ], [ 204, 507, 284, 527 ], [ 289, 507, 305, 527 ], [ 310, 507, 374, 527 ], [ 379, 507, 481, 527 ], [ 486, 507, 538, 527 ], [ 543, 507, 601, 527 ], [ 139, 524, 225, 545 ], [ 230, 524, 253, 545 ], [ 258, 524, 332, 545 ], [ 337, 524, 391, 545 ], [ 396, 524, 459, 545 ], [ 464, 524, 492, 545 ], [ 497, 524, 565, 545 ], [ 139, 542, 246, 562 ], [ 692, 453, 751, 473 ], [ 755, 453, 787, 473 ], [ 792, 453, 817, 473 ], [ 692, 470, 753, 490 ], [ 758, 470, 774, 490 ], [ 779, 470, 841, 490 ], [ 846, 470, 861, 490 ], [ 692, 487, 751, 508 ], [ 756, 487, 772, 508 ], [ 777, 487, 822, 508 ], [ 827, 487, 842, 508 ], [ 692, 505, 739, 525 ], [ 744, 505, 749, 525 ], [ 692, 522, 797, 542 ], [ 126, 560, 148, 581 ], [ 153, 560, 207, 581 ], [ 212, 560, 236, 581 ], [ 241, 560, 314, 581 ], [ 319, 560, 348, 581 ], [ 353, 560, 397, 581 ], [ 402, 560, 418, 581 ], [ 423, 560, 446, 581 ], [ 451, 560, 496, 581 ], [ 501, 560, 579, 581 ], [ 584, 560, 607, 581 ], [ 126, 578, 208, 598 ], [ 212, 578, 267, 598 ], [ 272, 578, 335, 598 ], [ 692, 560, 784, 581 ], [ 117, 631, 211, 652 ], [ 258, 631, 301, 651 ], [ 117, 683, 200, 704 ], [ 258, 683, 281, 703 ], [ 286, 683, 360, 703 ], [ 365, 683, 381, 703 ], [ 386, 683, 410, 703 ], [ 415, 683, 464, 703 ], [ 469, 683, 543, 703 ], [ 548, 683, 571, 703 ], [ 576, 683, 641, 703 ], [ 117, 733, 199, 754 ], [ 258, 785, 321, 805 ], [ 326, 785, 339, 805 ], [ 344, 785, 412, 805 ], [ 417, 785, 482, 805 ], [ 258, 802, 372, 822 ], [ 377, 802, 435, 822 ], [ 117, 855, 220, 876 ], [ 389, 854, 454, 874 ], [ 459, 854, 611, 874 ], [ 616, 854, 742, 874 ] ]
Section C. Initial Screening Policies Overview In this Section This section contains the following topics: Topic Topic Name See Page Recording the Date of Receipt 1-C-2 Claimant Signatures 1-C-5 Claims From Foreign Residents 1-C-7 Claims for Ancillary Benefits 1-C-8 Handling Claims From Employees and Their 1-C-9 Relatives Claims From Veterans Who Are Receiving 1-C-12 Retirement Pay or Received Separation Benefits Claims From Survivor Benefit Plan (SBP) 1-C-16 Beneficiaries 10. Recording the Date of Receipt This topic contains policies for recording the date of receipt on documents the Introduction Department of Veterans Affairs (VA) receives, including , and . Change Date September 16, 2014 Each document the Department of Veterans Affairs (VA) receives in any of a. Requirement to Stamp the its facilities or locations where it has a presence must be stamped with the Date of Receipt date of receipt. Most of the time, this activity occurs in a regional office’s on All (RO’s) mailroom. Incoming Documents Upon identification of a document in the Veterans Service Center (VSC) that bears no date stamp, attempt to determine when VA received the document.
Section C. Initial Screening Policies Overview In this Section This section contains the following topics: Topic Topic Name See Page Recording the Date of Receipt 1-C-2 Claimant Signatures 1-C-5 Claims From Foreign Residents 1-C-7 Claims for Ancillary Benefits 1-C-8 Handling Claims From Employees and Their Relatives 1-C-9 Claims From Veterans Who Are Receiving Retirement Pay or Received Separation Benefits 1-C-12 Claims From Survivor Benefit Plan (SBP) Beneficiaries 1-C-16 10. Recording the Date of Receipt Introduction This topic contains policies for recording the date of receipt on documents the Department of Veterans Affairs (VA) receives, including , and . Change Date September 16, 2014 a. Requirement to Stamp the Date of Receipt on All Incoming Documents Each document the Department of Veterans Affairs (VA) receives in any of its facilities or locations where it has a presence must be stamped with the date of receipt. Most of the time, this activity occurs in a regional office’s (RO’s) mailroom. Upon identification of a document in the Veterans Service Center (VSC) that bears no date stamp, attempt to determine when VA received the document.
0.85173
[ 0, 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, 46, 45, 47, 48, 49, 50, 51, 52, 54, 55, 56, 57, 58, 59, 53, 60, 61, 62, 63, 64, 65, 67, 66, 68, 69, 70, 71, 72, 73, 87, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 115, 116, 117, 118, 119, 134, 135, 136, 151, 152, 155, 156, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 153, 154, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180 ]
M21-1MRIII_ii_1_SecC.docx
task-1431-719
0
[ [ 274, 88, 369, 115 ], [ 376, 88, 402, 115 ], [ 416, 88, 485, 115 ], [ 492, 88, 618, 115 ], [ 625, 88, 724, 115 ], [ 117, 126, 233, 154 ], [ 117, 200, 134, 220 ], [ 139, 200, 167, 220 ], [ 171, 200, 227, 220 ], [ 258, 200, 293, 220 ], [ 298, 200, 354, 220 ], [ 359, 200, 424, 220 ], [ 429, 200, 453, 220 ], [ 458, 200, 534, 220 ], [ 539, 200, 591, 220 ], [ 287, 236, 335, 257 ], [ 516, 236, 564, 257 ], [ 569, 236, 617, 257 ], [ 786, 236, 814, 257 ], [ 819, 236, 859, 257 ], [ 370, 254, 452, 274 ], [ 457, 254, 481, 274 ], [ 485, 254, 523, 274 ], [ 527, 254, 544, 274 ], [ 549, 254, 608, 274 ], [ 800, 254, 845, 274 ], [ 370, 272, 442, 292 ], [ 447, 272, 530, 292 ], [ 800, 272, 845, 292 ], [ 370, 291, 426, 311 ], [ 431, 291, 473, 311 ], [ 478, 291, 539, 311 ], [ 544, 291, 620, 311 ], [ 800, 291, 845, 311 ], [ 370, 309, 426, 329 ], [ 431, 309, 454, 329 ], [ 458, 309, 533, 329 ], [ 537, 309, 603, 329 ], [ 800, 309, 845, 329 ], [ 370, 327, 443, 348 ], [ 448, 327, 503, 348 ], [ 508, 327, 551, 348 ], [ 556, 327, 643, 348 ], [ 648, 327, 676, 348 ], [ 681, 327, 723, 348 ], [ 800, 327, 845, 348 ], [ 370, 345, 443, 365 ], [ 370, 363, 426, 383 ], [ 431, 363, 473, 383 ], [ 478, 363, 548, 383 ], [ 552, 363, 591, 383 ], [ 596, 363, 625, 383 ], [ 630, 363, 709, 383 ], [ 795, 363, 850, 383 ], [ 370, 381, 457, 401 ], [ 462, 381, 492, 401 ], [ 496, 381, 513, 401 ], [ 518, 381, 590, 401 ], [ 595, 381, 679, 401 ], [ 684, 381, 750, 401 ], [ 370, 399, 426, 419 ], [ 431, 399, 473, 419 ], [ 478, 399, 547, 419 ], [ 552, 399, 609, 419 ], [ 614, 399, 649, 419 ], [ 654, 399, 702, 419 ], [ 795, 399, 850, 419 ], [ 370, 416, 473, 437 ], [ 117, 492, 153, 520 ], [ 168, 492, 297, 520 ], [ 304, 492, 344, 520 ], [ 351, 492, 408, 520 ], [ 415, 492, 440, 520 ], [ 447, 492, 541, 520 ], [ 258, 566, 293, 586 ], [ 298, 566, 337, 586 ], [ 342, 566, 408, 586 ], [ 413, 566, 474, 586 ], [ 478, 566, 501, 586 ], [ 506, 566, 581, 586 ], [ 586, 566, 610, 586 ], [ 615, 566, 648, 586 ], [ 653, 566, 669, 586 ], [ 674, 566, 727, 586 ], [ 732, 566, 752, 586 ], [ 757, 566, 842, 586 ], [ 847, 566, 870, 586 ], [ 117, 567, 215, 586 ], [ 258, 583, 351, 604 ], [ 356, 583, 372, 604 ], [ 377, 583, 447, 604 ], [ 452, 583, 507, 604 ], [ 512, 583, 553, 604 ], [ 558, 583, 627, 604 ], [ 632, 583, 707, 604 ], [ 274, 638, 279, 658 ], [ 283, 638, 312, 658 ], [ 274, 656, 279, 677 ], [ 117, 709, 176, 728 ], [ 181, 709, 217, 728 ], [ 258, 709, 335, 727 ], [ 340, 709, 362, 727 ], [ 367, 709, 403, 727 ], [ 258, 759, 297, 779 ], [ 302, 759, 380, 779 ], [ 384, 759, 408, 779 ], [ 414, 759, 506, 779 ], [ 511, 759, 527, 779 ], [ 532, 759, 602, 779 ], [ 607, 759, 662, 779 ], [ 667, 759, 708, 779 ], [ 713, 759, 778, 779 ], [ 782, 759, 798, 779 ], [ 803, 759, 831, 779 ], [ 836, 759, 852, 779 ], [ 117, 760, 131, 779 ], [ 140, 760, 241, 779 ], [ 117, 776, 132, 795 ], [ 137, 776, 187, 795 ], [ 191, 776, 215, 795 ], [ 258, 777, 277, 797 ], [ 282, 777, 349, 797 ], [ 354, 777, 371, 797 ], [ 375, 777, 446, 797 ], [ 451, 777, 499, 797 ], [ 504, 777, 515, 797 ], [ 520, 777, 546, 797 ], [ 551, 777, 559, 797 ], [ 564, 777, 633, 797 ], [ 638, 777, 676, 797 ], [ 681, 777, 699, 797 ], [ 704, 777, 769, 797 ], [ 774, 777, 809, 797 ], [ 814, 777, 838, 797 ], [ 117, 792, 153, 811 ], [ 158, 792, 173, 811 ], [ 177, 792, 235, 811 ], [ 258, 794, 291, 814 ], [ 296, 794, 312, 814 ], [ 317, 794, 375, 814 ], [ 385, 794, 425, 814 ], [ 430, 794, 447, 814 ], [ 452, 794, 476, 814 ], [ 481, 794, 520, 814 ], [ 525, 794, 554, 814 ], [ 559, 794, 618, 814 ], [ 622, 794, 673, 814 ], [ 678, 794, 693, 814 ], [ 698, 794, 707, 814 ], [ 712, 797, 776, 813 ], [ 781, 797, 841, 813 ], [ 117, 808, 136, 827 ], [ 141, 808, 164, 827 ], [ 258, 814, 313, 831 ], [ 318, 814, 399, 831 ], [ 117, 824, 190, 843 ], [ 117, 840, 203, 859 ], [ 258, 842, 302, 862 ], [ 307, 842, 411, 862 ], [ 416, 842, 433, 862 ], [ 437, 842, 446, 862 ], [ 451, 842, 528, 862 ], [ 533, 842, 549, 862 ], [ 554, 842, 577, 862 ], [ 582, 842, 652, 862 ], [ 657, 842, 716, 862 ], [ 721, 842, 773, 862 ], [ 778, 842, 829, 862 ], [ 834, 842, 863, 862 ], [ 258, 859, 300, 880 ], [ 304, 859, 324, 880 ], [ 329, 859, 362, 880 ], [ 367, 859, 418, 880 ], [ 423, 859, 482, 880 ], [ 487, 859, 503, 880 ], [ 507, 859, 586, 880 ], [ 591, 859, 633, 880 ], [ 638, 859, 666, 880 ], [ 671, 859, 737, 880 ], [ 742, 859, 766, 880 ], [ 771, 859, 854, 880 ] ]
[ [ 274, 88, 369, 115 ], [ 376, 88, 402, 115 ], [ 416, 88, 485, 115 ], [ 492, 88, 618, 115 ], [ 625, 88, 724, 115 ], [ 117, 126, 233, 154 ], [ 117, 200, 134, 220 ], [ 139, 200, 167, 220 ], [ 171, 200, 227, 220 ], [ 258, 200, 293, 220 ], [ 298, 200, 354, 220 ], [ 359, 200, 424, 220 ], [ 429, 200, 453, 220 ], [ 458, 200, 534, 220 ], [ 539, 200, 591, 220 ], [ 287, 236, 335, 257 ], [ 516, 236, 564, 257 ], [ 569, 236, 617, 257 ], [ 786, 236, 814, 257 ], [ 819, 236, 859, 257 ], [ 370, 254, 452, 274 ], [ 457, 254, 481, 274 ], [ 485, 254, 523, 274 ], [ 527, 254, 544, 274 ], [ 549, 254, 608, 274 ], [ 800, 254, 845, 274 ], [ 370, 272, 442, 292 ], [ 447, 272, 530, 292 ], [ 800, 272, 845, 292 ], [ 370, 291, 426, 311 ], [ 431, 291, 473, 311 ], [ 478, 291, 539, 311 ], [ 544, 291, 620, 311 ], [ 800, 291, 845, 311 ], [ 370, 309, 426, 329 ], [ 431, 309, 454, 329 ], [ 458, 309, 533, 329 ], [ 537, 309, 603, 329 ], [ 800, 309, 845, 329 ], [ 370, 327, 443, 348 ], [ 448, 327, 503, 348 ], [ 508, 327, 551, 348 ], [ 556, 327, 643, 348 ], [ 648, 327, 676, 348 ], [ 681, 327, 723, 348 ], [ 370, 345, 443, 365 ], [ 800, 327, 845, 348 ], [ 370, 363, 426, 383 ], [ 431, 363, 473, 383 ], [ 478, 363, 548, 383 ], [ 552, 363, 591, 383 ], [ 596, 363, 625, 383 ], [ 630, 363, 709, 383 ], [ 370, 381, 457, 401 ], [ 462, 381, 492, 401 ], [ 496, 381, 513, 401 ], [ 518, 381, 590, 401 ], [ 595, 381, 679, 401 ], [ 684, 381, 750, 401 ], [ 795, 363, 850, 383 ], [ 370, 399, 426, 419 ], [ 431, 399, 473, 419 ], [ 478, 399, 547, 419 ], [ 552, 399, 609, 419 ], [ 614, 399, 649, 419 ], [ 654, 399, 702, 419 ], [ 370, 416, 473, 437 ], [ 795, 399, 850, 419 ], [ 117, 492, 153, 520 ], [ 168, 492, 297, 520 ], [ 304, 492, 344, 520 ], [ 351, 492, 408, 520 ], [ 415, 492, 440, 520 ], [ 447, 492, 541, 520 ], [ 117, 567, 215, 586 ], [ 258, 566, 293, 586 ], [ 298, 566, 337, 586 ], [ 342, 566, 408, 586 ], [ 413, 566, 474, 586 ], [ 478, 566, 501, 586 ], [ 506, 566, 581, 586 ], [ 586, 566, 610, 586 ], [ 615, 566, 648, 586 ], [ 653, 566, 669, 586 ], [ 674, 566, 727, 586 ], [ 732, 566, 752, 586 ], [ 757, 566, 842, 586 ], [ 847, 566, 870, 586 ], [ 258, 583, 351, 604 ], [ 356, 583, 372, 604 ], [ 377, 583, 447, 604 ], [ 452, 583, 507, 604 ], [ 512, 583, 553, 604 ], [ 558, 583, 627, 604 ], [ 632, 583, 707, 604 ], [ 274, 638, 279, 658 ], [ 283, 638, 312, 658 ], [ 274, 656, 279, 677 ], [ 117, 709, 176, 728 ], [ 181, 709, 217, 728 ], [ 258, 709, 335, 727 ], [ 340, 709, 362, 727 ], [ 367, 709, 403, 727 ], [ 117, 760, 131, 779 ], [ 140, 760, 241, 779 ], [ 117, 776, 132, 795 ], [ 137, 776, 187, 795 ], [ 191, 776, 215, 795 ], [ 117, 792, 153, 811 ], [ 158, 792, 173, 811 ], [ 177, 792, 235, 811 ], [ 117, 808, 136, 827 ], [ 141, 808, 164, 827 ], [ 117, 824, 190, 843 ], [ 117, 840, 203, 859 ], [ 258, 759, 297, 779 ], [ 302, 759, 380, 779 ], [ 384, 759, 408, 779 ], [ 414, 759, 506, 779 ], [ 511, 759, 527, 779 ], [ 532, 759, 602, 779 ], [ 607, 759, 662, 779 ], [ 667, 759, 708, 779 ], [ 713, 759, 778, 779 ], [ 782, 759, 798, 779 ], [ 803, 759, 831, 779 ], [ 836, 759, 852, 779 ], [ 258, 777, 277, 797 ], [ 282, 777, 349, 797 ], [ 354, 777, 371, 797 ], [ 375, 777, 446, 797 ], [ 451, 777, 499, 797 ], [ 504, 777, 515, 797 ], [ 520, 777, 546, 797 ], [ 551, 777, 559, 797 ], [ 564, 777, 633, 797 ], [ 638, 777, 676, 797 ], [ 681, 777, 699, 797 ], [ 704, 777, 769, 797 ], [ 774, 777, 809, 797 ], [ 814, 777, 838, 797 ], [ 258, 794, 291, 814 ], [ 296, 794, 312, 814 ], [ 317, 794, 375, 814 ], [ 385, 794, 425, 814 ], [ 430, 794, 447, 814 ], [ 452, 794, 476, 814 ], [ 481, 794, 520, 814 ], [ 525, 794, 554, 814 ], [ 559, 794, 618, 814 ], [ 622, 794, 673, 814 ], [ 678, 794, 693, 814 ], [ 698, 794, 707, 814 ], [ 712, 797, 776, 813 ], [ 781, 797, 841, 813 ], [ 258, 814, 313, 831 ], [ 318, 814, 399, 831 ], [ 258, 842, 302, 862 ], [ 307, 842, 411, 862 ], [ 416, 842, 433, 862 ], [ 437, 842, 446, 862 ], [ 451, 842, 528, 862 ], [ 533, 842, 549, 862 ], [ 554, 842, 577, 862 ], [ 582, 842, 652, 862 ], [ 657, 842, 716, 862 ], [ 721, 842, 773, 862 ], [ 778, 842, 829, 862 ], [ 834, 842, 863, 862 ], [ 258, 859, 300, 880 ], [ 304, 859, 324, 880 ], [ 329, 859, 362, 880 ], [ 367, 859, 418, 880 ], [ 423, 859, 482, 880 ], [ 487, 859, 503, 880 ], [ 507, 859, 586, 880 ], [ 591, 859, 633, 880 ], [ 638, 859, 666, 880 ], [ 671, 859, 737, 880 ], [ 742, 859, 766, 880 ], [ 771, 859, 854, 880 ] ]
If go to the next step. yes, If go to Step 7. no, 4 To update the BIRLS record in Share select the BIRLS UPDATE command enter the first and last name, and claimant’s select SUBMIT. 5 Under the POWER OF ATTORNEY SEARCH command, use the LOCATE field to look up the POA Was the POA found using the LOCATE field? If select UPDATE and go to Step 7. yes, If go to the next step. no, 6 Perform an accreditation of VSOs search using the . Was the POA found in the ? If yes, follow the procedure in M21-1, Part III, Subpart ii, 3.C.6 to have the POA added to the corporate database add a note to VBMS or MAP-D select the POWER OF ATTORNEY SEARCH command use the code 099 as the POA in the LOCATE field select UPDATE, and go to the next step. If no, add a note to VBMS or MAP-D explaining why the POA could not be updated, and forward the information to the Agent and Attorney Fee Coordinator (AAFC) for follow up with the POA. For more information on in References: AAFC’s responsibilities handling non-accredited POA submissions, see M21-1, Part I, Subpart i, 3.C.1.d M21-1, Part I, Subpart i, 3.C.6, and M21-1, Part I, Subpart i, 3.C.7. 7 Is there an EP pending? If go to the next step. yes, If go to Step 9. no, 8 To update the pending issue in Share select the PIF INQUIRY command make note of the specific EP and claim label, and select READY select the PIF CHANGE command and enter the
If yes, go to the next step. If no, go to Step 7. 4 To update the BIRLS record in Share select the BIRLS UPDATE command enter the claimant’s first and last name, and select SUBMIT. 5 Under the POWER OF ATTORNEY SEARCH command, use the LOCATE field to look up the POA Was the POA found using the LOCATE field? If yes, select UPDATE and go to Step 7. If no, go to the next step. 6 Perform an accreditation of VSOs search using the . Was the POA found in the ? If yes, follow the procedure in M21-1, Part III, Subpart ii, 3.C.6 to have the POA added to the corporate database add a note to VBMS or MAP-D select the POWER OF ATTORNEY SEARCH command use the code 099 as the POA in the LOCATE field select UPDATE, and go to the next step. If no, add a note to VBMS or MAP-D explaining why the POA could not be updated, and forward the information to the Agent and Attorney Fee Coordinator (AAFC) for follow up with the POA. References: For more information on AAFC’s responsibilities in handling non-accredited POA submissions, see M21-1, Part I, Subpart i, 3.C.1.d M21-1, Part I, Subpart i, 3.C.6, and M21-1, Part I, Subpart i, 3.C.7. 7 Is there an EP pending? If yes, go to the next step. If no, go to Step 9. 8 To update the pending issue in Share select the PIF INQUIRY command make note of the specific EP and claim label, and select READY select the PIF CHANGE command and enter the
0.88765
[ 0, 6, 1, 2, 3, 4, 5, 7, 12, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 33, 28, 29, 30, 31, 32, 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, 69, 62, 63, 64, 65, 66, 67, 68, 70, 76, 71, 72, 73, 74, 75, 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, 188, 183, 184, 185, 186, 189, 190, 187, 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, 227, 222, 223, 224, 225, 226, 228, 233, 229, 230, 231, 232, 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 ]
M21-1MRIII_ii_3_SecC.docx
task-1431-724
13
[ [ 367, 80, 380, 100 ], [ 420, 80, 439, 100 ], [ 444, 80, 459, 100 ], [ 464, 80, 488, 100 ], [ 493, 80, 527, 100 ], [ 532, 80, 568, 100 ], [ 385, 82, 414, 100 ], [ 367, 99, 380, 119 ], [ 414, 99, 434, 119 ], [ 439, 99, 454, 119 ], [ 459, 99, 494, 119 ], [ 499, 99, 513, 119 ], [ 385, 100, 409, 119 ], [ 296, 117, 306, 137 ], [ 354, 117, 376, 137 ], [ 381, 117, 433, 137 ], [ 438, 117, 462, 137 ], [ 467, 117, 522, 137 ], [ 527, 117, 577, 137 ], [ 582, 117, 597, 137 ], [ 602, 117, 647, 137 ], [ 367, 153, 411, 173 ], [ 416, 153, 440, 173 ], [ 445, 153, 500, 173 ], [ 505, 153, 583, 173 ], [ 588, 153, 665, 173 ], [ 367, 171, 406, 191 ], [ 411, 171, 435, 191 ], [ 526, 171, 558, 191 ], [ 563, 171, 591, 191 ], [ 596, 171, 623, 191 ], [ 628, 171, 676, 191 ], [ 680, 171, 709, 191 ], [ 440, 174, 521, 190 ], [ 367, 190, 411, 210 ], [ 416, 190, 495, 210 ], [ 296, 208, 306, 228 ], [ 354, 208, 403, 228 ], [ 408, 208, 432, 228 ], [ 436, 208, 505, 228 ], [ 510, 208, 535, 228 ], [ 540, 208, 646, 228 ], [ 651, 208, 728, 228 ], [ 733, 208, 815, 228 ], [ 820, 208, 846, 228 ], [ 354, 225, 378, 245 ], [ 383, 225, 460, 245 ], [ 465, 225, 501, 245 ], [ 506, 225, 521, 245 ], [ 526, 225, 561, 245 ], [ 566, 225, 585, 245 ], [ 590, 225, 614, 245 ], [ 619, 225, 658, 245 ], [ 354, 260, 389, 280 ], [ 394, 260, 418, 280 ], [ 423, 260, 462, 280 ], [ 467, 260, 512, 280 ], [ 517, 260, 560, 280 ], [ 565, 260, 588, 280 ], [ 594, 260, 671, 280 ], [ 676, 260, 720, 280 ], [ 367, 296, 380, 316 ], [ 419, 296, 464, 316 ], [ 469, 296, 546, 316 ], [ 551, 296, 580, 316 ], [ 585, 296, 604, 316 ], [ 609, 296, 624, 316 ], [ 629, 296, 664, 316 ], [ 669, 296, 684, 316 ], [ 385, 297, 414, 316 ], [ 367, 314, 380, 335 ], [ 414, 314, 434, 335 ], [ 439, 314, 454, 335 ], [ 459, 314, 483, 335 ], [ 488, 314, 521, 335 ], [ 526, 314, 563, 335 ], [ 385, 316, 409, 335 ], [ 296, 332, 306, 353 ], [ 354, 332, 418, 353 ], [ 423, 332, 441, 353 ], [ 446, 332, 548, 353 ], [ 553, 332, 569, 353 ], [ 574, 332, 621, 353 ], [ 626, 332, 676, 353 ], [ 681, 332, 723, 353 ], [ 728, 332, 752, 353 ], [ 757, 332, 762, 353 ], [ 354, 367, 389, 387 ], [ 394, 367, 418, 387 ], [ 423, 367, 462, 387 ], [ 467, 367, 512, 387 ], [ 517, 367, 533, 387 ], [ 537, 367, 561, 387 ], [ 566, 367, 575, 387 ], [ 367, 403, 380, 424 ], [ 385, 405, 414, 424 ], [ 382, 422, 433, 442 ], [ 438, 422, 462, 442 ], [ 467, 422, 545, 442 ], [ 550, 422, 565, 442 ], [ 571, 422, 629, 442 ], [ 634, 422, 665, 442 ], [ 670, 422, 695, 442 ], [ 699, 422, 761, 442 ], [ 766, 422, 781, 442 ], [ 786, 422, 829, 442 ], [ 834, 422, 849, 442 ], [ 382, 439, 419, 459 ], [ 424, 439, 448, 459 ], [ 453, 439, 492, 459 ], [ 497, 439, 544, 459 ], [ 549, 439, 564, 459 ], [ 569, 439, 593, 459 ], [ 598, 439, 672, 459 ], [ 676, 439, 744, 459 ], [ 382, 458, 410, 478 ], [ 415, 458, 424, 478 ], [ 429, 458, 463, 478 ], [ 467, 458, 483, 478 ], [ 488, 458, 543, 478 ], [ 548, 458, 565, 478 ], [ 570, 458, 633, 478 ], [ 382, 476, 427, 496 ], [ 432, 476, 456, 496 ], [ 460, 476, 529, 496 ], [ 534, 476, 559, 496 ], [ 564, 476, 670, 496 ], [ 675, 476, 752, 496 ], [ 757, 476, 834, 496 ], [ 382, 495, 408, 515 ], [ 413, 495, 437, 515 ], [ 442, 495, 479, 515 ], [ 484, 495, 513, 515 ], [ 518, 495, 534, 515 ], [ 539, 495, 563, 515 ], [ 568, 495, 608, 515 ], [ 612, 495, 628, 515 ], [ 633, 495, 657, 515 ], [ 662, 495, 739, 515 ], [ 744, 495, 779, 515 ], [ 382, 513, 427, 534 ], [ 432, 513, 514, 534 ], [ 519, 513, 547, 534 ], [ 382, 532, 402, 552 ], [ 406, 532, 422, 552 ], [ 427, 532, 451, 552 ], [ 455, 532, 489, 552 ], [ 494, 532, 531, 552 ], [ 367, 550, 380, 571 ], [ 385, 552, 409, 571 ], [ 382, 569, 410, 589 ], [ 415, 569, 424, 589 ], [ 429, 569, 463, 589 ], [ 467, 569, 483, 589 ], [ 488, 569, 543, 589 ], [ 548, 569, 565, 589 ], [ 570, 569, 633, 589 ], [ 638, 569, 721, 589 ], [ 725, 569, 759, 589 ], [ 764, 569, 788, 589 ], [ 793, 569, 832, 589 ], [ 382, 586, 426, 606 ], [ 431, 586, 456, 606 ], [ 461, 586, 479, 606 ], [ 484, 586, 551, 606 ], [ 556, 586, 584, 606 ], [ 382, 605, 444, 625 ], [ 449, 605, 473, 625 ], [ 478, 605, 570, 625 ], [ 575, 605, 591, 625 ], [ 596, 605, 620, 625 ], [ 625, 605, 672, 625 ], [ 677, 605, 705, 625 ], [ 710, 605, 780, 625 ], [ 785, 605, 813, 625 ], [ 382, 622, 477, 642 ], [ 482, 622, 547, 642 ], [ 552, 622, 575, 642 ], [ 580, 622, 631, 642 ], [ 636, 622, 655, 642 ], [ 660, 622, 695, 642 ], [ 700, 622, 724, 642 ], [ 729, 622, 773, 642 ], [ 458, 657, 486, 677 ], [ 490, 657, 531, 677 ], [ 536, 657, 628, 677 ], [ 633, 657, 653, 677 ], [ 853, 657, 868, 677 ], [ 354, 658, 448, 677 ], [ 658, 659, 724, 676 ], [ 729, 659, 848, 676 ], [ 354, 674, 423, 694 ], [ 427, 674, 544, 694 ], [ 549, 674, 588, 694 ], [ 593, 674, 694, 694 ], [ 699, 674, 724, 694 ], [ 367, 693, 425, 713 ], [ 430, 693, 462, 713 ], [ 467, 693, 478, 713 ], [ 483, 693, 544, 713 ], [ 549, 693, 559, 713 ], [ 564, 693, 621, 713 ], [ 367, 712, 425, 732 ], [ 430, 712, 462, 732 ], [ 467, 712, 478, 732 ], [ 483, 712, 544, 732 ], [ 549, 712, 559, 732 ], [ 564, 712, 612, 732 ], [ 616, 712, 645, 732 ], [ 367, 730, 425, 750 ], [ 430, 730, 462, 750 ], [ 467, 730, 478, 750 ], [ 483, 730, 544, 750 ], [ 549, 730, 559, 750 ], [ 564, 730, 612, 750 ], [ 296, 748, 306, 768 ], [ 354, 748, 368, 768 ], [ 373, 748, 412, 768 ], [ 417, 748, 435, 768 ], [ 440, 748, 463, 768 ], [ 468, 748, 540, 768 ], [ 367, 784, 380, 804 ], [ 420, 784, 439, 804 ], [ 444, 784, 459, 804 ], [ 464, 784, 488, 804 ], [ 493, 784, 527, 804 ], [ 532, 784, 568, 804 ], [ 385, 786, 414, 804 ], [ 367, 802, 380, 823 ], [ 414, 802, 434, 823 ], [ 439, 802, 454, 823 ], [ 459, 802, 494, 823 ], [ 499, 802, 513, 823 ], [ 385, 804, 409, 823 ], [ 296, 820, 306, 841 ], [ 354, 820, 376, 841 ], [ 381, 820, 433, 841 ], [ 438, 820, 462, 841 ], [ 466, 820, 530, 841 ], [ 535, 820, 574, 841 ], [ 579, 820, 594, 841 ], [ 599, 820, 644, 841 ], [ 367, 856, 411, 877 ], [ 416, 856, 440, 877 ], [ 445, 856, 473, 877 ], [ 479, 856, 561, 877 ], [ 566, 856, 644, 877 ], [ 382, 875, 425, 895 ], [ 429, 875, 463, 895 ], [ 468, 875, 484, 895 ], [ 489, 875, 513, 895 ], [ 518, 875, 579, 895 ], [ 584, 875, 607, 895 ], [ 612, 875, 640, 895 ], [ 645, 875, 689, 895 ], [ 694, 875, 736, 895 ], [ 741, 875, 770, 895 ], [ 382, 894, 427, 914 ], [ 432, 894, 499, 914 ], [ 367, 912, 411, 932 ], [ 416, 912, 440, 932 ], [ 445, 912, 473, 932 ], [ 478, 912, 560, 932 ], [ 565, 912, 642, 932 ], [ 647, 912, 675, 932 ], [ 680, 912, 720, 932 ], [ 725, 912, 748, 932 ] ]
[ [ 367, 80, 380, 100 ], [ 385, 82, 414, 100 ], [ 420, 80, 439, 100 ], [ 444, 80, 459, 100 ], [ 464, 80, 488, 100 ], [ 493, 80, 527, 100 ], [ 532, 80, 568, 100 ], [ 367, 99, 380, 119 ], [ 385, 100, 409, 119 ], [ 414, 99, 434, 119 ], [ 439, 99, 454, 119 ], [ 459, 99, 494, 119 ], [ 499, 99, 513, 119 ], [ 296, 117, 306, 137 ], [ 354, 117, 376, 137 ], [ 381, 117, 433, 137 ], [ 438, 117, 462, 137 ], [ 467, 117, 522, 137 ], [ 527, 117, 577, 137 ], [ 582, 117, 597, 137 ], [ 602, 117, 647, 137 ], [ 367, 153, 411, 173 ], [ 416, 153, 440, 173 ], [ 445, 153, 500, 173 ], [ 505, 153, 583, 173 ], [ 588, 153, 665, 173 ], [ 367, 171, 406, 191 ], [ 411, 171, 435, 191 ], [ 440, 174, 521, 190 ], [ 526, 171, 558, 191 ], [ 563, 171, 591, 191 ], [ 596, 171, 623, 191 ], [ 628, 171, 676, 191 ], [ 680, 171, 709, 191 ], [ 367, 190, 411, 210 ], [ 416, 190, 495, 210 ], [ 296, 208, 306, 228 ], [ 354, 208, 403, 228 ], [ 408, 208, 432, 228 ], [ 436, 208, 505, 228 ], [ 510, 208, 535, 228 ], [ 540, 208, 646, 228 ], [ 651, 208, 728, 228 ], [ 733, 208, 815, 228 ], [ 820, 208, 846, 228 ], [ 354, 225, 378, 245 ], [ 383, 225, 460, 245 ], [ 465, 225, 501, 245 ], [ 506, 225, 521, 245 ], [ 526, 225, 561, 245 ], [ 566, 225, 585, 245 ], [ 590, 225, 614, 245 ], [ 619, 225, 658, 245 ], [ 354, 260, 389, 280 ], [ 394, 260, 418, 280 ], [ 423, 260, 462, 280 ], [ 467, 260, 512, 280 ], [ 517, 260, 560, 280 ], [ 565, 260, 588, 280 ], [ 594, 260, 671, 280 ], [ 676, 260, 720, 280 ], [ 367, 296, 380, 316 ], [ 385, 297, 414, 316 ], [ 419, 296, 464, 316 ], [ 469, 296, 546, 316 ], [ 551, 296, 580, 316 ], [ 585, 296, 604, 316 ], [ 609, 296, 624, 316 ], [ 629, 296, 664, 316 ], [ 669, 296, 684, 316 ], [ 367, 314, 380, 335 ], [ 385, 316, 409, 335 ], [ 414, 314, 434, 335 ], [ 439, 314, 454, 335 ], [ 459, 314, 483, 335 ], [ 488, 314, 521, 335 ], [ 526, 314, 563, 335 ], [ 296, 332, 306, 353 ], [ 354, 332, 418, 353 ], [ 423, 332, 441, 353 ], [ 446, 332, 548, 353 ], [ 553, 332, 569, 353 ], [ 574, 332, 621, 353 ], [ 626, 332, 676, 353 ], [ 681, 332, 723, 353 ], [ 728, 332, 752, 353 ], [ 757, 332, 762, 353 ], [ 354, 367, 389, 387 ], [ 394, 367, 418, 387 ], [ 423, 367, 462, 387 ], [ 467, 367, 512, 387 ], [ 517, 367, 533, 387 ], [ 537, 367, 561, 387 ], [ 566, 367, 575, 387 ], [ 367, 403, 380, 424 ], [ 385, 405, 414, 424 ], [ 382, 422, 433, 442 ], [ 438, 422, 462, 442 ], [ 467, 422, 545, 442 ], [ 550, 422, 565, 442 ], [ 571, 422, 629, 442 ], [ 634, 422, 665, 442 ], [ 670, 422, 695, 442 ], [ 699, 422, 761, 442 ], [ 766, 422, 781, 442 ], [ 786, 422, 829, 442 ], [ 834, 422, 849, 442 ], [ 382, 439, 419, 459 ], [ 424, 439, 448, 459 ], [ 453, 439, 492, 459 ], [ 497, 439, 544, 459 ], [ 549, 439, 564, 459 ], [ 569, 439, 593, 459 ], [ 598, 439, 672, 459 ], [ 676, 439, 744, 459 ], [ 382, 458, 410, 478 ], [ 415, 458, 424, 478 ], [ 429, 458, 463, 478 ], [ 467, 458, 483, 478 ], [ 488, 458, 543, 478 ], [ 548, 458, 565, 478 ], [ 570, 458, 633, 478 ], [ 382, 476, 427, 496 ], [ 432, 476, 456, 496 ], [ 460, 476, 529, 496 ], [ 534, 476, 559, 496 ], [ 564, 476, 670, 496 ], [ 675, 476, 752, 496 ], [ 757, 476, 834, 496 ], [ 382, 495, 408, 515 ], [ 413, 495, 437, 515 ], [ 442, 495, 479, 515 ], [ 484, 495, 513, 515 ], [ 518, 495, 534, 515 ], [ 539, 495, 563, 515 ], [ 568, 495, 608, 515 ], [ 612, 495, 628, 515 ], [ 633, 495, 657, 515 ], [ 662, 495, 739, 515 ], [ 744, 495, 779, 515 ], [ 382, 513, 427, 534 ], [ 432, 513, 514, 534 ], [ 519, 513, 547, 534 ], [ 382, 532, 402, 552 ], [ 406, 532, 422, 552 ], [ 427, 532, 451, 552 ], [ 455, 532, 489, 552 ], [ 494, 532, 531, 552 ], [ 367, 550, 380, 571 ], [ 385, 552, 409, 571 ], [ 382, 569, 410, 589 ], [ 415, 569, 424, 589 ], [ 429, 569, 463, 589 ], [ 467, 569, 483, 589 ], [ 488, 569, 543, 589 ], [ 548, 569, 565, 589 ], [ 570, 569, 633, 589 ], [ 638, 569, 721, 589 ], [ 725, 569, 759, 589 ], [ 764, 569, 788, 589 ], [ 793, 569, 832, 589 ], [ 382, 586, 426, 606 ], [ 431, 586, 456, 606 ], [ 461, 586, 479, 606 ], [ 484, 586, 551, 606 ], [ 556, 586, 584, 606 ], [ 382, 605, 444, 625 ], [ 449, 605, 473, 625 ], [ 478, 605, 570, 625 ], [ 575, 605, 591, 625 ], [ 596, 605, 620, 625 ], [ 625, 605, 672, 625 ], [ 677, 605, 705, 625 ], [ 710, 605, 780, 625 ], [ 785, 605, 813, 625 ], [ 382, 622, 477, 642 ], [ 482, 622, 547, 642 ], [ 552, 622, 575, 642 ], [ 580, 622, 631, 642 ], [ 636, 622, 655, 642 ], [ 660, 622, 695, 642 ], [ 700, 622, 724, 642 ], [ 729, 622, 773, 642 ], [ 354, 658, 448, 677 ], [ 458, 657, 486, 677 ], [ 490, 657, 531, 677 ], [ 536, 657, 628, 677 ], [ 633, 657, 653, 677 ], [ 658, 659, 724, 676 ], [ 729, 659, 848, 676 ], [ 853, 657, 868, 677 ], [ 354, 674, 423, 694 ], [ 427, 674, 544, 694 ], [ 549, 674, 588, 694 ], [ 593, 674, 694, 694 ], [ 699, 674, 724, 694 ], [ 367, 693, 425, 713 ], [ 430, 693, 462, 713 ], [ 467, 693, 478, 713 ], [ 483, 693, 544, 713 ], [ 549, 693, 559, 713 ], [ 564, 693, 621, 713 ], [ 367, 712, 425, 732 ], [ 430, 712, 462, 732 ], [ 467, 712, 478, 732 ], [ 483, 712, 544, 732 ], [ 549, 712, 559, 732 ], [ 564, 712, 612, 732 ], [ 616, 712, 645, 732 ], [ 367, 730, 425, 750 ], [ 430, 730, 462, 750 ], [ 467, 730, 478, 750 ], [ 483, 730, 544, 750 ], [ 549, 730, 559, 750 ], [ 564, 730, 612, 750 ], [ 296, 748, 306, 768 ], [ 354, 748, 368, 768 ], [ 373, 748, 412, 768 ], [ 417, 748, 435, 768 ], [ 440, 748, 463, 768 ], [ 468, 748, 540, 768 ], [ 367, 784, 380, 804 ], [ 385, 786, 414, 804 ], [ 420, 784, 439, 804 ], [ 444, 784, 459, 804 ], [ 464, 784, 488, 804 ], [ 493, 784, 527, 804 ], [ 532, 784, 568, 804 ], [ 367, 802, 380, 823 ], [ 385, 804, 409, 823 ], [ 414, 802, 434, 823 ], [ 439, 802, 454, 823 ], [ 459, 802, 494, 823 ], [ 499, 802, 513, 823 ], [ 296, 820, 306, 841 ], [ 354, 820, 376, 841 ], [ 381, 820, 433, 841 ], [ 438, 820, 462, 841 ], [ 466, 820, 530, 841 ], [ 535, 820, 574, 841 ], [ 579, 820, 594, 841 ], [ 599, 820, 644, 841 ], [ 367, 856, 411, 877 ], [ 416, 856, 440, 877 ], [ 445, 856, 473, 877 ], [ 479, 856, 561, 877 ], [ 566, 856, 644, 877 ], [ 382, 875, 425, 895 ], [ 429, 875, 463, 895 ], [ 468, 875, 484, 895 ], [ 489, 875, 513, 895 ], [ 518, 875, 579, 895 ], [ 584, 875, 607, 895 ], [ 612, 875, 640, 895 ], [ 645, 875, 689, 895 ], [ 694, 875, 736, 895 ], [ 741, 875, 770, 895 ], [ 382, 894, 427, 914 ], [ 432, 894, 499, 914 ], [ 367, 912, 411, 932 ], [ 416, 912, 440, 932 ], [ 445, 912, 473, 932 ], [ 478, 912, 560, 932 ], [ 565, 912, 642, 932 ], [ 647, 912, 675, 932 ], [ 680, 912, 720, 932 ], [ 725, 912, 748, 932 ] ]
M21-1, Part III, Subpart iv, 4.I.2.d. 4. Hemic and Lymphatic Conditions This topic contains information about hemic and lymphatic conditions, Introduction including the definition of sickle cell disease the definition of sickle cell anemia the definition of and bone marrow transplant stem cell transplant inheritance of sickle cell trait inheritance of sickle cell anemia characteristics of sickle cell anemia mechanism of inheritance of sickle hemoglobin assigning a permanent and total evaluation for multiple myeloma assigning a permanent and total evaluation for chronic lymphocytic leukemia (CLL) considering claims for SC of mycosis fungoides, and evaluating mycosis fungoides July 5, 2015 Change Date a. Definition: is a generic term for all disorders characterized by the Sickle cell disease Sickle Cell presence of sickle hemoglobin (Hb S), in the red blood cells and includes Disease sickle cell anemia sickle cell trait, and other hemoglobinopathies such as sickle cell thalassemia, and sickle-hemoglobin C disease. The phenomenon of sickling of red blood cells is a hereditary Note: abnormality that of itself usually produces few ill effects. b. Definition: is a hereditary and familial disorder characterized Sickle cell anemia Sickle Cell clinically by symptoms of Anemia anemia
M21-1, Part III, Subpart iv, 4.I.2.d. 4. Hemic and Lymphatic Conditions Introduction This topic contains information about hemic and lymphatic conditions, including the definition of sickle cell disease the definition of sickle cell anemia the definition of bone marrow transplant and stem cell transplant inheritance of sickle cell trait inheritance of sickle cell anemia characteristics of sickle cell anemia mechanism of inheritance of sickle hemoglobin assigning a permanent and total evaluation for multiple myeloma assigning a permanent and total evaluation for chronic lymphocytic leukemia (CLL) considering claims for SC of mycosis fungoides, and evaluating mycosis fungoides Change Date July 5, 2015 a. Definition: Sickle Cell Disease Sickle cell disease is a generic term for all disorders characterized by the presence of sickle hemoglobin (Hb S), in the red blood cells and includes sickle cell anemia sickle cell trait, and other hemoglobinopathies such as sickle cell thalassemia, and sickle-hemoglobin C disease. Note: The phenomenon of sickling of red blood cells is a hereditary abnormality that of itself usually produces few ill effects. b. Definition: Sickle Cell Anemia Sickle cell anemia is a hereditary and familial disorder characterized clinically by symptoms of anemia
0.831106
[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 20, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 37, 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, 99, 100, 96, 97, 98, 101, 102, 116, 117, 131, 113, 114, 115, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 161, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 183, 184, 189, 180, 181, 182, 173, 174, 175, 176, 177, 178, 179, 185, 186, 187, 188, 190 ]
M21-1MRIII_iv_4_SecI.docx
task-1431-749
26
[ [ 287, 89, 345, 110 ], [ 350, 89, 381, 110 ], [ 386, 89, 410, 110 ], [ 416, 89, 477, 110 ], [ 482, 89, 502, 110 ], [ 507, 89, 562, 110 ], [ 117, 176, 139, 203 ], [ 153, 176, 232, 203 ], [ 239, 176, 286, 203 ], [ 293, 176, 423, 203 ], [ 431, 176, 567, 203 ], [ 258, 234, 293, 255 ], [ 298, 234, 337, 255 ], [ 342, 234, 408, 255 ], [ 413, 234, 505, 255 ], [ 510, 234, 553, 255 ], [ 558, 234, 606, 255 ], [ 611, 234, 639, 255 ], [ 644, 234, 723, 255 ], [ 728, 234, 814, 255 ], [ 117, 235, 215, 254 ], [ 258, 252, 332, 272 ], [ 274, 288, 298, 308 ], [ 302, 288, 379, 308 ], [ 384, 288, 400, 308 ], [ 405, 289, 451, 309 ], [ 455, 289, 484, 309 ], [ 489, 289, 547, 309 ], [ 274, 306, 298, 327 ], [ 302, 306, 379, 327 ], [ 384, 306, 400, 327 ], [ 405, 308, 451, 327 ], [ 455, 308, 484, 327 ], [ 489, 308, 549, 327 ], [ 274, 325, 298, 345 ], [ 302, 325, 379, 345 ], [ 384, 325, 400, 345 ], [ 605, 325, 633, 345 ], [ 405, 326, 444, 346 ], [ 449, 326, 512, 346 ], [ 517, 326, 600, 346 ], [ 638, 326, 675, 346 ], [ 680, 326, 708, 346 ], [ 713, 326, 796, 346 ], [ 274, 343, 361, 364 ], [ 365, 343, 382, 364 ], [ 387, 343, 433, 364 ], [ 437, 343, 466, 364 ], [ 471, 343, 502, 364 ], [ 274, 362, 361, 382 ], [ 365, 362, 382, 382 ], [ 387, 362, 433, 382 ], [ 437, 362, 466, 382 ], [ 471, 362, 527, 382 ], [ 274, 380, 386, 401 ], [ 391, 380, 407, 401 ], [ 412, 380, 458, 401 ], [ 463, 380, 491, 401 ], [ 496, 380, 552, 401 ], [ 274, 399, 363, 419 ], [ 368, 399, 384, 419 ], [ 389, 399, 476, 419 ], [ 481, 399, 497, 419 ], [ 502, 399, 548, 419 ], [ 553, 399, 647, 419 ], [ 274, 417, 348, 438 ], [ 353, 417, 361, 438 ], [ 366, 417, 449, 438 ], [ 454, 417, 482, 438 ], [ 487, 417, 522, 438 ], [ 527, 417, 609, 438 ], [ 614, 417, 636, 438 ], [ 641, 417, 707, 438 ], [ 712, 417, 784, 438 ], [ 274, 436, 348, 456 ], [ 353, 436, 361, 456 ], [ 366, 436, 449, 456 ], [ 454, 436, 482, 456 ], [ 487, 436, 522, 456 ], [ 527, 436, 609, 456 ], [ 614, 436, 636, 456 ], [ 641, 436, 700, 456 ], [ 705, 436, 803, 456 ], [ 274, 453, 345, 474 ], [ 350, 453, 400, 474 ], [ 274, 472, 365, 492 ], [ 370, 472, 421, 492 ], [ 426, 472, 449, 492 ], [ 454, 472, 478, 492 ], [ 483, 472, 499, 492 ], [ 504, 472, 568, 492 ], [ 573, 472, 655, 492 ], [ 660, 472, 689, 492 ], [ 274, 490, 355, 511 ], [ 360, 490, 424, 511 ], [ 429, 490, 507, 511 ], [ 258, 542, 291, 563 ], [ 296, 542, 310, 563 ], [ 315, 542, 355, 563 ], [ 117, 543, 176, 562 ], [ 181, 543, 217, 562 ], [ 117, 595, 131, 615 ], [ 140, 595, 223, 615 ], [ 408, 595, 421, 615 ], [ 426, 595, 435, 615 ], [ 440, 595, 497, 615 ], [ 502, 595, 538, 615 ], [ 543, 595, 566, 615 ], [ 571, 595, 590, 615 ], [ 595, 595, 667, 615 ], [ 672, 595, 777, 615 ], [ 782, 595, 801, 615 ], [ 806, 595, 830, 615 ], [ 258, 596, 307, 616 ], [ 312, 596, 340, 616 ], [ 345, 596, 403, 616 ], [ 117, 611, 163, 631 ], [ 168, 611, 199, 631 ], [ 258, 612, 327, 632 ], [ 332, 612, 348, 632 ], [ 353, 612, 399, 632 ], [ 404, 612, 498, 632 ], [ 503, 612, 533, 632 ], [ 538, 612, 560, 632 ], [ 565, 612, 580, 632 ], [ 585, 612, 609, 632 ], [ 614, 612, 639, 632 ], [ 644, 612, 689, 632 ], [ 694, 612, 730, 632 ], [ 735, 612, 763, 632 ], [ 768, 612, 833, 632 ], [ 117, 627, 174, 647 ], [ 274, 648, 319, 668 ], [ 324, 648, 352, 668 ], [ 357, 648, 414, 668 ], [ 274, 667, 319, 687 ], [ 324, 667, 352, 687 ], [ 357, 667, 394, 687 ], [ 399, 667, 427, 687 ], [ 274, 685, 314, 705 ], [ 319, 685, 478, 705 ], [ 483, 685, 519, 705 ], [ 524, 685, 540, 705 ], [ 288, 704, 334, 724 ], [ 338, 704, 367, 724 ], [ 372, 704, 468, 724 ], [ 473, 704, 501, 724 ], [ 288, 722, 434, 742 ], [ 439, 722, 452, 742 ], [ 457, 722, 518, 742 ], [ 312, 757, 342, 777 ], [ 347, 757, 448, 777 ], [ 453, 757, 470, 777 ], [ 474, 757, 537, 777 ], [ 541, 757, 558, 777 ], [ 563, 757, 588, 777 ], [ 593, 757, 637, 777 ], [ 642, 757, 678, 777 ], [ 683, 757, 696, 777 ], [ 701, 757, 710, 777 ], [ 715, 757, 794, 777 ], [ 258, 758, 302, 777 ], [ 258, 774, 353, 795 ], [ 358, 774, 387, 795 ], [ 392, 774, 409, 795 ], [ 414, 774, 453, 795 ], [ 458, 774, 514, 795 ], [ 519, 774, 590, 795 ], [ 595, 774, 624, 795 ], [ 629, 774, 645, 795 ], [ 650, 774, 707, 795 ], [ 117, 827, 132, 847 ], [ 141, 827, 224, 847 ], [ 411, 827, 424, 847 ], [ 429, 827, 437, 847 ], [ 442, 827, 522, 847 ], [ 526, 827, 554, 847 ], [ 559, 827, 620, 847 ], [ 625, 827, 689, 847 ], [ 694, 827, 799, 847 ], [ 258, 828, 307, 847 ], [ 312, 828, 340, 847 ], [ 345, 828, 406, 847 ], [ 117, 843, 163, 863 ], [ 168, 843, 199, 863 ], [ 258, 844, 331, 864 ], [ 336, 844, 356, 864 ], [ 361, 844, 441, 864 ], [ 446, 844, 463, 864 ], [ 117, 859, 177, 878 ], [ 274, 880, 330, 900 ] ]
[ [ 287, 89, 345, 110 ], [ 350, 89, 381, 110 ], [ 386, 89, 410, 110 ], [ 416, 89, 477, 110 ], [ 482, 89, 502, 110 ], [ 507, 89, 562, 110 ], [ 117, 176, 139, 203 ], [ 153, 176, 232, 203 ], [ 239, 176, 286, 203 ], [ 293, 176, 423, 203 ], [ 431, 176, 567, 203 ], [ 117, 235, 215, 254 ], [ 258, 234, 293, 255 ], [ 298, 234, 337, 255 ], [ 342, 234, 408, 255 ], [ 413, 234, 505, 255 ], [ 510, 234, 553, 255 ], [ 558, 234, 606, 255 ], [ 611, 234, 639, 255 ], [ 644, 234, 723, 255 ], [ 728, 234, 814, 255 ], [ 258, 252, 332, 272 ], [ 274, 288, 298, 308 ], [ 302, 288, 379, 308 ], [ 384, 288, 400, 308 ], [ 405, 289, 451, 309 ], [ 455, 289, 484, 309 ], [ 489, 289, 547, 309 ], [ 274, 306, 298, 327 ], [ 302, 306, 379, 327 ], [ 384, 306, 400, 327 ], [ 405, 308, 451, 327 ], [ 455, 308, 484, 327 ], [ 489, 308, 549, 327 ], [ 274, 325, 298, 345 ], [ 302, 325, 379, 345 ], [ 384, 325, 400, 345 ], [ 405, 326, 444, 346 ], [ 449, 326, 512, 346 ], [ 517, 326, 600, 346 ], [ 605, 325, 633, 345 ], [ 638, 326, 675, 346 ], [ 680, 326, 708, 346 ], [ 713, 326, 796, 346 ], [ 274, 343, 361, 364 ], [ 365, 343, 382, 364 ], [ 387, 343, 433, 364 ], [ 437, 343, 466, 364 ], [ 471, 343, 502, 364 ], [ 274, 362, 361, 382 ], [ 365, 362, 382, 382 ], [ 387, 362, 433, 382 ], [ 437, 362, 466, 382 ], [ 471, 362, 527, 382 ], [ 274, 380, 386, 401 ], [ 391, 380, 407, 401 ], [ 412, 380, 458, 401 ], [ 463, 380, 491, 401 ], [ 496, 380, 552, 401 ], [ 274, 399, 363, 419 ], [ 368, 399, 384, 419 ], [ 389, 399, 476, 419 ], [ 481, 399, 497, 419 ], [ 502, 399, 548, 419 ], [ 553, 399, 647, 419 ], [ 274, 417, 348, 438 ], [ 353, 417, 361, 438 ], [ 366, 417, 449, 438 ], [ 454, 417, 482, 438 ], [ 487, 417, 522, 438 ], [ 527, 417, 609, 438 ], [ 614, 417, 636, 438 ], [ 641, 417, 707, 438 ], [ 712, 417, 784, 438 ], [ 274, 436, 348, 456 ], [ 353, 436, 361, 456 ], [ 366, 436, 449, 456 ], [ 454, 436, 482, 456 ], [ 487, 436, 522, 456 ], [ 527, 436, 609, 456 ], [ 614, 436, 636, 456 ], [ 641, 436, 700, 456 ], [ 705, 436, 803, 456 ], [ 274, 453, 345, 474 ], [ 350, 453, 400, 474 ], [ 274, 472, 365, 492 ], [ 370, 472, 421, 492 ], [ 426, 472, 449, 492 ], [ 454, 472, 478, 492 ], [ 483, 472, 499, 492 ], [ 504, 472, 568, 492 ], [ 573, 472, 655, 492 ], [ 660, 472, 689, 492 ], [ 274, 490, 355, 511 ], [ 360, 490, 424, 511 ], [ 429, 490, 507, 511 ], [ 117, 543, 176, 562 ], [ 181, 543, 217, 562 ], [ 258, 542, 291, 563 ], [ 296, 542, 310, 563 ], [ 315, 542, 355, 563 ], [ 117, 595, 131, 615 ], [ 140, 595, 223, 615 ], [ 117, 611, 163, 631 ], [ 168, 611, 199, 631 ], [ 117, 627, 174, 647 ], [ 258, 596, 307, 616 ], [ 312, 596, 340, 616 ], [ 345, 596, 403, 616 ], [ 408, 595, 421, 615 ], [ 426, 595, 435, 615 ], [ 440, 595, 497, 615 ], [ 502, 595, 538, 615 ], [ 543, 595, 566, 615 ], [ 571, 595, 590, 615 ], [ 595, 595, 667, 615 ], [ 672, 595, 777, 615 ], [ 782, 595, 801, 615 ], [ 806, 595, 830, 615 ], [ 258, 612, 327, 632 ], [ 332, 612, 348, 632 ], [ 353, 612, 399, 632 ], [ 404, 612, 498, 632 ], [ 503, 612, 533, 632 ], [ 538, 612, 560, 632 ], [ 565, 612, 580, 632 ], [ 585, 612, 609, 632 ], [ 614, 612, 639, 632 ], [ 644, 612, 689, 632 ], [ 694, 612, 730, 632 ], [ 735, 612, 763, 632 ], [ 768, 612, 833, 632 ], [ 274, 648, 319, 668 ], [ 324, 648, 352, 668 ], [ 357, 648, 414, 668 ], [ 274, 667, 319, 687 ], [ 324, 667, 352, 687 ], [ 357, 667, 394, 687 ], [ 399, 667, 427, 687 ], [ 274, 685, 314, 705 ], [ 319, 685, 478, 705 ], [ 483, 685, 519, 705 ], [ 524, 685, 540, 705 ], [ 288, 704, 334, 724 ], [ 338, 704, 367, 724 ], [ 372, 704, 468, 724 ], [ 473, 704, 501, 724 ], [ 288, 722, 434, 742 ], [ 439, 722, 452, 742 ], [ 457, 722, 518, 742 ], [ 258, 758, 302, 777 ], [ 312, 757, 342, 777 ], [ 347, 757, 448, 777 ], [ 453, 757, 470, 777 ], [ 474, 757, 537, 777 ], [ 541, 757, 558, 777 ], [ 563, 757, 588, 777 ], [ 593, 757, 637, 777 ], [ 642, 757, 678, 777 ], [ 683, 757, 696, 777 ], [ 701, 757, 710, 777 ], [ 715, 757, 794, 777 ], [ 258, 774, 353, 795 ], [ 358, 774, 387, 795 ], [ 392, 774, 409, 795 ], [ 414, 774, 453, 795 ], [ 458, 774, 514, 795 ], [ 519, 774, 590, 795 ], [ 595, 774, 624, 795 ], [ 629, 774, 645, 795 ], [ 650, 774, 707, 795 ], [ 117, 827, 132, 847 ], [ 141, 827, 224, 847 ], [ 117, 843, 163, 863 ], [ 168, 843, 199, 863 ], [ 117, 859, 177, 878 ], [ 258, 828, 307, 847 ], [ 312, 828, 340, 847 ], [ 345, 828, 406, 847 ], [ 411, 827, 424, 847 ], [ 429, 827, 437, 847 ], [ 442, 827, 522, 847 ], [ 526, 827, 554, 847 ], [ 559, 827, 620, 847 ], [ 625, 827, 689, 847 ], [ 694, 827, 799, 847 ], [ 258, 844, 331, 864 ], [ 336, 844, 356, 864 ], [ 361, 844, 441, 864 ], [ 446, 844, 463, 864 ], [ 274, 880, 330, 900 ] ]
Section B. Division of Responsibilities for Processing Benefits Delivery at Discharge (BDD) and Quick Start Claims Overview In This Section This section contains the following topics: Topic Topic Name See Page 3 Regional Office (RO) and Intake Site 2-B-2 Responsibilities 4 Intake Site Responsibilities Unique to BDD 2-B-16 Claims 5 Intake Site Responsibilities Unique to Quick 2-B-21 Start Claims BDD Rating Activity Site (RAS) 2-B-24 6 Responsibilities Quick Start Consolidated Processing Site (CPS) 2-B-35 7 Responsibilities 3. Regional Office (RO) and Intake Site Responsibilities Introduction This topic contains information about the responsibilities of intake sites and regional offices in handling pre-discharge claims, including definition of an intake site pre-discharge claim coordinators pre-discharge outreach initial actions upon receipt of a pre-discharge claim circumstances requiring additional/alternative intake site action(s) claims filed more than 180 days prior to discharge claims filed with no known date of discharge intake site responsibilities to update Modern Award Processing Development (MAP-D) pre-discharge claims without service treatment records (STRs) handling pre-discharge claims folders pre-discharge claims with existing paperless claims folders, and folder flash for Benefits Delivery at Discharge (BDD) and Quick Start claims.
Section B. Division of Responsibilities for Processing Benefits Delivery at Discharge (BDD) and Quick Start Claims Overview In This Section This section contains the following topics: Topic Topic Name See Page 3 Regional Office (RO) and Intake Site Responsibilities 2-B-2 4 Intake Site Responsibilities Unique to BDD Claims 2-B-16 5 Intake Site Responsibilities Unique to Quick Start Claims 2-B-21 6 BDD Rating Activity Site (RAS) Responsibilities 2-B-24 7 Quick Start Consolidated Processing Site (CPS) Responsibilities 2-B-35 3. Regional Office (RO) and Intake Site Responsibilities Introduction This topic contains information about the responsibilities of intake sites and regional offices in handling pre-discharge claims, including definition of an intake site pre-discharge claim coordinators pre-discharge outreach initial actions upon receipt of a pre-discharge claim circumstances requiring additional/alternative intake site action(s) claims filed more than 180 days prior to discharge claims filed with no known date of discharge intake site responsibilities to update Modern Award Processing Development (MAP-D) pre-discharge claims without service treatment records (STRs) handling pre-discharge claims folders pre-discharge claims with existing paperless claims folders, and folder flash for Benefits Delivery at Discharge (BDD) and Quick Start claims.
0.90522
[ 0, 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, 39, 38, 40, 41, 42, 43, 44, 45, 46, 48, 47, 49, 50, 51, 52, 53, 54, 55, 57, 58, 56, 65, 59, 60, 61, 62, 63, 66, 64, 74, 67, 68, 69, 70, 71, 72, 75, 73, 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 ]
M21-1MRIII_i_2_SecB.docx
task-1431-760
0
[ [ 162, 88, 257, 115 ], [ 264, 88, 290, 115 ], [ 305, 88, 406, 115 ], [ 414, 88, 438, 115 ], [ 446, 88, 646, 115 ], [ 653, 88, 688, 115 ], [ 695, 88, 836, 115 ], [ 124, 111, 227, 138 ], [ 234, 111, 336, 138 ], [ 343, 111, 366, 138 ], [ 374, 111, 500, 138 ], [ 507, 111, 581, 138 ], [ 588, 111, 635, 138 ], [ 642, 111, 715, 138 ], [ 722, 111, 782, 138 ], [ 789, 111, 875, 138 ], [ 117, 149, 233, 177 ], [ 117, 208, 134, 228 ], [ 139, 208, 173, 228 ], [ 177, 208, 233, 228 ], [ 258, 208, 293, 228 ], [ 298, 208, 354, 228 ], [ 359, 208, 424, 228 ], [ 429, 208, 453, 228 ], [ 458, 208, 534, 228 ], [ 539, 208, 591, 228 ], [ 290, 244, 338, 265 ], [ 515, 244, 563, 265 ], [ 568, 244, 617, 265 ], [ 783, 244, 811, 265 ], [ 816, 244, 856, 265 ], [ 309, 262, 319, 282 ], [ 376, 262, 447, 282 ], [ 452, 262, 502, 282 ], [ 507, 262, 547, 282 ], [ 552, 262, 580, 282 ], [ 585, 262, 634, 282 ], [ 639, 262, 669, 282 ], [ 797, 262, 842, 282 ], [ 376, 279, 501, 300 ], [ 309, 298, 319, 318 ], [ 376, 298, 425, 318 ], [ 430, 298, 460, 318 ], [ 465, 298, 590, 318 ], [ 595, 298, 653, 318 ], [ 658, 298, 673, 318 ], [ 678, 298, 720, 318 ], [ 792, 298, 847, 318 ], [ 376, 315, 432, 335 ], [ 309, 333, 319, 354 ], [ 376, 333, 425, 354 ], [ 430, 333, 460, 354 ], [ 465, 333, 590, 354 ], [ 595, 333, 653, 354 ], [ 658, 333, 673, 354 ], [ 678, 333, 726, 354 ], [ 792, 333, 847, 354 ], [ 376, 351, 413, 371 ], [ 418, 351, 474, 371 ], [ 376, 369, 417, 390 ], [ 422, 369, 475, 390 ], [ 479, 369, 544, 390 ], [ 549, 369, 579, 390 ], [ 584, 369, 635, 390 ], [ 792, 369, 847, 390 ], [ 309, 387, 319, 407 ], [ 376, 387, 501, 407 ], [ 376, 405, 424, 425 ], [ 429, 405, 466, 425 ], [ 471, 405, 574, 425 ], [ 579, 405, 664, 425 ], [ 669, 405, 699, 425 ], [ 704, 405, 752, 425 ], [ 792, 405, 847, 425 ], [ 309, 423, 319, 443 ], [ 376, 423, 501, 443 ], [ 117, 510, 139, 538 ], [ 153, 510, 264, 538 ], [ 271, 510, 345, 538 ], [ 352, 510, 409, 538 ], [ 416, 510, 463, 538 ], [ 470, 510, 546, 538 ], [ 553, 510, 601, 538 ], [ 608, 510, 809, 538 ], [ 117, 569, 215, 589 ], [ 258, 569, 293, 589 ], [ 298, 569, 337, 589 ], [ 342, 569, 408, 589 ], [ 413, 569, 505, 589 ], [ 510, 569, 554, 589 ], [ 558, 569, 582, 589 ], [ 587, 569, 706, 589 ], [ 711, 569, 728, 589 ], [ 732, 569, 780, 589 ], [ 785, 569, 820, 589 ], [ 825, 569, 853, 589 ], [ 258, 586, 322, 606 ], [ 327, 586, 381, 606 ], [ 386, 586, 401, 606 ], [ 406, 586, 475, 606 ], [ 479, 586, 586, 606 ], [ 591, 586, 647, 606 ], [ 652, 586, 726, 606 ], [ 272, 622, 349, 642 ], [ 354, 622, 370, 642 ], [ 375, 622, 393, 642 ], [ 398, 622, 446, 642 ], [ 451, 622, 478, 642 ], [ 272, 641, 379, 661 ], [ 384, 641, 428, 661 ], [ 432, 641, 531, 661 ], [ 272, 659, 379, 679 ], [ 384, 659, 451, 679 ], [ 272, 678, 318, 698 ], [ 323, 678, 379, 698 ], [ 384, 678, 423, 698 ], [ 428, 678, 481, 698 ], [ 486, 678, 502, 698 ], [ 507, 678, 516, 698 ], [ 521, 678, 627, 698 ], [ 632, 678, 676, 698 ], [ 272, 696, 383, 716 ], [ 388, 696, 460, 716 ], [ 465, 696, 632, 716 ], [ 637, 696, 685, 716 ], [ 689, 696, 717, 716 ], [ 722, 696, 790, 716 ], [ 272, 715, 324, 735 ], [ 329, 715, 364, 735 ], [ 369, 715, 410, 735 ], [ 414, 715, 448, 735 ], [ 453, 715, 483, 735 ], [ 488, 715, 523, 735 ], [ 528, 715, 566, 735 ], [ 571, 715, 587, 735 ], [ 592, 715, 667, 735 ], [ 272, 733, 324, 753 ], [ 329, 733, 364, 753 ], [ 369, 733, 404, 753 ], [ 409, 733, 429, 753 ], [ 434, 733, 487, 753 ], [ 492, 733, 525, 753 ], [ 529, 733, 546, 753 ], [ 551, 733, 626, 753 ], [ 272, 752, 320, 772 ], [ 325, 752, 353, 772 ], [ 357, 752, 476, 772 ], [ 481, 752, 496, 772 ], [ 501, 752, 554, 772 ], [ 558, 752, 620, 772 ], [ 625, 752, 679, 772 ], [ 684, 752, 769, 772 ], [ 272, 769, 378, 789 ], [ 383, 769, 459, 789 ], [ 272, 788, 379, 808 ], [ 384, 788, 435, 808 ], [ 440, 788, 500, 808 ], [ 505, 788, 560, 808 ], [ 565, 788, 639, 808 ], [ 644, 788, 702, 808 ], [ 707, 788, 763, 808 ], [ 272, 806, 341, 826 ], [ 346, 806, 453, 826 ], [ 458, 806, 509, 826 ], [ 514, 806, 568, 826 ], [ 272, 825, 379, 845 ], [ 384, 825, 435, 845 ], [ 440, 825, 475, 845 ], [ 480, 825, 542, 845 ], [ 547, 825, 620, 845 ], [ 625, 825, 676, 845 ], [ 681, 825, 740, 845 ], [ 745, 825, 773, 845 ], [ 272, 843, 319, 863 ], [ 324, 843, 362, 863 ], [ 367, 843, 390, 863 ], [ 395, 843, 460, 863 ], [ 465, 843, 534, 863 ], [ 539, 843, 553, 863 ], [ 557, 843, 637, 863 ], [ 642, 843, 696, 863 ], [ 701, 843, 730, 863 ], [ 735, 843, 783, 863 ], [ 787, 843, 824, 863 ], [ 272, 860, 329, 881 ] ]
[ [ 162, 88, 257, 115 ], [ 264, 88, 290, 115 ], [ 305, 88, 406, 115 ], [ 414, 88, 438, 115 ], [ 446, 88, 646, 115 ], [ 653, 88, 688, 115 ], [ 695, 88, 836, 115 ], [ 124, 111, 227, 138 ], [ 234, 111, 336, 138 ], [ 343, 111, 366, 138 ], [ 374, 111, 500, 138 ], [ 507, 111, 581, 138 ], [ 588, 111, 635, 138 ], [ 642, 111, 715, 138 ], [ 722, 111, 782, 138 ], [ 789, 111, 875, 138 ], [ 117, 149, 233, 177 ], [ 117, 208, 134, 228 ], [ 139, 208, 173, 228 ], [ 177, 208, 233, 228 ], [ 258, 208, 293, 228 ], [ 298, 208, 354, 228 ], [ 359, 208, 424, 228 ], [ 429, 208, 453, 228 ], [ 458, 208, 534, 228 ], [ 539, 208, 591, 228 ], [ 290, 244, 338, 265 ], [ 515, 244, 563, 265 ], [ 568, 244, 617, 265 ], [ 783, 244, 811, 265 ], [ 816, 244, 856, 265 ], [ 309, 262, 319, 282 ], [ 376, 262, 447, 282 ], [ 452, 262, 502, 282 ], [ 507, 262, 547, 282 ], [ 552, 262, 580, 282 ], [ 585, 262, 634, 282 ], [ 639, 262, 669, 282 ], [ 376, 279, 501, 300 ], [ 797, 262, 842, 282 ], [ 309, 298, 319, 318 ], [ 376, 298, 425, 318 ], [ 430, 298, 460, 318 ], [ 465, 298, 590, 318 ], [ 595, 298, 653, 318 ], [ 658, 298, 673, 318 ], [ 678, 298, 720, 318 ], [ 376, 315, 432, 335 ], [ 792, 298, 847, 318 ], [ 309, 333, 319, 354 ], [ 376, 333, 425, 354 ], [ 430, 333, 460, 354 ], [ 465, 333, 590, 354 ], [ 595, 333, 653, 354 ], [ 658, 333, 673, 354 ], [ 678, 333, 726, 354 ], [ 376, 351, 413, 371 ], [ 418, 351, 474, 371 ], [ 792, 333, 847, 354 ], [ 309, 387, 319, 407 ], [ 376, 369, 417, 390 ], [ 422, 369, 475, 390 ], [ 479, 369, 544, 390 ], [ 549, 369, 579, 390 ], [ 584, 369, 635, 390 ], [ 376, 387, 501, 407 ], [ 792, 369, 847, 390 ], [ 309, 423, 319, 443 ], [ 376, 405, 424, 425 ], [ 429, 405, 466, 425 ], [ 471, 405, 574, 425 ], [ 579, 405, 664, 425 ], [ 669, 405, 699, 425 ], [ 704, 405, 752, 425 ], [ 376, 423, 501, 443 ], [ 792, 405, 847, 425 ], [ 117, 510, 139, 538 ], [ 153, 510, 264, 538 ], [ 271, 510, 345, 538 ], [ 352, 510, 409, 538 ], [ 416, 510, 463, 538 ], [ 470, 510, 546, 538 ], [ 553, 510, 601, 538 ], [ 608, 510, 809, 538 ], [ 117, 569, 215, 589 ], [ 258, 569, 293, 589 ], [ 298, 569, 337, 589 ], [ 342, 569, 408, 589 ], [ 413, 569, 505, 589 ], [ 510, 569, 554, 589 ], [ 558, 569, 582, 589 ], [ 587, 569, 706, 589 ], [ 711, 569, 728, 589 ], [ 732, 569, 780, 589 ], [ 785, 569, 820, 589 ], [ 825, 569, 853, 589 ], [ 258, 586, 322, 606 ], [ 327, 586, 381, 606 ], [ 386, 586, 401, 606 ], [ 406, 586, 475, 606 ], [ 479, 586, 586, 606 ], [ 591, 586, 647, 606 ], [ 652, 586, 726, 606 ], [ 272, 622, 349, 642 ], [ 354, 622, 370, 642 ], [ 375, 622, 393, 642 ], [ 398, 622, 446, 642 ], [ 451, 622, 478, 642 ], [ 272, 641, 379, 661 ], [ 384, 641, 428, 661 ], [ 432, 641, 531, 661 ], [ 272, 659, 379, 679 ], [ 384, 659, 451, 679 ], [ 272, 678, 318, 698 ], [ 323, 678, 379, 698 ], [ 384, 678, 423, 698 ], [ 428, 678, 481, 698 ], [ 486, 678, 502, 698 ], [ 507, 678, 516, 698 ], [ 521, 678, 627, 698 ], [ 632, 678, 676, 698 ], [ 272, 696, 383, 716 ], [ 388, 696, 460, 716 ], [ 465, 696, 632, 716 ], [ 637, 696, 685, 716 ], [ 689, 696, 717, 716 ], [ 722, 696, 790, 716 ], [ 272, 715, 324, 735 ], [ 329, 715, 364, 735 ], [ 369, 715, 410, 735 ], [ 414, 715, 448, 735 ], [ 453, 715, 483, 735 ], [ 488, 715, 523, 735 ], [ 528, 715, 566, 735 ], [ 571, 715, 587, 735 ], [ 592, 715, 667, 735 ], [ 272, 733, 324, 753 ], [ 329, 733, 364, 753 ], [ 369, 733, 404, 753 ], [ 409, 733, 429, 753 ], [ 434, 733, 487, 753 ], [ 492, 733, 525, 753 ], [ 529, 733, 546, 753 ], [ 551, 733, 626, 753 ], [ 272, 752, 320, 772 ], [ 325, 752, 353, 772 ], [ 357, 752, 476, 772 ], [ 481, 752, 496, 772 ], [ 501, 752, 554, 772 ], [ 558, 752, 620, 772 ], [ 625, 752, 679, 772 ], [ 684, 752, 769, 772 ], [ 272, 769, 378, 789 ], [ 383, 769, 459, 789 ], [ 272, 788, 379, 808 ], [ 384, 788, 435, 808 ], [ 440, 788, 500, 808 ], [ 505, 788, 560, 808 ], [ 565, 788, 639, 808 ], [ 644, 788, 702, 808 ], [ 707, 788, 763, 808 ], [ 272, 806, 341, 826 ], [ 346, 806, 453, 826 ], [ 458, 806, 509, 826 ], [ 514, 806, 568, 826 ], [ 272, 825, 379, 845 ], [ 384, 825, 435, 845 ], [ 440, 825, 475, 845 ], [ 480, 825, 542, 845 ], [ 547, 825, 620, 845 ], [ 625, 825, 676, 845 ], [ 681, 825, 740, 845 ], [ 745, 825, 773, 845 ], [ 272, 843, 319, 863 ], [ 324, 843, 362, 863 ], [ 367, 843, 390, 863 ], [ 395, 843, 460, 863 ], [ 465, 843, 534, 863 ], [ 539, 843, 553, 863 ], [ 557, 843, 637, 863 ], [ 642, 843, 696, 863 ], [ 701, 843, 730, 863 ], [ 735, 843, 783, 863 ], [ 787, 843, 824, 863 ], [ 272, 860, 329, 881 ] ]
Name: ____________________________ Title: ___________________ k. MAP-D or When writing a letter to obtain information from the Veteran regarding a VBMS Letters PTSD claim based on personal trauma, use MAP-D or VBMS and select the to Use to appropriate personal trauma special issue on the CONTENTIONS screen Obtain Information MST (claims for any conditions, mental or physical (including PTSD), From the resulting from MST) Veteran in PTSD Personal Trauma (claims for PTSD resulting from a non-sexual – Claims Based personal trauma), or on Personal Non-PTSD Personal Trauma (claims for any condition, mental or physical Trauma (other than PTSD), resulting from a non-sexual personal trauma). Enclose to solicit details of the claim. VA Form 21-0781a Letters used by ROs to solicit details concerning a combat Important: stressful incident are inappropriate for PTSD claims based on personal trauma. l. Process for Review the claim and all attached documents. Request STRs and the entire Obtaining personnel folder from the appropriate records custodian, if necessary. Service Records in Claims VSRs must work closely with Rating Veterans Service Representatives Note: Based on (RVSRs) when developing personal trauma cases. Personal Trauma Because a personal trauma is an extremely personal and sensitive issue m. Problems Associated With many incidents of personal trauma are not officially reported, and Development in the victims of this type of in-service trauma may find it difficult to produce Claims Based evidence to support the occurrence of the stressor. on Personal Trauma It is often necessary to seek alternative evidence that may demonstrate the presence of markers. The term refers to evidentiary signs, events, or marker circumstances indicating a that the claimed stressor occurred such possibility as reports, lay statements, or behavioral changes that may be associated with the approximate timeframe of the claimed stressor. For information on References: alternative sources for information, see M21-1, Part IV, Subpart ii, 1.D.5.n, and behavioral changes in claims based on personal trauma, see M21-1, Part III, Subpart iv, 4.H.4.d.
Name: ____________________________ Title: ___________________ k. MAP-D or VBMS Letters to Use to Obtain Information From the Veteran in Claims Based on Personal Trauma When writing a letter to obtain information from the Veteran regarding a PTSD claim based on personal trauma, use MAP-D or VBMS and select the appropriate personal trauma special issue on the CONTENTIONS screen MST (claims for any conditions, mental or physical (including PTSD), resulting from MST) PTSD – Personal Trauma (claims for PTSD resulting from a non-sexual personal trauma), or Non-PTSD Personal Trauma (claims for any condition, mental or physical (other than PTSD), resulting from a non-sexual personal trauma). Enclose VA Form 21-0781a to solicit details of the claim. Important: Letters used by ROs to solicit details concerning a combat stressful incident are inappropriate for PTSD claims based on personal trauma. l. Process for Obtaining Service Records in Claims Based on Personal Trauma Review the claim and all attached documents. Request STRs and the entire personnel folder from the appropriate records custodian, if necessary. Note: VSRs must work closely with Rating Veterans Service Representatives (RVSRs) when developing personal trauma cases. m. Problems Associated With Development in Claims Based on Personal Trauma Because a personal trauma is an extremely personal and sensitive issue many incidents of personal trauma are not officially reported, and the victims of this type of in-service trauma may find it difficult to produce evidence to support the occurrence of the stressor. It is often necessary to seek alternative evidence that may demonstrate the presence of markers. The term marker refers to evidentiary signs, events, or circumstances indicating a possibility that the claimed stressor occurred such as reports, lay statements, or behavioral changes that may be associated with the approximate timeframe of the claimed stressor. References: For information on alternative sources for information, see M21-1, Part IV, Subpart ii, 1.D.5.n, and behavioral changes in claims based on personal trauma, see M21-1, Part III, Subpart iv, 4.H.4.d.
0.780555
[ 0, 1, 2, 3, 4, 5, 6, 19, 20, 34, 35, 36, 46, 47, 58, 59, 63, 64, 76, 77, 81, 82, 93, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 65, 75, 66, 67, 68, 69, 70, 71, 72, 73, 74, 78, 79, 80, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 110, 111, 112, 104, 105, 106, 107, 108, 109, 123, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 150, 160, 161, 162, 163, 174, 175, 182, 183, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 151, 152, 153, 154, 155, 156, 157, 158, 159, 173, 164, 165, 166, 167, 168, 169, 170, 171, 172, 176, 177, 178, 179, 180, 181, 195, 196, 197, 198, 209, 210, 225, 226, 235, 236, 237, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 227, 228, 229, 230, 231, 232, 233, 234, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 261, 255, 256, 257, 258, 259, 260, 262, 263, 264, 271, 265, 266, 267, 268, 269, 270, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 294, 291, 292, 293, 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 ]
M21-1MRIV_ii_1_SecD.docx
task-1431-774
33
[ [ 270, 80, 325, 101 ], [ 330, 80, 605, 101 ], [ 615, 80, 661, 101 ], [ 665, 80, 852, 101 ], [ 117, 150, 132, 170 ], [ 141, 150, 201, 170 ], [ 205, 150, 222, 170 ], [ 258, 150, 305, 170 ], [ 310, 150, 367, 170 ], [ 372, 150, 380, 170 ], [ 385, 150, 426, 170 ], [ 430, 150, 446, 170 ], [ 451, 150, 500, 170 ], [ 504, 150, 597, 170 ], [ 602, 150, 640, 170 ], [ 645, 150, 669, 170 ], [ 674, 150, 736, 170 ], [ 741, 150, 816, 170 ], [ 821, 150, 829, 170 ], [ 117, 166, 169, 186 ], [ 174, 166, 229, 186 ], [ 258, 167, 306, 187 ], [ 311, 167, 355, 187 ], [ 360, 167, 404, 187 ], [ 409, 167, 429, 187 ], [ 434, 167, 500, 187 ], [ 505, 167, 564, 187 ], [ 569, 167, 595, 187 ], [ 600, 167, 664, 187 ], [ 668, 167, 685, 187 ], [ 690, 167, 745, 187 ], [ 750, 167, 778, 187 ], [ 783, 167, 828, 187 ], [ 833, 167, 857, 187 ], [ 117, 182, 132, 202 ], [ 137, 182, 165, 202 ], [ 169, 182, 184, 202 ], [ 258, 185, 347, 205 ], [ 352, 185, 419, 205 ], [ 424, 185, 478, 205 ], [ 483, 185, 538, 205 ], [ 543, 185, 582, 205 ], [ 587, 185, 606, 205 ], [ 611, 185, 635, 205 ], [ 640, 185, 777, 205 ], [ 782, 185, 832, 205 ], [ 117, 198, 171, 218 ], [ 117, 214, 211, 234 ], [ 272, 221, 313, 241 ], [ 318, 221, 375, 241 ], [ 380, 221, 403, 241 ], [ 408, 221, 437, 241 ], [ 441, 221, 528, 241 ], [ 533, 221, 586, 241 ], [ 591, 221, 608, 241 ], [ 612, 221, 678, 241 ], [ 683, 221, 763, 241 ], [ 768, 221, 827, 241 ], [ 117, 230, 160, 250 ], [ 165, 230, 189, 250 ], [ 272, 238, 341, 258 ], [ 346, 238, 384, 258 ], [ 389, 238, 436, 258 ], [ 117, 246, 179, 265 ], [ 184, 246, 199, 265 ], [ 272, 257, 321, 277 ], [ 340, 257, 408, 277 ], [ 413, 257, 474, 277 ], [ 478, 257, 536, 277 ], [ 541, 257, 564, 277 ], [ 569, 257, 617, 277 ], [ 622, 257, 690, 277 ], [ 695, 257, 733, 277 ], [ 738, 257, 747, 277 ], [ 752, 257, 838, 277 ], [ 325, 259, 335, 276 ], [ 117, 262, 171, 282 ], [ 176, 262, 222, 282 ], [ 272, 274, 339, 294 ], [ 344, 274, 410, 294 ], [ 414, 274, 431, 294 ], [ 117, 278, 136, 297 ], [ 141, 278, 208, 297 ], [ 272, 293, 361, 313 ], [ 366, 293, 433, 313 ], [ 438, 293, 499, 313 ], [ 504, 293, 561, 313 ], [ 566, 293, 589, 313 ], [ 594, 293, 623, 313 ], [ 627, 293, 707, 313 ], [ 712, 293, 765, 313 ], [ 770, 293, 786, 313 ], [ 791, 293, 856, 313 ], [ 117, 294, 180, 314 ], [ 272, 310, 319, 330 ], [ 324, 310, 358, 330 ], [ 363, 310, 422, 330 ], [ 427, 310, 496, 330 ], [ 501, 310, 539, 330 ], [ 544, 310, 552, 330 ], [ 557, 310, 643, 330 ], [ 648, 310, 715, 330 ], [ 720, 310, 785, 330 ], [ 258, 345, 320, 365 ], [ 483, 345, 498, 365 ], [ 503, 345, 551, 365 ], [ 556, 345, 607, 365 ], [ 612, 345, 628, 365 ], [ 633, 345, 657, 365 ], [ 662, 345, 710, 365 ], [ 325, 346, 349, 365 ], [ 354, 346, 398, 365 ], [ 403, 346, 478, 365 ], [ 356, 380, 410, 400 ], [ 414, 380, 451, 400 ], [ 456, 380, 475, 400 ], [ 480, 380, 515, 400 ], [ 520, 380, 535, 400 ], [ 540, 380, 588, 400 ], [ 593, 380, 644, 400 ], [ 649, 380, 736, 400 ], [ 741, 380, 750, 400 ], [ 755, 380, 812, 400 ], [ 258, 381, 346, 400 ], [ 258, 397, 324, 417 ], [ 329, 397, 392, 417 ], [ 397, 397, 421, 417 ], [ 425, 397, 530, 417 ], [ 535, 397, 558, 417 ], [ 563, 397, 611, 417 ], [ 616, 397, 667, 417 ], [ 672, 397, 716, 417 ], [ 721, 397, 741, 417 ], [ 746, 397, 812, 417 ], [ 258, 414, 318, 435 ], [ 117, 467, 127, 487 ], [ 136, 467, 194, 487 ], [ 198, 467, 221, 487 ], [ 258, 467, 318, 487 ], [ 323, 467, 347, 487 ], [ 352, 467, 395, 487 ], [ 400, 467, 429, 487 ], [ 434, 467, 453, 487 ], [ 458, 467, 523, 487 ], [ 528, 467, 618, 487 ], [ 628, 467, 691, 487 ], [ 696, 467, 740, 487 ], [ 745, 467, 773, 487 ], [ 778, 467, 802, 487 ], [ 807, 467, 852, 487 ], [ 117, 483, 195, 502 ], [ 258, 484, 334, 504 ], [ 339, 484, 386, 504 ], [ 391, 484, 429, 504 ], [ 434, 484, 458, 504 ], [ 463, 484, 552, 504 ], [ 557, 484, 615, 504 ], [ 620, 484, 700, 504 ], [ 705, 484, 717, 504 ], [ 722, 484, 803, 504 ], [ 117, 499, 173, 519 ], [ 178, 499, 241, 519 ], [ 117, 515, 132, 534 ], [ 137, 515, 191, 534 ], [ 312, 519, 358, 539 ], [ 363, 519, 401, 539 ], [ 406, 519, 446, 539 ], [ 451, 519, 506, 539 ], [ 511, 519, 546, 539 ], [ 551, 519, 603, 539 ], [ 608, 519, 678, 539 ], [ 683, 519, 741, 539 ], [ 746, 519, 871, 539 ], [ 258, 520, 302, 539 ], [ 117, 531, 163, 551 ], [ 168, 531, 187, 551 ], [ 258, 536, 330, 557 ], [ 335, 536, 378, 557 ], [ 383, 536, 470, 557 ], [ 474, 536, 541, 557 ], [ 546, 536, 600, 557 ], [ 605, 536, 652, 557 ], [ 117, 547, 184, 566 ], [ 117, 563, 180, 582 ], [ 258, 613, 323, 633 ], [ 329, 613, 337, 633 ], [ 342, 613, 409, 633 ], [ 414, 613, 468, 633 ], [ 473, 613, 486, 633 ], [ 491, 613, 509, 633 ], [ 514, 613, 593, 633 ], [ 597, 613, 664, 633 ], [ 669, 613, 697, 633 ], [ 702, 613, 771, 633 ], [ 776, 613, 815, 633 ], [ 117, 614, 137, 633 ], [ 146, 614, 219, 633 ], [ 117, 630, 199, 649 ], [ 117, 646, 156, 665 ], [ 272, 649, 316, 669 ], [ 321, 649, 392, 669 ], [ 397, 649, 413, 669 ], [ 418, 649, 484, 669 ], [ 489, 649, 544, 669 ], [ 548, 649, 572, 669 ], [ 577, 649, 602, 669 ], [ 607, 649, 679, 669 ], [ 684, 649, 754, 669 ], [ 759, 649, 788, 669 ], [ 117, 662, 218, 681 ], [ 223, 662, 238, 681 ], [ 272, 668, 296, 688 ], [ 301, 668, 359, 688 ], [ 364, 668, 380, 688 ], [ 385, 668, 414, 688 ], [ 419, 668, 452, 688 ], [ 457, 668, 474, 688 ], [ 478, 668, 556, 688 ], [ 561, 668, 615, 688 ], [ 620, 668, 654, 688 ], [ 659, 668, 690, 688 ], [ 695, 668, 706, 688 ], [ 711, 668, 774, 688 ], [ 779, 668, 795, 688 ], [ 799, 668, 862, 688 ], [ 117, 678, 171, 697 ], [ 176, 678, 222, 697 ], [ 272, 685, 342, 705 ], [ 347, 685, 362, 705 ], [ 367, 685, 426, 705 ], [ 431, 685, 455, 705 ], [ 460, 685, 546, 705 ], [ 551, 685, 567, 705 ], [ 572, 685, 596, 705 ], [ 601, 685, 666, 705 ], [ 117, 694, 136, 713 ], [ 141, 694, 208, 713 ], [ 117, 710, 180, 729 ], [ 258, 720, 270, 740 ], [ 275, 720, 288, 740 ], [ 293, 720, 333, 740 ], [ 338, 720, 415, 740 ], [ 419, 720, 435, 740 ], [ 440, 720, 474, 740 ], [ 479, 720, 562, 740 ], [ 567, 720, 637, 740 ], [ 642, 720, 671, 740 ], [ 676, 720, 710, 740 ], [ 715, 720, 810, 740 ], [ 815, 720, 839, 740 ], [ 258, 737, 327, 758 ], [ 332, 737, 348, 758 ], [ 353, 737, 421, 758 ], [ 431, 737, 461, 758 ], [ 466, 737, 502, 758 ], [ 571, 737, 615, 758 ], [ 620, 737, 635, 758 ], [ 640, 737, 729, 758 ], [ 733, 737, 779, 758 ], [ 784, 737, 839, 758 ], [ 844, 737, 860, 758 ], [ 507, 739, 566, 758 ], [ 258, 755, 369, 775 ], [ 374, 755, 453, 775 ], [ 458, 755, 466, 775 ], [ 557, 755, 586, 775 ], [ 591, 755, 615, 775 ], [ 620, 755, 682, 775 ], [ 687, 755, 747, 775 ], [ 752, 755, 820, 775 ], [ 825, 755, 861, 775 ], [ 471, 756, 552, 775 ], [ 258, 772, 275, 793 ], [ 280, 772, 339, 793 ], [ 344, 772, 368, 793 ], [ 373, 772, 460, 793 ], [ 465, 772, 482, 793 ], [ 486, 772, 569, 793 ], [ 574, 772, 637, 793 ], [ 642, 772, 672, 793 ], [ 676, 772, 710, 793 ], [ 715, 772, 734, 793 ], [ 738, 772, 819, 793 ], [ 824, 772, 859, 793 ], [ 258, 790, 282, 810 ], [ 287, 790, 385, 810 ], [ 390, 790, 471, 810 ], [ 476, 790, 492, 810 ], [ 497, 790, 521, 810 ], [ 526, 790, 588, 810 ], [ 593, 790, 657, 810 ], [ 363, 825, 390, 845 ], [ 395, 825, 488, 845 ], [ 493, 825, 512, 845 ], [ 258, 826, 353, 845 ], [ 271, 843, 354, 863 ], [ 359, 843, 418, 863 ], [ 423, 843, 446, 863 ], [ 450, 843, 548, 863 ], [ 553, 843, 578, 863 ], [ 583, 843, 641, 863 ], [ 646, 843, 677, 863 ], [ 683, 843, 708, 863 ], [ 713, 843, 774, 863 ], [ 779, 843, 795, 863 ], [ 799, 843, 863, 863 ], [ 271, 860, 300, 881 ], [ 271, 879, 354, 899 ], [ 359, 879, 422, 899 ], [ 427, 879, 442, 899 ], [ 447, 879, 499, 899 ], [ 504, 879, 548, 899 ], [ 553, 879, 573, 899 ], [ 577, 879, 644, 899 ], [ 649, 879, 708, 899 ], [ 713, 879, 738, 899 ], [ 743, 879, 801, 899 ], [ 806, 879, 838, 899 ], [ 843, 879, 867, 899 ], [ 271, 896, 332, 917 ], [ 337, 896, 357, 917 ], [ 362, 896, 426, 917 ] ]
[ [ 270, 80, 325, 101 ], [ 330, 80, 605, 101 ], [ 615, 80, 661, 101 ], [ 665, 80, 852, 101 ], [ 117, 150, 132, 170 ], [ 141, 150, 201, 170 ], [ 205, 150, 222, 170 ], [ 117, 166, 169, 186 ], [ 174, 166, 229, 186 ], [ 117, 182, 132, 202 ], [ 137, 182, 165, 202 ], [ 169, 182, 184, 202 ], [ 117, 198, 171, 218 ], [ 117, 214, 211, 234 ], [ 117, 230, 160, 250 ], [ 165, 230, 189, 250 ], [ 117, 246, 179, 265 ], [ 184, 246, 199, 265 ], [ 117, 262, 171, 282 ], [ 176, 262, 222, 282 ], [ 117, 278, 136, 297 ], [ 141, 278, 208, 297 ], [ 117, 294, 180, 314 ], [ 258, 150, 305, 170 ], [ 310, 150, 367, 170 ], [ 372, 150, 380, 170 ], [ 385, 150, 426, 170 ], [ 430, 150, 446, 170 ], [ 451, 150, 500, 170 ], [ 504, 150, 597, 170 ], [ 602, 150, 640, 170 ], [ 645, 150, 669, 170 ], [ 674, 150, 736, 170 ], [ 741, 150, 816, 170 ], [ 821, 150, 829, 170 ], [ 258, 167, 306, 187 ], [ 311, 167, 355, 187 ], [ 360, 167, 404, 187 ], [ 409, 167, 429, 187 ], [ 434, 167, 500, 187 ], [ 505, 167, 564, 187 ], [ 569, 167, 595, 187 ], [ 600, 167, 664, 187 ], [ 668, 167, 685, 187 ], [ 690, 167, 745, 187 ], [ 750, 167, 778, 187 ], [ 783, 167, 828, 187 ], [ 833, 167, 857, 187 ], [ 258, 185, 347, 205 ], [ 352, 185, 419, 205 ], [ 424, 185, 478, 205 ], [ 483, 185, 538, 205 ], [ 543, 185, 582, 205 ], [ 587, 185, 606, 205 ], [ 611, 185, 635, 205 ], [ 640, 185, 777, 205 ], [ 782, 185, 832, 205 ], [ 272, 221, 313, 241 ], [ 318, 221, 375, 241 ], [ 380, 221, 403, 241 ], [ 408, 221, 437, 241 ], [ 441, 221, 528, 241 ], [ 533, 221, 586, 241 ], [ 591, 221, 608, 241 ], [ 612, 221, 678, 241 ], [ 683, 221, 763, 241 ], [ 768, 221, 827, 241 ], [ 272, 238, 341, 258 ], [ 346, 238, 384, 258 ], [ 389, 238, 436, 258 ], [ 272, 257, 321, 277 ], [ 325, 259, 335, 276 ], [ 340, 257, 408, 277 ], [ 413, 257, 474, 277 ], [ 478, 257, 536, 277 ], [ 541, 257, 564, 277 ], [ 569, 257, 617, 277 ], [ 622, 257, 690, 277 ], [ 695, 257, 733, 277 ], [ 738, 257, 747, 277 ], [ 752, 257, 838, 277 ], [ 272, 274, 339, 294 ], [ 344, 274, 410, 294 ], [ 414, 274, 431, 294 ], [ 272, 293, 361, 313 ], [ 366, 293, 433, 313 ], [ 438, 293, 499, 313 ], [ 504, 293, 561, 313 ], [ 566, 293, 589, 313 ], [ 594, 293, 623, 313 ], [ 627, 293, 707, 313 ], [ 712, 293, 765, 313 ], [ 770, 293, 786, 313 ], [ 791, 293, 856, 313 ], [ 272, 310, 319, 330 ], [ 324, 310, 358, 330 ], [ 363, 310, 422, 330 ], [ 427, 310, 496, 330 ], [ 501, 310, 539, 330 ], [ 544, 310, 552, 330 ], [ 557, 310, 643, 330 ], [ 648, 310, 715, 330 ], [ 720, 310, 785, 330 ], [ 258, 345, 320, 365 ], [ 325, 346, 349, 365 ], [ 354, 346, 398, 365 ], [ 403, 346, 478, 365 ], [ 483, 345, 498, 365 ], [ 503, 345, 551, 365 ], [ 556, 345, 607, 365 ], [ 612, 345, 628, 365 ], [ 633, 345, 657, 365 ], [ 662, 345, 710, 365 ], [ 258, 381, 346, 400 ], [ 356, 380, 410, 400 ], [ 414, 380, 451, 400 ], [ 456, 380, 475, 400 ], [ 480, 380, 515, 400 ], [ 520, 380, 535, 400 ], [ 540, 380, 588, 400 ], [ 593, 380, 644, 400 ], [ 649, 380, 736, 400 ], [ 741, 380, 750, 400 ], [ 755, 380, 812, 400 ], [ 258, 397, 324, 417 ], [ 329, 397, 392, 417 ], [ 397, 397, 421, 417 ], [ 425, 397, 530, 417 ], [ 535, 397, 558, 417 ], [ 563, 397, 611, 417 ], [ 616, 397, 667, 417 ], [ 672, 397, 716, 417 ], [ 721, 397, 741, 417 ], [ 746, 397, 812, 417 ], [ 258, 414, 318, 435 ], [ 117, 467, 127, 487 ], [ 136, 467, 194, 487 ], [ 198, 467, 221, 487 ], [ 117, 483, 195, 502 ], [ 117, 499, 173, 519 ], [ 178, 499, 241, 519 ], [ 117, 515, 132, 534 ], [ 137, 515, 191, 534 ], [ 117, 531, 163, 551 ], [ 168, 531, 187, 551 ], [ 117, 547, 184, 566 ], [ 117, 563, 180, 582 ], [ 258, 467, 318, 487 ], [ 323, 467, 347, 487 ], [ 352, 467, 395, 487 ], [ 400, 467, 429, 487 ], [ 434, 467, 453, 487 ], [ 458, 467, 523, 487 ], [ 528, 467, 618, 487 ], [ 628, 467, 691, 487 ], [ 696, 467, 740, 487 ], [ 745, 467, 773, 487 ], [ 778, 467, 802, 487 ], [ 807, 467, 852, 487 ], [ 258, 484, 334, 504 ], [ 339, 484, 386, 504 ], [ 391, 484, 429, 504 ], [ 434, 484, 458, 504 ], [ 463, 484, 552, 504 ], [ 557, 484, 615, 504 ], [ 620, 484, 700, 504 ], [ 705, 484, 717, 504 ], [ 722, 484, 803, 504 ], [ 258, 520, 302, 539 ], [ 312, 519, 358, 539 ], [ 363, 519, 401, 539 ], [ 406, 519, 446, 539 ], [ 451, 519, 506, 539 ], [ 511, 519, 546, 539 ], [ 551, 519, 603, 539 ], [ 608, 519, 678, 539 ], [ 683, 519, 741, 539 ], [ 746, 519, 871, 539 ], [ 258, 536, 330, 557 ], [ 335, 536, 378, 557 ], [ 383, 536, 470, 557 ], [ 474, 536, 541, 557 ], [ 546, 536, 600, 557 ], [ 605, 536, 652, 557 ], [ 117, 614, 137, 633 ], [ 146, 614, 219, 633 ], [ 117, 630, 199, 649 ], [ 117, 646, 156, 665 ], [ 117, 662, 218, 681 ], [ 223, 662, 238, 681 ], [ 117, 678, 171, 697 ], [ 176, 678, 222, 697 ], [ 117, 694, 136, 713 ], [ 141, 694, 208, 713 ], [ 117, 710, 180, 729 ], [ 258, 613, 323, 633 ], [ 329, 613, 337, 633 ], [ 342, 613, 409, 633 ], [ 414, 613, 468, 633 ], [ 473, 613, 486, 633 ], [ 491, 613, 509, 633 ], [ 514, 613, 593, 633 ], [ 597, 613, 664, 633 ], [ 669, 613, 697, 633 ], [ 702, 613, 771, 633 ], [ 776, 613, 815, 633 ], [ 272, 649, 316, 669 ], [ 321, 649, 392, 669 ], [ 397, 649, 413, 669 ], [ 418, 649, 484, 669 ], [ 489, 649, 544, 669 ], [ 548, 649, 572, 669 ], [ 577, 649, 602, 669 ], [ 607, 649, 679, 669 ], [ 684, 649, 754, 669 ], [ 759, 649, 788, 669 ], [ 272, 668, 296, 688 ], [ 301, 668, 359, 688 ], [ 364, 668, 380, 688 ], [ 385, 668, 414, 688 ], [ 419, 668, 452, 688 ], [ 457, 668, 474, 688 ], [ 478, 668, 556, 688 ], [ 561, 668, 615, 688 ], [ 620, 668, 654, 688 ], [ 659, 668, 690, 688 ], [ 695, 668, 706, 688 ], [ 711, 668, 774, 688 ], [ 779, 668, 795, 688 ], [ 799, 668, 862, 688 ], [ 272, 685, 342, 705 ], [ 347, 685, 362, 705 ], [ 367, 685, 426, 705 ], [ 431, 685, 455, 705 ], [ 460, 685, 546, 705 ], [ 551, 685, 567, 705 ], [ 572, 685, 596, 705 ], [ 601, 685, 666, 705 ], [ 258, 720, 270, 740 ], [ 275, 720, 288, 740 ], [ 293, 720, 333, 740 ], [ 338, 720, 415, 740 ], [ 419, 720, 435, 740 ], [ 440, 720, 474, 740 ], [ 479, 720, 562, 740 ], [ 567, 720, 637, 740 ], [ 642, 720, 671, 740 ], [ 676, 720, 710, 740 ], [ 715, 720, 810, 740 ], [ 815, 720, 839, 740 ], [ 258, 737, 327, 758 ], [ 332, 737, 348, 758 ], [ 353, 737, 421, 758 ], [ 431, 737, 461, 758 ], [ 466, 737, 502, 758 ], [ 507, 739, 566, 758 ], [ 571, 737, 615, 758 ], [ 620, 737, 635, 758 ], [ 640, 737, 729, 758 ], [ 733, 737, 779, 758 ], [ 784, 737, 839, 758 ], [ 844, 737, 860, 758 ], [ 258, 755, 369, 775 ], [ 374, 755, 453, 775 ], [ 458, 755, 466, 775 ], [ 471, 756, 552, 775 ], [ 557, 755, 586, 775 ], [ 591, 755, 615, 775 ], [ 620, 755, 682, 775 ], [ 687, 755, 747, 775 ], [ 752, 755, 820, 775 ], [ 825, 755, 861, 775 ], [ 258, 772, 275, 793 ], [ 280, 772, 339, 793 ], [ 344, 772, 368, 793 ], [ 373, 772, 460, 793 ], [ 465, 772, 482, 793 ], [ 486, 772, 569, 793 ], [ 574, 772, 637, 793 ], [ 642, 772, 672, 793 ], [ 676, 772, 710, 793 ], [ 715, 772, 734, 793 ], [ 738, 772, 819, 793 ], [ 824, 772, 859, 793 ], [ 258, 790, 282, 810 ], [ 287, 790, 385, 810 ], [ 390, 790, 471, 810 ], [ 476, 790, 492, 810 ], [ 497, 790, 521, 810 ], [ 526, 790, 588, 810 ], [ 593, 790, 657, 810 ], [ 258, 826, 353, 845 ], [ 363, 825, 390, 845 ], [ 395, 825, 488, 845 ], [ 493, 825, 512, 845 ], [ 271, 843, 354, 863 ], [ 359, 843, 418, 863 ], [ 423, 843, 446, 863 ], [ 450, 843, 548, 863 ], [ 553, 843, 578, 863 ], [ 583, 843, 641, 863 ], [ 646, 843, 677, 863 ], [ 683, 843, 708, 863 ], [ 713, 843, 774, 863 ], [ 779, 843, 795, 863 ], [ 799, 843, 863, 863 ], [ 271, 860, 300, 881 ], [ 271, 879, 354, 899 ], [ 359, 879, 422, 899 ], [ 427, 879, 442, 899 ], [ 447, 879, 499, 899 ], [ 504, 879, 548, 899 ], [ 553, 879, 573, 899 ], [ 577, 879, 644, 899 ], [ 649, 879, 708, 899 ], [ 713, 879, 738, 899 ], [ 743, 879, 801, 899 ], [ 806, 879, 838, 899 ], [ 843, 879, 867, 899 ], [ 271, 896, 332, 917 ], [ 337, 896, 357, 917 ], [ 362, 896, 426, 917 ] ]
Once the report of the examination, completed 6 to 12 months following j. Expediting Reevaluation of separation, is received by the rating activity, reevaluation of the SC the SC disability(ies) should be expedited. Disability(ies) in A Veteran who, without good cause, fails to report for the VA Note: Prestabilization examination scheduled in connection with a prestabilization rating under is Ratings subject to adjustment of benefits under For more information on References: a to report for an examination, see M21-1, Part IV, Veteran’s failure Subpart ii, 3.B, and denials when a Veteran fails to report for an examination, see M21-1Part III, Subpart v, 2.A.6. In some cases, VA assigns a 50 or 100 percent prestabilization rating for one k. Handling Prestabilization or more, but not all, of the same disabilities for which the Veteran received Ratings When severance pay. Severance Pay Is Awarded In such cases, assign separate evaluations for the disabilities for which severance pay was awarded which will assist authorization activity in processing an award. The provisions of operate similarly to prestabilization ratings. They both l. Handling Certain Mental state that qualifying significant disabilities that exist at service discharge will Disorders That be evaluated at the 50 percent level or higher. Cause Discharge However, under From Service the only covered condition is a mental disorder that develops in service as a result of a highly stressful event, and is significant enough to cause release from active service, and the evaluations are assigned under the regular rating schedule. Where a qualifying mental disorder is at issue consider whether the schedular rating available under makes a pre-stabilization rating under inappropriate. For more information on evaluations in cases of service discharge Reference: from mental disorders caused by traumatic stress, see , and M21-1, Part III, Subpart iv, 4.H.1.h.
j. Expediting Reevaluation of the SC Disability(ies) in Prestabilization Ratings Once the report of the examination, completed 6 to 12 months following separation, is received by the rating activity, reevaluation of the SC disability(ies) should be expedited. Note: A Veteran who, without good cause, fails to report for the VA examination scheduled in connection with a prestabilization rating under is subject to adjustment of benefits under References: For more information on a Veteran’s failure to report for an examination, see M21-1, Part IV, Subpart ii, 3.B, and denials when a Veteran fails to report for an examination, see M21-1Part III, Subpart v, 2.A.6. k. Handling Prestabilization Ratings When Severance Pay Is Awarded In some cases, VA assigns a 50 or 100 percent prestabilization rating for one or more, but not all, of the same disabilities for which the Veteran received severance pay. In such cases, assign separate evaluations for the disabilities for which severance pay was awarded which will assist authorization activity in processing an award. l. Handling Certain Mental Disorders That Cause Discharge From Service The provisions of operate similarly to prestabilization ratings. They both state that qualifying significant disabilities that exist at service discharge will be evaluated at the 50 percent level or higher. However, under the only covered condition is a mental disorder that develops in service as a result of a highly stressful event, and is significant enough to cause release from active service, and the evaluations are assigned under the regular rating schedule. Where a qualifying mental disorder is at issue consider whether the schedular rating available under makes a pre-stabilization rating under inappropriate. Reference: For more information on evaluations in cases of service discharge from mental disorders caused by traumatic stress, see , and M21-1, Part III, Subpart iv, 4.H.1.h.
0.839152
[ 12, 13, 14, 15, 27, 28, 33, 34, 48, 59, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 31, 32, 47, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 62, 63, 64, 65, 70, 66, 67, 68, 69, 71, 81, 82, 72, 73, 74, 75, 76, 77, 78, 79, 80, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 117, 118, 119, 134, 135, 138, 139, 140, 141, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 136, 137, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 176, 177, 178, 179, 191, 192, 202, 203, 206, 207, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 193, 194, 195, 196, 197, 198, 199, 200, 201, 204, 205, 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, 279, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295 ]
M21-1MRIV_ii_2_secJ.docx
task-1431-779
3
[ [ 258, 70, 300, 90 ], [ 304, 70, 328, 90 ], [ 333, 70, 380, 90 ], [ 385, 70, 401, 90 ], [ 406, 70, 430, 90 ], [ 435, 70, 537, 90 ], [ 542, 70, 624, 90 ], [ 629, 70, 638, 90 ], [ 643, 70, 659, 90 ], [ 664, 70, 683, 90 ], [ 688, 70, 746, 90 ], [ 751, 70, 827, 90 ], [ 117, 71, 128, 90 ], [ 137, 71, 221, 90 ], [ 117, 86, 218, 106 ], [ 223, 86, 237, 106 ], [ 258, 87, 344, 108 ], [ 349, 87, 362, 108 ], [ 367, 87, 433, 108 ], [ 438, 87, 458, 108 ], [ 463, 87, 486, 108 ], [ 491, 87, 537, 108 ], [ 542, 87, 605, 108 ], [ 611, 87, 708, 108 ], [ 713, 87, 729, 108 ], [ 734, 87, 758, 108 ], [ 763, 87, 787, 108 ], [ 117, 103, 141, 122 ], [ 146, 103, 169, 122 ], [ 258, 105, 366, 125 ], [ 371, 105, 423, 125 ], [ 428, 105, 447, 125 ], [ 452, 105, 533, 125 ], [ 117, 118, 223, 138 ], [ 117, 135, 132, 154 ], [ 312, 140, 326, 160 ], [ 331, 140, 393, 160 ], [ 398, 140, 436, 160 ], [ 441, 140, 501, 160 ], [ 506, 140, 545, 160 ], [ 550, 140, 598, 160 ], [ 603, 140, 637, 160 ], [ 642, 140, 657, 160 ], [ 662, 140, 709, 160 ], [ 714, 140, 737, 160 ], [ 742, 140, 766, 160 ], [ 771, 140, 799, 160 ], [ 258, 141, 302, 160 ], [ 117, 150, 238, 170 ], [ 258, 157, 355, 177 ], [ 360, 157, 439, 177 ], [ 444, 157, 459, 177 ], [ 464, 157, 550, 177 ], [ 555, 157, 589, 177 ], [ 594, 157, 603, 177 ], [ 608, 157, 729, 177 ], [ 734, 157, 780, 177 ], [ 785, 157, 829, 177 ], [ 834, 157, 847, 177 ], [ 117, 166, 176, 186 ], [ 258, 174, 314, 195 ], [ 319, 174, 334, 195 ], [ 339, 174, 425, 195 ], [ 430, 174, 446, 195 ], [ 451, 174, 513, 195 ], [ 518, 174, 563, 195 ], [ 363, 209, 390, 230 ], [ 395, 209, 435, 230 ], [ 440, 209, 533, 230 ], [ 538, 209, 557, 230 ], [ 258, 211, 353, 230 ], [ 272, 228, 281, 248 ], [ 423, 228, 438, 248 ], [ 443, 228, 490, 248 ], [ 495, 228, 518, 248 ], [ 523, 228, 541, 248 ], [ 546, 228, 648, 248 ], [ 653, 228, 678, 248 ], [ 683, 228, 741, 248 ], [ 746, 228, 778, 248 ], [ 783, 228, 808, 248 ], [ 286, 230, 362, 247 ], [ 367, 230, 418, 247 ], [ 272, 245, 333, 265 ], [ 338, 245, 354, 265 ], [ 359, 245, 392, 265 ], [ 397, 245, 425, 265 ], [ 272, 264, 328, 284 ], [ 333, 264, 375, 284 ], [ 380, 264, 389, 284 ], [ 394, 264, 456, 284 ], [ 461, 264, 495, 284 ], [ 500, 264, 515, 284 ], [ 520, 264, 566, 284 ], [ 571, 264, 594, 284 ], [ 599, 264, 617, 284 ], [ 623, 264, 724, 284 ], [ 729, 264, 754, 284 ], [ 759, 264, 844, 284 ], [ 272, 281, 297, 301 ], [ 302, 281, 363, 301 ], [ 368, 281, 382, 301 ], [ 387, 281, 436, 301 ], [ 258, 333, 274, 354 ], [ 279, 333, 321, 354 ], [ 326, 333, 372, 354 ], [ 377, 333, 405, 354 ], [ 410, 333, 467, 354 ], [ 472, 333, 481, 354 ], [ 485, 333, 505, 354 ], [ 510, 333, 526, 354 ], [ 531, 333, 561, 354 ], [ 565, 333, 623, 354 ], [ 628, 333, 749, 354 ], [ 754, 333, 800, 354 ], [ 805, 333, 827, 354 ], [ 832, 333, 861, 354 ], [ 117, 334, 132, 353 ], [ 141, 334, 213, 353 ], [ 117, 350, 238, 369 ], [ 258, 351, 275, 371 ], [ 280, 351, 325, 371 ], [ 330, 351, 355, 371 ], [ 360, 351, 385, 371 ], [ 390, 351, 414, 371 ], [ 419, 351, 435, 371 ], [ 440, 351, 464, 371 ], [ 469, 351, 509, 371 ], [ 514, 351, 599, 371 ], [ 604, 351, 627, 371 ], [ 632, 351, 680, 371 ], [ 685, 351, 709, 371 ], [ 714, 351, 775, 371 ], [ 780, 351, 847, 371 ], [ 117, 366, 176, 385 ], [ 181, 366, 227, 385 ], [ 258, 368, 335, 389 ], [ 340, 368, 374, 389 ], [ 117, 382, 195, 401 ], [ 199, 382, 229, 401 ], [ 117, 398, 131, 417 ], [ 136, 398, 207, 417 ], [ 258, 403, 274, 423 ], [ 279, 403, 315, 423 ], [ 320, 403, 367, 423 ], [ 372, 403, 421, 423 ], [ 425, 403, 490, 423 ], [ 495, 403, 584, 423 ], [ 589, 403, 612, 423 ], [ 616, 403, 641, 423 ], [ 646, 403, 731, 423 ], [ 736, 403, 759, 423 ], [ 763, 403, 811, 423 ], [ 258, 421, 335, 441 ], [ 340, 421, 369, 441 ], [ 374, 421, 404, 441 ], [ 409, 421, 475, 441 ], [ 480, 421, 528, 441 ], [ 533, 421, 564, 441 ], [ 569, 421, 611, 441 ], [ 616, 421, 720, 441 ], [ 724, 421, 783, 441 ], [ 788, 421, 803, 441 ], [ 258, 438, 342, 458 ], [ 347, 438, 365, 458 ], [ 371, 438, 423, 458 ], [ 258, 490, 289, 510 ], [ 294, 490, 375, 510 ], [ 380, 490, 397, 510 ], [ 406, 490, 464, 510 ], [ 469, 490, 539, 510 ], [ 544, 490, 559, 510 ], [ 569, 490, 690, 510 ], [ 695, 490, 753, 510 ], [ 762, 490, 803, 510 ], [ 808, 490, 843, 510 ], [ 117, 491, 127, 510 ], [ 136, 491, 208, 510 ], [ 117, 507, 176, 526 ], [ 181, 507, 235, 526 ], [ 258, 508, 294, 528 ], [ 299, 508, 329, 528 ], [ 334, 508, 414, 528 ], [ 419, 508, 502, 528 ], [ 507, 508, 592, 528 ], [ 597, 508, 626, 528 ], [ 631, 508, 668, 528 ], [ 673, 508, 687, 528 ], [ 692, 508, 747, 528 ], [ 752, 508, 827, 528 ], [ 832, 508, 863, 528 ], [ 117, 523, 192, 542 ], [ 197, 523, 234, 542 ], [ 258, 525, 277, 545 ], [ 282, 525, 357, 545 ], [ 362, 525, 376, 545 ], [ 381, 525, 405, 545 ], [ 410, 525, 429, 545 ], [ 434, 525, 492, 545 ], [ 497, 525, 535, 545 ], [ 540, 525, 556, 545 ], [ 561, 525, 616, 545 ], [ 117, 539, 164, 558 ], [ 117, 555, 194, 574 ], [ 258, 560, 335, 580 ], [ 340, 560, 385, 580 ], [ 117, 571, 160, 590 ], [ 165, 571, 221, 590 ], [ 272, 596, 296, 616 ], [ 301, 596, 336, 616 ], [ 341, 596, 403, 616 ], [ 408, 596, 482, 616 ], [ 487, 596, 500, 616 ], [ 505, 596, 514, 616 ], [ 519, 596, 572, 616 ], [ 577, 596, 641, 616 ], [ 646, 596, 675, 616 ], [ 288, 614, 357, 635 ], [ 362, 614, 378, 635 ], [ 383, 614, 438, 635 ], [ 443, 614, 459, 635 ], [ 464, 614, 473, 635 ], [ 478, 614, 521, 635 ], [ 526, 614, 543, 635 ], [ 547, 614, 556, 635 ], [ 561, 614, 611, 635 ], [ 616, 614, 681, 635 ], [ 686, 614, 733, 635 ], [ 738, 614, 767, 635 ], [ 288, 633, 301, 653 ], [ 306, 633, 388, 653 ], [ 393, 633, 451, 653 ], [ 456, 633, 471, 653 ], [ 476, 633, 520, 653 ], [ 524, 633, 579, 653 ], [ 584, 633, 622, 653 ], [ 627, 633, 674, 653 ], [ 679, 633, 739, 653 ], [ 744, 634, 774, 654 ], [ 272, 652, 296, 672 ], [ 301, 652, 390, 672 ], [ 395, 652, 419, 672 ], [ 424, 652, 492, 672 ], [ 497, 652, 541, 672 ], [ 546, 652, 570, 672 ], [ 575, 652, 631, 672 ], [ 636, 652, 682, 672 ], [ 686, 652, 760, 672 ], [ 258, 686, 311, 706 ], [ 315, 686, 324, 706 ], [ 329, 686, 410, 706 ], [ 414, 686, 468, 706 ], [ 473, 686, 537, 706 ], [ 542, 686, 555, 706 ], [ 560, 686, 574, 706 ], [ 579, 686, 618, 706 ], [ 623, 686, 690, 706 ], [ 694, 686, 758, 706 ], [ 762, 686, 787, 706 ], [ 791, 686, 867, 706 ], [ 258, 704, 304, 724 ], [ 309, 704, 380, 724 ], [ 384, 704, 429, 724 ], [ 439, 704, 489, 724 ], [ 494, 704, 503, 724 ], [ 508, 704, 635, 724 ], [ 640, 704, 686, 724 ], [ 691, 704, 735, 724 ], [ 745, 704, 855, 724 ], [ 355, 739, 382, 759 ], [ 387, 739, 428, 759 ], [ 433, 739, 525, 759 ], [ 530, 739, 550, 759 ], [ 555, 739, 644, 759 ], [ 649, 739, 664, 759 ], [ 669, 739, 710, 759 ], [ 715, 739, 731, 759 ], [ 736, 739, 792, 759 ], [ 797, 739, 872, 759 ], [ 258, 740, 345, 759 ], [ 258, 756, 296, 776 ], [ 301, 756, 355, 776 ], [ 360, 756, 431, 776 ], [ 436, 756, 490, 776 ], [ 495, 756, 514, 776 ], [ 519, 756, 593, 776 ], [ 598, 756, 646, 776 ], [ 652, 756, 677, 776 ], [ 272, 775, 277, 795 ], [ 282, 775, 311, 795 ], [ 272, 793, 331, 813 ], [ 336, 793, 367, 813 ], [ 372, 793, 396, 813 ], [ 401, 793, 463, 813 ], [ 467, 793, 488, 813 ], [ 493, 793, 556, 813 ] ]
[ [ 117, 71, 128, 90 ], [ 137, 71, 221, 90 ], [ 117, 86, 218, 106 ], [ 223, 86, 237, 106 ], [ 117, 103, 141, 122 ], [ 146, 103, 169, 122 ], [ 117, 118, 223, 138 ], [ 117, 135, 132, 154 ], [ 117, 150, 238, 170 ], [ 117, 166, 176, 186 ], [ 258, 70, 300, 90 ], [ 304, 70, 328, 90 ], [ 333, 70, 380, 90 ], [ 385, 70, 401, 90 ], [ 406, 70, 430, 90 ], [ 435, 70, 537, 90 ], [ 542, 70, 624, 90 ], [ 629, 70, 638, 90 ], [ 643, 70, 659, 90 ], [ 664, 70, 683, 90 ], [ 688, 70, 746, 90 ], [ 751, 70, 827, 90 ], [ 258, 87, 344, 108 ], [ 349, 87, 362, 108 ], [ 367, 87, 433, 108 ], [ 438, 87, 458, 108 ], [ 463, 87, 486, 108 ], [ 491, 87, 537, 108 ], [ 542, 87, 605, 108 ], [ 611, 87, 708, 108 ], [ 713, 87, 729, 108 ], [ 734, 87, 758, 108 ], [ 763, 87, 787, 108 ], [ 258, 105, 366, 125 ], [ 371, 105, 423, 125 ], [ 428, 105, 447, 125 ], [ 452, 105, 533, 125 ], [ 258, 141, 302, 160 ], [ 312, 140, 326, 160 ], [ 331, 140, 393, 160 ], [ 398, 140, 436, 160 ], [ 441, 140, 501, 160 ], [ 506, 140, 545, 160 ], [ 550, 140, 598, 160 ], [ 603, 140, 637, 160 ], [ 642, 140, 657, 160 ], [ 662, 140, 709, 160 ], [ 714, 140, 737, 160 ], [ 742, 140, 766, 160 ], [ 771, 140, 799, 160 ], [ 258, 157, 355, 177 ], [ 360, 157, 439, 177 ], [ 444, 157, 459, 177 ], [ 464, 157, 550, 177 ], [ 555, 157, 589, 177 ], [ 594, 157, 603, 177 ], [ 608, 157, 729, 177 ], [ 734, 157, 780, 177 ], [ 785, 157, 829, 177 ], [ 834, 157, 847, 177 ], [ 258, 174, 314, 195 ], [ 319, 174, 334, 195 ], [ 339, 174, 425, 195 ], [ 430, 174, 446, 195 ], [ 451, 174, 513, 195 ], [ 518, 174, 563, 195 ], [ 258, 211, 353, 230 ], [ 363, 209, 390, 230 ], [ 395, 209, 435, 230 ], [ 440, 209, 533, 230 ], [ 538, 209, 557, 230 ], [ 272, 228, 281, 248 ], [ 286, 230, 362, 247 ], [ 367, 230, 418, 247 ], [ 423, 228, 438, 248 ], [ 443, 228, 490, 248 ], [ 495, 228, 518, 248 ], [ 523, 228, 541, 248 ], [ 546, 228, 648, 248 ], [ 653, 228, 678, 248 ], [ 683, 228, 741, 248 ], [ 746, 228, 778, 248 ], [ 783, 228, 808, 248 ], [ 272, 245, 333, 265 ], [ 338, 245, 354, 265 ], [ 359, 245, 392, 265 ], [ 397, 245, 425, 265 ], [ 272, 264, 328, 284 ], [ 333, 264, 375, 284 ], [ 380, 264, 389, 284 ], [ 394, 264, 456, 284 ], [ 461, 264, 495, 284 ], [ 500, 264, 515, 284 ], [ 520, 264, 566, 284 ], [ 571, 264, 594, 284 ], [ 599, 264, 617, 284 ], [ 623, 264, 724, 284 ], [ 729, 264, 754, 284 ], [ 759, 264, 844, 284 ], [ 272, 281, 297, 301 ], [ 302, 281, 363, 301 ], [ 368, 281, 382, 301 ], [ 387, 281, 436, 301 ], [ 117, 334, 132, 353 ], [ 141, 334, 213, 353 ], [ 117, 350, 238, 369 ], [ 117, 366, 176, 385 ], [ 181, 366, 227, 385 ], [ 117, 382, 195, 401 ], [ 199, 382, 229, 401 ], [ 117, 398, 131, 417 ], [ 136, 398, 207, 417 ], [ 258, 333, 274, 354 ], [ 279, 333, 321, 354 ], [ 326, 333, 372, 354 ], [ 377, 333, 405, 354 ], [ 410, 333, 467, 354 ], [ 472, 333, 481, 354 ], [ 485, 333, 505, 354 ], [ 510, 333, 526, 354 ], [ 531, 333, 561, 354 ], [ 565, 333, 623, 354 ], [ 628, 333, 749, 354 ], [ 754, 333, 800, 354 ], [ 805, 333, 827, 354 ], [ 832, 333, 861, 354 ], [ 258, 351, 275, 371 ], [ 280, 351, 325, 371 ], [ 330, 351, 355, 371 ], [ 360, 351, 385, 371 ], [ 390, 351, 414, 371 ], [ 419, 351, 435, 371 ], [ 440, 351, 464, 371 ], [ 469, 351, 509, 371 ], [ 514, 351, 599, 371 ], [ 604, 351, 627, 371 ], [ 632, 351, 680, 371 ], [ 685, 351, 709, 371 ], [ 714, 351, 775, 371 ], [ 780, 351, 847, 371 ], [ 258, 368, 335, 389 ], [ 340, 368, 374, 389 ], [ 258, 403, 274, 423 ], [ 279, 403, 315, 423 ], [ 320, 403, 367, 423 ], [ 372, 403, 421, 423 ], [ 425, 403, 490, 423 ], [ 495, 403, 584, 423 ], [ 589, 403, 612, 423 ], [ 616, 403, 641, 423 ], [ 646, 403, 731, 423 ], [ 736, 403, 759, 423 ], [ 763, 403, 811, 423 ], [ 258, 421, 335, 441 ], [ 340, 421, 369, 441 ], [ 374, 421, 404, 441 ], [ 409, 421, 475, 441 ], [ 480, 421, 528, 441 ], [ 533, 421, 564, 441 ], [ 569, 421, 611, 441 ], [ 616, 421, 720, 441 ], [ 724, 421, 783, 441 ], [ 788, 421, 803, 441 ], [ 258, 438, 342, 458 ], [ 347, 438, 365, 458 ], [ 371, 438, 423, 458 ], [ 117, 491, 127, 510 ], [ 136, 491, 208, 510 ], [ 117, 507, 176, 526 ], [ 181, 507, 235, 526 ], [ 117, 523, 192, 542 ], [ 197, 523, 234, 542 ], [ 117, 539, 164, 558 ], [ 117, 555, 194, 574 ], [ 117, 571, 160, 590 ], [ 165, 571, 221, 590 ], [ 258, 490, 289, 510 ], [ 294, 490, 375, 510 ], [ 380, 490, 397, 510 ], [ 406, 490, 464, 510 ], [ 469, 490, 539, 510 ], [ 544, 490, 559, 510 ], [ 569, 490, 690, 510 ], [ 695, 490, 753, 510 ], [ 762, 490, 803, 510 ], [ 808, 490, 843, 510 ], [ 258, 508, 294, 528 ], [ 299, 508, 329, 528 ], [ 334, 508, 414, 528 ], [ 419, 508, 502, 528 ], [ 507, 508, 592, 528 ], [ 597, 508, 626, 528 ], [ 631, 508, 668, 528 ], [ 673, 508, 687, 528 ], [ 692, 508, 747, 528 ], [ 752, 508, 827, 528 ], [ 832, 508, 863, 528 ], [ 258, 525, 277, 545 ], [ 282, 525, 357, 545 ], [ 362, 525, 376, 545 ], [ 381, 525, 405, 545 ], [ 410, 525, 429, 545 ], [ 434, 525, 492, 545 ], [ 497, 525, 535, 545 ], [ 540, 525, 556, 545 ], [ 561, 525, 616, 545 ], [ 258, 560, 335, 580 ], [ 340, 560, 385, 580 ], [ 272, 596, 296, 616 ], [ 301, 596, 336, 616 ], [ 341, 596, 403, 616 ], [ 408, 596, 482, 616 ], [ 487, 596, 500, 616 ], [ 505, 596, 514, 616 ], [ 519, 596, 572, 616 ], [ 577, 596, 641, 616 ], [ 646, 596, 675, 616 ], [ 288, 614, 357, 635 ], [ 362, 614, 378, 635 ], [ 383, 614, 438, 635 ], [ 443, 614, 459, 635 ], [ 464, 614, 473, 635 ], [ 478, 614, 521, 635 ], [ 526, 614, 543, 635 ], [ 547, 614, 556, 635 ], [ 561, 614, 611, 635 ], [ 616, 614, 681, 635 ], [ 686, 614, 733, 635 ], [ 738, 614, 767, 635 ], [ 288, 633, 301, 653 ], [ 306, 633, 388, 653 ], [ 393, 633, 451, 653 ], [ 456, 633, 471, 653 ], [ 476, 633, 520, 653 ], [ 524, 633, 579, 653 ], [ 584, 633, 622, 653 ], [ 627, 633, 674, 653 ], [ 679, 633, 739, 653 ], [ 744, 634, 774, 654 ], [ 272, 652, 296, 672 ], [ 301, 652, 390, 672 ], [ 395, 652, 419, 672 ], [ 424, 652, 492, 672 ], [ 497, 652, 541, 672 ], [ 546, 652, 570, 672 ], [ 575, 652, 631, 672 ], [ 636, 652, 682, 672 ], [ 686, 652, 760, 672 ], [ 258, 686, 311, 706 ], [ 315, 686, 324, 706 ], [ 329, 686, 410, 706 ], [ 414, 686, 468, 706 ], [ 473, 686, 537, 706 ], [ 542, 686, 555, 706 ], [ 560, 686, 574, 706 ], [ 579, 686, 618, 706 ], [ 623, 686, 690, 706 ], [ 694, 686, 758, 706 ], [ 762, 686, 787, 706 ], [ 791, 686, 867, 706 ], [ 258, 704, 304, 724 ], [ 309, 704, 380, 724 ], [ 384, 704, 429, 724 ], [ 439, 704, 489, 724 ], [ 494, 704, 503, 724 ], [ 508, 704, 635, 724 ], [ 640, 704, 686, 724 ], [ 691, 704, 735, 724 ], [ 745, 704, 855, 724 ], [ 258, 740, 345, 759 ], [ 355, 739, 382, 759 ], [ 387, 739, 428, 759 ], [ 433, 739, 525, 759 ], [ 530, 739, 550, 759 ], [ 555, 739, 644, 759 ], [ 649, 739, 664, 759 ], [ 669, 739, 710, 759 ], [ 715, 739, 731, 759 ], [ 736, 739, 792, 759 ], [ 797, 739, 872, 759 ], [ 258, 756, 296, 776 ], [ 301, 756, 355, 776 ], [ 360, 756, 431, 776 ], [ 436, 756, 490, 776 ], [ 495, 756, 514, 776 ], [ 519, 756, 593, 776 ], [ 598, 756, 646, 776 ], [ 652, 756, 677, 776 ], [ 272, 775, 277, 795 ], [ 282, 775, 311, 795 ], [ 272, 793, 331, 813 ], [ 336, 793, 367, 813 ], [ 372, 793, 396, 813 ], [ 401, 793, 463, 813 ], [ 467, 793, 488, 813 ], [ 493, 793, 556, 813 ] ]
For more information on effective date of convalescence ratings, Reference: see . f. Extension of Extensions of temporary total awards are authorized under when justified by Convalescent the facts. Ratings A temporary total evaluation granted for any of the criteria in can be extended to a total duration of six months (in incremental amounts of one, two or three months). Further extensions of one to six months beyond the initial six month period may be made with the following limitations: entitlement must have been established under (surgery with severe postoperative residuals or immobilization of one or more major joint), and approval of the VSCM is required. g. Requesting Generally, unless required by the diagnostic code, reexamination is not Future required following a period in which a temporary total rating was assigned Examinations under . The RVSR should review the evidence of record and assign a new post-convalescence evaluation based on the residual disability following the convalescence period. Only request a VA examination before the end of the total disability period when the evidence is inadequate to determine the residual disability and assign a schedular evaluation after the convalescence period. Assignment of an evaluation lower than 100 percent after the temporary h. convalescence period does not, itself, implicate . The grant of a temporary Evaluations total evaluation with an appropriate schedular evaluation equal to or greater and 38 CFR than the pre-convalescence running award rate taking effect thereafter does 3.105(e) not create a reduction or discontinuance in compensation payments currently being termination of these total ratings will not be made. states: “The subject to §3.105(e) of this chapter.” If the residual disability is less disabling than the rating in effect Exception: prior to the assignment of temporary total disability under so that assigning the appropriate post-convalescence evaluation would result in a reduction or discontinuance in compensation payments made under the running award: assign the temporary 100 percent convalescent evaluation as provided in M21-1, Part IV, Subpart ii, 2.J.4.d assign the evaluation in effect prior to hospitalization effective immediately thereafter, and propose reduction in accordance with to the lower rate supported by the evidence.
Reference: For more information on effective date of convalescence ratings, see . f. Extension of Convalescent Ratings Extensions of temporary total awards are authorized under when justified by the facts. A temporary total evaluation granted for any of the criteria in can be extended to a total duration of six months (in incremental amounts of one, two or three months). Further extensions of one to six months beyond the initial six month period may be made with the following limitations: entitlement must have been established under (surgery with severe postoperative residuals or immobilization of one or more major joint), and approval of the VSCM is required. g. Requesting Future Examinations Generally, unless required by the diagnostic code, reexamination is not required following a period in which a temporary total rating was assigned under . The RVSR should review the evidence of record and assign a new post-convalescence evaluation based on the residual disability following the convalescence period. Only request a VA examination before the end of the total disability period when the evidence is inadequate to determine the residual disability and assign a schedular evaluation after the convalescence period. h. Evaluations and 38 CFR 3.105(e) Assignment of an evaluation lower than 100 percent after the temporary convalescence period does not, itself, implicate . The grant of a temporary total evaluation with an appropriate schedular evaluation equal to or greater than the pre-convalescence running award rate taking effect thereafter does not create a reduction or discontinuance in compensation payments currently being made. states: “The termination of these total ratings will not be subject to §3.105(e) of this chapter.” Exception: If the residual disability is less disabling than the rating in effect prior to the assignment of temporary total disability under so that assigning the appropriate post-convalescence evaluation would result in a reduction or discontinuance in compensation payments made under the running award: assign the temporary 100 percent convalescent evaluation as provided in M21-1, Part IV, Subpart ii, 2.J.4.d assign the evaluation in effect prior to hospitalization effective immediately thereafter, and propose reduction in accordance with to the lower rate supported by the evidence.
0.901844
[ 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 26, 29, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 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, 118, 131, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 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, 200, 213, 225, 226, 227, 238, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 258, 259, 260, 250, 251, 252, 253, 254, 255, 256, 257, 261, 262, 263, 264, 265, 266, 279, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 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 ]
M21-1MRIV_ii_2_secJ.docx
task-1431-779
12
[ [ 355, 70, 382, 90 ], [ 387, 70, 428, 90 ], [ 433, 70, 525, 90 ], [ 530, 70, 550, 90 ], [ 555, 70, 623, 90 ], [ 628, 70, 661, 90 ], [ 666, 70, 682, 90 ], [ 687, 70, 800, 90 ], [ 805, 70, 863, 90 ], [ 258, 71, 345, 90 ], [ 258, 87, 283, 108 ], [ 288, 87, 293, 108 ], [ 117, 140, 128, 160 ], [ 137, 140, 213, 160 ], [ 217, 140, 232, 160 ], [ 258, 140, 345, 160 ], [ 350, 140, 366, 160 ], [ 371, 140, 451, 160 ], [ 456, 140, 491, 160 ], [ 496, 140, 551, 160 ], [ 556, 140, 580, 160 ], [ 585, 140, 668, 160 ], [ 673, 140, 717, 160 ], [ 727, 140, 770, 160 ], [ 775, 140, 839, 160 ], [ 844, 140, 864, 160 ], [ 117, 156, 219, 175 ], [ 258, 157, 282, 177 ], [ 287, 157, 329, 177 ], [ 117, 172, 176, 191 ], [ 258, 192, 273, 212 ], [ 277, 192, 358, 212 ], [ 363, 192, 398, 212 ], [ 403, 192, 484, 212 ], [ 489, 192, 548, 212 ], [ 553, 192, 576, 212 ], [ 581, 192, 609, 212 ], [ 614, 192, 630, 212 ], [ 635, 192, 659, 212 ], [ 664, 192, 720, 212 ], [ 725, 192, 740, 212 ], [ 750, 192, 777, 212 ], [ 782, 192, 800, 212 ], [ 258, 209, 329, 230 ], [ 334, 209, 349, 230 ], [ 354, 209, 363, 230 ], [ 368, 209, 403, 230 ], [ 408, 209, 473, 230 ], [ 478, 209, 494, 230 ], [ 499, 209, 522, 230 ], [ 527, 209, 585, 230 ], [ 590, 209, 612, 230 ], [ 616, 209, 709, 230 ], [ 713, 209, 780, 230 ], [ 785, 209, 801, 230 ], [ 806, 209, 839, 230 ], [ 258, 227, 288, 247 ], [ 293, 227, 309, 247 ], [ 314, 227, 353, 247 ], [ 358, 227, 427, 247 ], [ 258, 261, 316, 282 ], [ 321, 261, 404, 282 ], [ 409, 261, 425, 282 ], [ 430, 261, 458, 282 ], [ 463, 261, 478, 282 ], [ 483, 261, 506, 282 ], [ 511, 261, 569, 282 ], [ 574, 263, 630, 281 ], [ 635, 263, 659, 281 ], [ 664, 263, 711, 281 ], [ 716, 263, 738, 281 ], [ 743, 263, 792, 281 ], [ 797, 263, 848, 281 ], [ 258, 279, 292, 299 ], [ 297, 279, 315, 299 ], [ 320, 279, 363, 299 ], [ 368, 279, 402, 299 ], [ 407, 279, 431, 299 ], [ 436, 279, 513, 299 ], [ 517, 279, 607, 299 ], [ 272, 298, 361, 318 ], [ 366, 298, 404, 318 ], [ 409, 298, 446, 318 ], [ 451, 298, 488, 318 ], [ 493, 298, 580, 318 ], [ 585, 298, 629, 318 ], [ 639, 298, 705, 318 ], [ 709, 298, 744, 318 ], [ 749, 298, 799, 318 ], [ 272, 315, 378, 335 ], [ 383, 315, 453, 335 ], [ 458, 315, 474, 335 ], [ 479, 315, 599, 335 ], [ 604, 315, 620, 335 ], [ 625, 315, 653, 335 ], [ 658, 315, 674, 335 ], [ 679, 315, 720, 335 ], [ 724, 315, 770, 335 ], [ 775, 315, 822, 335 ], [ 827, 315, 856, 335 ], [ 272, 334, 341, 354 ], [ 346, 334, 362, 354 ], [ 367, 334, 391, 354 ], [ 396, 334, 452, 354 ], [ 457, 334, 470, 354 ], [ 475, 334, 545, 354 ], [ 117, 386, 131, 406 ], [ 140, 386, 226, 406 ], [ 258, 386, 340, 406 ], [ 345, 386, 394, 406 ], [ 399, 386, 465, 406 ], [ 470, 386, 489, 406 ], [ 494, 386, 518, 406 ], [ 523, 386, 603, 406 ], [ 608, 386, 650, 406 ], [ 655, 386, 767, 406 ], [ 772, 386, 786, 406 ], [ 790, 386, 816, 406 ], [ 117, 402, 170, 422 ], [ 258, 403, 323, 423 ], [ 328, 403, 405, 423 ], [ 410, 403, 418, 423 ], [ 423, 403, 473, 423 ], [ 478, 403, 494, 423 ], [ 499, 403, 546, 423 ], [ 551, 403, 560, 423 ], [ 565, 403, 646, 423 ], [ 651, 403, 685, 423 ], [ 690, 403, 736, 423 ], [ 741, 403, 771, 423 ], [ 776, 403, 844, 423 ], [ 117, 418, 223, 437 ], [ 258, 420, 303, 441 ], [ 308, 420, 313, 441 ], [ 323, 420, 353, 441 ], [ 358, 420, 409, 441 ], [ 414, 420, 466, 441 ], [ 471, 420, 525, 441 ], [ 529, 420, 553, 441 ], [ 558, 420, 628, 441 ], [ 633, 420, 649, 441 ], [ 654, 420, 704, 441 ], [ 709, 420, 737, 441 ], [ 742, 420, 791, 441 ], [ 796, 420, 805, 441 ], [ 810, 420, 843, 441 ], [ 258, 438, 411, 458 ], [ 416, 438, 497, 458 ], [ 502, 438, 547, 458 ], [ 552, 438, 571, 458 ], [ 576, 438, 600, 458 ], [ 605, 438, 667, 458 ], [ 672, 438, 745, 458 ], [ 750, 438, 826, 458 ], [ 831, 438, 855, 458 ], [ 258, 455, 371, 475 ], [ 376, 455, 431, 475 ], [ 258, 490, 298, 510 ], [ 302, 490, 359, 510 ], [ 364, 490, 373, 510 ], [ 377, 490, 406, 510 ], [ 411, 490, 508, 510 ], [ 513, 490, 563, 510 ], [ 567, 490, 592, 510 ], [ 596, 490, 625, 510 ], [ 630, 490, 646, 510 ], [ 651, 490, 675, 510 ], [ 680, 490, 715, 510 ], [ 720, 490, 793, 510 ], [ 797, 490, 848, 510 ], [ 258, 508, 301, 528 ], [ 306, 508, 330, 528 ], [ 334, 508, 404, 528 ], [ 409, 508, 422, 528 ], [ 427, 508, 512, 528 ], [ 517, 508, 532, 528 ], [ 537, 508, 616, 528 ], [ 620, 508, 644, 528 ], [ 649, 508, 711, 528 ], [ 716, 508, 790, 528 ], [ 794, 508, 822, 528 ], [ 258, 525, 307, 545 ], [ 312, 525, 321, 545 ], [ 326, 525, 401, 545 ], [ 406, 525, 488, 545 ], [ 493, 525, 528, 545 ], [ 533, 525, 557, 545 ], [ 562, 525, 676, 545 ], [ 680, 525, 735, 545 ], [ 258, 577, 352, 597 ], [ 357, 577, 373, 597 ], [ 378, 577, 397, 597 ], [ 402, 577, 483, 597 ], [ 488, 577, 533, 597 ], [ 538, 577, 571, 597 ], [ 576, 577, 606, 597 ], [ 611, 577, 668, 597 ], [ 673, 577, 709, 597 ], [ 714, 577, 738, 597 ], [ 743, 577, 824, 597 ], [ 117, 578, 132, 597 ], [ 258, 595, 371, 615 ], [ 376, 595, 426, 615 ], [ 431, 595, 467, 615 ], [ 472, 595, 502, 615 ], [ 507, 595, 551, 615 ], [ 556, 595, 629, 615 ], [ 634, 595, 639, 615 ], [ 649, 595, 679, 615 ], [ 684, 595, 724, 615 ], [ 729, 595, 746, 615 ], [ 751, 595, 759, 615 ], [ 764, 595, 845, 615 ], [ 117, 610, 208, 629 ], [ 258, 612, 293, 632 ], [ 298, 612, 380, 632 ], [ 385, 612, 420, 632 ], [ 424, 612, 443, 632 ], [ 448, 612, 537, 632 ], [ 542, 612, 617, 632 ], [ 622, 612, 704, 632 ], [ 709, 612, 751, 632 ], [ 756, 612, 771, 632 ], [ 776, 612, 793, 632 ], [ 798, 612, 852, 632 ], [ 117, 626, 146, 645 ], [ 151, 626, 169, 645 ], [ 173, 626, 210, 645 ], [ 258, 630, 292, 650 ], [ 297, 630, 321, 650 ], [ 326, 630, 471, 650 ], [ 475, 630, 537, 650 ], [ 541, 630, 589, 650 ], [ 594, 630, 624, 650 ], [ 628, 630, 678, 650 ], [ 682, 630, 727, 650 ], [ 732, 630, 807, 650 ], [ 812, 630, 848, 650 ], [ 117, 642, 178, 661 ], [ 258, 647, 283, 667 ], [ 288, 647, 335, 667 ], [ 340, 647, 349, 667 ], [ 354, 647, 428, 667 ], [ 433, 647, 449, 667 ], [ 454, 647, 571, 667 ], [ 576, 647, 592, 667 ], [ 596, 647, 705, 667 ], [ 710, 647, 785, 667 ], [ 790, 647, 861, 667 ], [ 258, 664, 302, 685 ], [ 472, 664, 562, 685 ], [ 567, 664, 583, 685 ], [ 588, 664, 629, 685 ], [ 633, 664, 668, 685 ], [ 673, 664, 726, 685 ], [ 732, 664, 762, 685 ], [ 767, 664, 792, 685 ], [ 797, 664, 816, 685 ], [ 307, 667, 354, 684 ], [ 369, 667, 418, 684 ], [ 428, 667, 467, 684 ], [ 258, 682, 314, 702 ], [ 319, 682, 334, 702 ], [ 339, 682, 415, 702 ], [ 419, 682, 436, 702 ], [ 441, 682, 469, 702 ], [ 474, 684, 545, 701 ], [ 356, 717, 368, 737 ], [ 373, 717, 397, 737 ], [ 402, 717, 464, 737 ], [ 469, 717, 542, 737 ], [ 547, 717, 560, 737 ], [ 565, 717, 594, 737 ], [ 599, 717, 671, 737 ], [ 676, 717, 710, 737 ], [ 715, 717, 738, 737 ], [ 744, 717, 789, 737 ], [ 794, 717, 809, 737 ], [ 814, 717, 859, 737 ], [ 258, 718, 346, 737 ], [ 258, 734, 296, 754 ], [ 301, 734, 317, 754 ], [ 322, 734, 346, 754 ], [ 350, 734, 439, 754 ], [ 444, 734, 460, 754 ], [ 465, 734, 545, 754 ], [ 550, 734, 585, 754 ], [ 590, 734, 663, 754 ], [ 668, 734, 712, 754 ], [ 722, 734, 740, 754 ], [ 745, 734, 774, 754 ], [ 779, 734, 853, 754 ], [ 258, 752, 282, 772 ], [ 287, 752, 376, 772 ], [ 381, 752, 534, 772 ], [ 539, 752, 620, 772 ], [ 625, 752, 674, 772 ], [ 679, 752, 723, 772 ], [ 728, 752, 743, 772 ], [ 748, 752, 757, 772 ], [ 762, 752, 836, 772 ], [ 840, 752, 857, 772 ], [ 258, 769, 376, 789 ], [ 381, 769, 396, 789 ], [ 401, 769, 510, 789 ], [ 515, 769, 590, 789 ], [ 595, 769, 637, 789 ], [ 642, 769, 687, 789 ], [ 692, 769, 716, 789 ], [ 721, 769, 782, 789 ], [ 787, 769, 840, 789 ], [ 272, 788, 321, 808 ], [ 326, 788, 350, 808 ], [ 355, 788, 436, 808 ], [ 441, 788, 470, 808 ], [ 475, 788, 532, 808 ], [ 538, 788, 639, 808 ], [ 644, 788, 725, 808 ], [ 730, 788, 747, 808 ], [ 752, 788, 821, 808 ], [ 826, 788, 841, 808 ], [ 272, 805, 331, 825 ], [ 336, 805, 367, 825 ], [ 372, 805, 398, 825 ], [ 403, 805, 464, 825 ], [ 469, 805, 484, 825 ], [ 489, 805, 541, 825 ], [ 272, 824, 321, 844 ], [ 326, 824, 350, 844 ], [ 355, 824, 437, 844 ], [ 442, 824, 457, 844 ], [ 462, 824, 506, 844 ], [ 511, 824, 550, 844 ], [ 555, 824, 570, 844 ], [ 575, 824, 690, 844 ], [ 695, 824, 764, 844 ], [ 768, 824, 867, 844 ], [ 272, 841, 352, 861 ], [ 357, 841, 385, 861 ], [ 272, 859, 334, 880 ], [ 339, 859, 413, 880 ], [ 418, 859, 434, 880 ], [ 439, 859, 527, 880 ], [ 532, 859, 566, 880 ], [ 576, 859, 592, 880 ], [ 596, 859, 620, 880 ], [ 625, 859, 670, 880 ], [ 675, 859, 704, 880 ], [ 709, 859, 786, 880 ], [ 791, 859, 811, 880 ], [ 816, 859, 840, 880 ], [ 272, 877, 347, 897 ] ]
[ [ 258, 71, 345, 90 ], [ 355, 70, 382, 90 ], [ 387, 70, 428, 90 ], [ 433, 70, 525, 90 ], [ 530, 70, 550, 90 ], [ 555, 70, 623, 90 ], [ 628, 70, 661, 90 ], [ 666, 70, 682, 90 ], [ 687, 70, 800, 90 ], [ 805, 70, 863, 90 ], [ 258, 87, 283, 108 ], [ 288, 87, 293, 108 ], [ 117, 140, 128, 160 ], [ 137, 140, 213, 160 ], [ 217, 140, 232, 160 ], [ 117, 156, 219, 175 ], [ 117, 172, 176, 191 ], [ 258, 140, 345, 160 ], [ 350, 140, 366, 160 ], [ 371, 140, 451, 160 ], [ 456, 140, 491, 160 ], [ 496, 140, 551, 160 ], [ 556, 140, 580, 160 ], [ 585, 140, 668, 160 ], [ 673, 140, 717, 160 ], [ 727, 140, 770, 160 ], [ 775, 140, 839, 160 ], [ 844, 140, 864, 160 ], [ 258, 157, 282, 177 ], [ 287, 157, 329, 177 ], [ 258, 192, 273, 212 ], [ 277, 192, 358, 212 ], [ 363, 192, 398, 212 ], [ 403, 192, 484, 212 ], [ 489, 192, 548, 212 ], [ 553, 192, 576, 212 ], [ 581, 192, 609, 212 ], [ 614, 192, 630, 212 ], [ 635, 192, 659, 212 ], [ 664, 192, 720, 212 ], [ 725, 192, 740, 212 ], [ 750, 192, 777, 212 ], [ 782, 192, 800, 212 ], [ 258, 209, 329, 230 ], [ 334, 209, 349, 230 ], [ 354, 209, 363, 230 ], [ 368, 209, 403, 230 ], [ 408, 209, 473, 230 ], [ 478, 209, 494, 230 ], [ 499, 209, 522, 230 ], [ 527, 209, 585, 230 ], [ 590, 209, 612, 230 ], [ 616, 209, 709, 230 ], [ 713, 209, 780, 230 ], [ 785, 209, 801, 230 ], [ 806, 209, 839, 230 ], [ 258, 227, 288, 247 ], [ 293, 227, 309, 247 ], [ 314, 227, 353, 247 ], [ 358, 227, 427, 247 ], [ 258, 261, 316, 282 ], [ 321, 261, 404, 282 ], [ 409, 261, 425, 282 ], [ 430, 261, 458, 282 ], [ 463, 261, 478, 282 ], [ 483, 261, 506, 282 ], [ 511, 261, 569, 282 ], [ 574, 263, 630, 281 ], [ 635, 263, 659, 281 ], [ 664, 263, 711, 281 ], [ 716, 263, 738, 281 ], [ 743, 263, 792, 281 ], [ 797, 263, 848, 281 ], [ 258, 279, 292, 299 ], [ 297, 279, 315, 299 ], [ 320, 279, 363, 299 ], [ 368, 279, 402, 299 ], [ 407, 279, 431, 299 ], [ 436, 279, 513, 299 ], [ 517, 279, 607, 299 ], [ 272, 298, 361, 318 ], [ 366, 298, 404, 318 ], [ 409, 298, 446, 318 ], [ 451, 298, 488, 318 ], [ 493, 298, 580, 318 ], [ 585, 298, 629, 318 ], [ 639, 298, 705, 318 ], [ 709, 298, 744, 318 ], [ 749, 298, 799, 318 ], [ 272, 315, 378, 335 ], [ 383, 315, 453, 335 ], [ 458, 315, 474, 335 ], [ 479, 315, 599, 335 ], [ 604, 315, 620, 335 ], [ 625, 315, 653, 335 ], [ 658, 315, 674, 335 ], [ 679, 315, 720, 335 ], [ 724, 315, 770, 335 ], [ 775, 315, 822, 335 ], [ 827, 315, 856, 335 ], [ 272, 334, 341, 354 ], [ 346, 334, 362, 354 ], [ 367, 334, 391, 354 ], [ 396, 334, 452, 354 ], [ 457, 334, 470, 354 ], [ 475, 334, 545, 354 ], [ 117, 386, 131, 406 ], [ 140, 386, 226, 406 ], [ 117, 402, 170, 422 ], [ 117, 418, 223, 437 ], [ 258, 386, 340, 406 ], [ 345, 386, 394, 406 ], [ 399, 386, 465, 406 ], [ 470, 386, 489, 406 ], [ 494, 386, 518, 406 ], [ 523, 386, 603, 406 ], [ 608, 386, 650, 406 ], [ 655, 386, 767, 406 ], [ 772, 386, 786, 406 ], [ 790, 386, 816, 406 ], [ 258, 403, 323, 423 ], [ 328, 403, 405, 423 ], [ 410, 403, 418, 423 ], [ 423, 403, 473, 423 ], [ 478, 403, 494, 423 ], [ 499, 403, 546, 423 ], [ 551, 403, 560, 423 ], [ 565, 403, 646, 423 ], [ 651, 403, 685, 423 ], [ 690, 403, 736, 423 ], [ 741, 403, 771, 423 ], [ 776, 403, 844, 423 ], [ 258, 420, 303, 441 ], [ 308, 420, 313, 441 ], [ 323, 420, 353, 441 ], [ 358, 420, 409, 441 ], [ 414, 420, 466, 441 ], [ 471, 420, 525, 441 ], [ 529, 420, 553, 441 ], [ 558, 420, 628, 441 ], [ 633, 420, 649, 441 ], [ 654, 420, 704, 441 ], [ 709, 420, 737, 441 ], [ 742, 420, 791, 441 ], [ 796, 420, 805, 441 ], [ 810, 420, 843, 441 ], [ 258, 438, 411, 458 ], [ 416, 438, 497, 458 ], [ 502, 438, 547, 458 ], [ 552, 438, 571, 458 ], [ 576, 438, 600, 458 ], [ 605, 438, 667, 458 ], [ 672, 438, 745, 458 ], [ 750, 438, 826, 458 ], [ 831, 438, 855, 458 ], [ 258, 455, 371, 475 ], [ 376, 455, 431, 475 ], [ 258, 490, 298, 510 ], [ 302, 490, 359, 510 ], [ 364, 490, 373, 510 ], [ 377, 490, 406, 510 ], [ 411, 490, 508, 510 ], [ 513, 490, 563, 510 ], [ 567, 490, 592, 510 ], [ 596, 490, 625, 510 ], [ 630, 490, 646, 510 ], [ 651, 490, 675, 510 ], [ 680, 490, 715, 510 ], [ 720, 490, 793, 510 ], [ 797, 490, 848, 510 ], [ 258, 508, 301, 528 ], [ 306, 508, 330, 528 ], [ 334, 508, 404, 528 ], [ 409, 508, 422, 528 ], [ 427, 508, 512, 528 ], [ 517, 508, 532, 528 ], [ 537, 508, 616, 528 ], [ 620, 508, 644, 528 ], [ 649, 508, 711, 528 ], [ 716, 508, 790, 528 ], [ 794, 508, 822, 528 ], [ 258, 525, 307, 545 ], [ 312, 525, 321, 545 ], [ 326, 525, 401, 545 ], [ 406, 525, 488, 545 ], [ 493, 525, 528, 545 ], [ 533, 525, 557, 545 ], [ 562, 525, 676, 545 ], [ 680, 525, 735, 545 ], [ 117, 578, 132, 597 ], [ 117, 610, 208, 629 ], [ 117, 626, 146, 645 ], [ 151, 626, 169, 645 ], [ 173, 626, 210, 645 ], [ 117, 642, 178, 661 ], [ 258, 577, 352, 597 ], [ 357, 577, 373, 597 ], [ 378, 577, 397, 597 ], [ 402, 577, 483, 597 ], [ 488, 577, 533, 597 ], [ 538, 577, 571, 597 ], [ 576, 577, 606, 597 ], [ 611, 577, 668, 597 ], [ 673, 577, 709, 597 ], [ 714, 577, 738, 597 ], [ 743, 577, 824, 597 ], [ 258, 595, 371, 615 ], [ 376, 595, 426, 615 ], [ 431, 595, 467, 615 ], [ 472, 595, 502, 615 ], [ 507, 595, 551, 615 ], [ 556, 595, 629, 615 ], [ 634, 595, 639, 615 ], [ 649, 595, 679, 615 ], [ 684, 595, 724, 615 ], [ 729, 595, 746, 615 ], [ 751, 595, 759, 615 ], [ 764, 595, 845, 615 ], [ 258, 612, 293, 632 ], [ 298, 612, 380, 632 ], [ 385, 612, 420, 632 ], [ 424, 612, 443, 632 ], [ 448, 612, 537, 632 ], [ 542, 612, 617, 632 ], [ 622, 612, 704, 632 ], [ 709, 612, 751, 632 ], [ 756, 612, 771, 632 ], [ 776, 612, 793, 632 ], [ 798, 612, 852, 632 ], [ 258, 630, 292, 650 ], [ 297, 630, 321, 650 ], [ 326, 630, 471, 650 ], [ 475, 630, 537, 650 ], [ 541, 630, 589, 650 ], [ 594, 630, 624, 650 ], [ 628, 630, 678, 650 ], [ 682, 630, 727, 650 ], [ 732, 630, 807, 650 ], [ 812, 630, 848, 650 ], [ 258, 647, 283, 667 ], [ 288, 647, 335, 667 ], [ 340, 647, 349, 667 ], [ 354, 647, 428, 667 ], [ 433, 647, 449, 667 ], [ 454, 647, 571, 667 ], [ 576, 647, 592, 667 ], [ 596, 647, 705, 667 ], [ 710, 647, 785, 667 ], [ 790, 647, 861, 667 ], [ 258, 664, 302, 685 ], [ 307, 667, 354, 684 ], [ 369, 667, 418, 684 ], [ 428, 667, 467, 684 ], [ 472, 664, 562, 685 ], [ 567, 664, 583, 685 ], [ 588, 664, 629, 685 ], [ 633, 664, 668, 685 ], [ 673, 664, 726, 685 ], [ 732, 664, 762, 685 ], [ 767, 664, 792, 685 ], [ 797, 664, 816, 685 ], [ 258, 682, 314, 702 ], [ 319, 682, 334, 702 ], [ 339, 682, 415, 702 ], [ 419, 682, 436, 702 ], [ 441, 682, 469, 702 ], [ 474, 684, 545, 701 ], [ 258, 718, 346, 737 ], [ 356, 717, 368, 737 ], [ 373, 717, 397, 737 ], [ 402, 717, 464, 737 ], [ 469, 717, 542, 737 ], [ 547, 717, 560, 737 ], [ 565, 717, 594, 737 ], [ 599, 717, 671, 737 ], [ 676, 717, 710, 737 ], [ 715, 717, 738, 737 ], [ 744, 717, 789, 737 ], [ 794, 717, 809, 737 ], [ 814, 717, 859, 737 ], [ 258, 734, 296, 754 ], [ 301, 734, 317, 754 ], [ 322, 734, 346, 754 ], [ 350, 734, 439, 754 ], [ 444, 734, 460, 754 ], [ 465, 734, 545, 754 ], [ 550, 734, 585, 754 ], [ 590, 734, 663, 754 ], [ 668, 734, 712, 754 ], [ 722, 734, 740, 754 ], [ 745, 734, 774, 754 ], [ 779, 734, 853, 754 ], [ 258, 752, 282, 772 ], [ 287, 752, 376, 772 ], [ 381, 752, 534, 772 ], [ 539, 752, 620, 772 ], [ 625, 752, 674, 772 ], [ 679, 752, 723, 772 ], [ 728, 752, 743, 772 ], [ 748, 752, 757, 772 ], [ 762, 752, 836, 772 ], [ 840, 752, 857, 772 ], [ 258, 769, 376, 789 ], [ 381, 769, 396, 789 ], [ 401, 769, 510, 789 ], [ 515, 769, 590, 789 ], [ 595, 769, 637, 789 ], [ 642, 769, 687, 789 ], [ 692, 769, 716, 789 ], [ 721, 769, 782, 789 ], [ 787, 769, 840, 789 ], [ 272, 788, 321, 808 ], [ 326, 788, 350, 808 ], [ 355, 788, 436, 808 ], [ 441, 788, 470, 808 ], [ 475, 788, 532, 808 ], [ 538, 788, 639, 808 ], [ 644, 788, 725, 808 ], [ 730, 788, 747, 808 ], [ 752, 788, 821, 808 ], [ 826, 788, 841, 808 ], [ 272, 805, 331, 825 ], [ 336, 805, 367, 825 ], [ 372, 805, 398, 825 ], [ 403, 805, 464, 825 ], [ 469, 805, 484, 825 ], [ 489, 805, 541, 825 ], [ 272, 824, 321, 844 ], [ 326, 824, 350, 844 ], [ 355, 824, 437, 844 ], [ 442, 824, 457, 844 ], [ 462, 824, 506, 844 ], [ 511, 824, 550, 844 ], [ 555, 824, 570, 844 ], [ 575, 824, 690, 844 ], [ 695, 824, 764, 844 ], [ 768, 824, 867, 844 ], [ 272, 841, 352, 861 ], [ 357, 841, 385, 861 ], [ 272, 859, 334, 880 ], [ 339, 859, 413, 880 ], [ 418, 859, 434, 880 ], [ 439, 859, 527, 880 ], [ 532, 859, 566, 880 ], [ 576, 859, 592, 880 ], [ 596, 859, 620, 880 ], [ 625, 859, 670, 880 ], [ 675, 859, 704, 880 ], [ 709, 859, 786, 880 ], [ 791, 859, 811, 880 ], [ 816, 859, 840, 880 ], [ 272, 877, 347, 897 ] ]
Per VHA may request determinations from VBA including, but not limited d. Determinations to, whether VBA Makes for a dental condition or disability is a result of combat wounds Dental a dental condition or disability is a result of service trauma Treatment the Veteran has a noncompensable SC dental condition or disability Purposes the Veteran has a compensable SC disability. the Veteran is totally disabled due to an SC disability, or the Veteran has former Prisoner of War (FPOW) status. Notes: This does not mean a formal rating determination is always required. In many cases eligibility for outpatient dental treatment can be decided by VHA without VBA rating action based information of record. Examples include: one-time dental treatment for Veterans who apply within 180 days after military discharge (Class II) Prisoner of War status (Class II(c)) , and total disability (Class IV) In lieu of a dental treatment rating decision annotate VA Form that the Veteran is totally disabled. For more information on Reference: conditions that can be SC only for treatment purposes, see , and verification of FPOW status for dental eligibility, see . As specified in VBA will develop and decide a claim for service connection e. When to Prepare a for treatment purposes VHA only after Rating for determines that a Veteran meets the basic eligibility requirements of and Dental that VBA make a determination (provide required information or requests Treatment issuing a rating decision). Purposes Provide the determination requested. Important: only Veterans who have a noncompensable dental condition (including tooth f. Service Trauma for disorders for which service connection for compensation purposes cannot be Dental granted) resulting from combat wounds or service trauma may receive any Treatment reasonably necessary treatment for the SC dental condition under Class II(a). Purposes If VHA provides a requesting a dental trauma rating, VA Form 10-7131 prepare a rating identifying the specific tooth number(s) that were injured and identify the service trauma. , 607 F.3d 802 (Fed. Cir, 2010) determined that means Note: service trauma an injury or wound produced by an external physical force, for example striking the mouth on a vehicle, striking the mouth when falling, and biting
d. Determinations VBA Makes for Dental Treatment Purposes Per VHA may request determinations from VBA including, but not limited to, whether a dental condition or disability is a result of combat wounds a dental condition or disability is a result of service trauma the Veteran has a noncompensable SC dental condition or disability the Veteran has a compensable SC disability. the Veteran is totally disabled due to an SC disability, or the Veteran has former Prisoner of War (FPOW) status. Notes: This does not mean a formal rating determination is always required. In many cases eligibility for outpatient dental treatment can be decided by VHA without VBA rating action based information of record. Examples include: one-time dental treatment for Veterans who apply within 180 days after military discharge (Class II) Prisoner of War status (Class II(c)) , and total disability (Class IV) In lieu of a dental treatment rating decision annotate VA Form that the Veteran is totally disabled. Reference: For more information on conditions that can be SC only for treatment purposes, see , and verification of FPOW status for dental eligibility, see . e. When to Prepare a Rating for Dental Treatment Purposes As specified in VBA will develop and decide a claim for service connection for treatment purposes only after VHA determines that a Veteran meets the basic eligibility requirements of and requests that VBA make a determination (provide required information or issuing a rating decision). Important: Provide only the determination requested. f. Service Trauma for Dental Treatment Purposes Veterans who have a noncompensable dental condition (including tooth disorders for which service connection for compensation purposes cannot be granted) resulting from combat wounds or service trauma may receive any reasonably necessary treatment for the SC dental condition under Class II(a). If VHA provides a VA Form 10-7131 requesting a dental trauma rating, prepare a rating identifying the specific tooth number(s) that were injured and identify the service trauma. Note: , 607 F.3d 802 (Fed. Cir, 2010) determined that service trauma means an injury or wound produced by an external physical force, for example striking the mouth on a vehicle, striking the mouth when falling, and biting
0.835002
[ 11, 12, 15, 16, 17, 29, 41, 52, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 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, 163, 159, 160, 161, 162, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 198, 199, 200, 201, 202, 209, 210, 222, 233, 238, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 203, 204, 205, 207, 208, 206, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 232, 223, 224, 225, 226, 227, 228, 229, 230, 231, 234, 235, 236, 237, 243, 239, 244, 240, 241, 242, 254, 255, 256, 257, 268, 280, 292, 245, 246, 247, 248, 249, 250, 251, 252, 253, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 293, 294, 295, 296, 302, 303, 304, 297, 298, 299, 300, 301, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 331, 321, 322, 323, 324, 325, 326, 327, 328, 329, 332, 333, 330, 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 ]
m21-1mrix_ii_2.docx
task-1431-782
10
[ [ 258, 79, 284, 99 ], [ 299, 79, 342, 99 ], [ 346, 79, 381, 99 ], [ 385, 79, 442, 99 ], [ 447, 79, 563, 99 ], [ 568, 79, 606, 99 ], [ 611, 79, 653, 99 ], [ 658, 79, 736, 99 ], [ 741, 79, 766, 99 ], [ 771, 79, 796, 99 ], [ 801, 79, 857, 99 ], [ 117, 80, 132, 99 ], [ 117, 96, 236, 115 ], [ 258, 96, 279, 117 ], [ 283, 96, 346, 117 ], [ 117, 112, 155, 131 ], [ 160, 112, 211, 131 ], [ 215, 112, 238, 131 ], [ 272, 115, 281, 135 ], [ 286, 115, 334, 135 ], [ 339, 115, 413, 135 ], [ 418, 115, 434, 135 ], [ 439, 115, 512, 135 ], [ 517, 115, 530, 135 ], [ 535, 115, 544, 135 ], [ 549, 115, 592, 135 ], [ 597, 115, 613, 135 ], [ 618, 115, 676, 135 ], [ 681, 115, 742, 135 ], [ 117, 128, 168, 147 ], [ 272, 134, 281, 154 ], [ 286, 134, 334, 154 ], [ 339, 134, 413, 154 ], [ 418, 134, 434, 154 ], [ 439, 134, 512, 154 ], [ 517, 134, 530, 154 ], [ 535, 134, 544, 154 ], [ 549, 134, 592, 154 ], [ 597, 134, 613, 154 ], [ 618, 134, 674, 154 ], [ 679, 134, 733, 154 ], [ 117, 144, 199, 163 ], [ 272, 152, 296, 172 ], [ 301, 152, 363, 172 ], [ 368, 152, 394, 172 ], [ 399, 152, 408, 172 ], [ 413, 152, 545, 172 ], [ 550, 152, 574, 172 ], [ 579, 152, 626, 172 ], [ 631, 152, 706, 172 ], [ 711, 152, 727, 172 ], [ 732, 152, 805, 172 ], [ 117, 160, 187, 179 ], [ 272, 171, 296, 191 ], [ 301, 171, 363, 191 ], [ 368, 171, 394, 191 ], [ 399, 171, 408, 191 ], [ 413, 171, 515, 191 ], [ 520, 171, 544, 191 ], [ 549, 171, 627, 191 ], [ 272, 189, 296, 209 ], [ 301, 189, 363, 209 ], [ 368, 189, 381, 209 ], [ 386, 189, 437, 209 ], [ 441, 189, 507, 209 ], [ 512, 189, 540, 209 ], [ 545, 189, 560, 209 ], [ 565, 189, 583, 209 ], [ 588, 189, 612, 209 ], [ 617, 189, 695, 209 ], [ 700, 189, 716, 209 ], [ 272, 208, 296, 228 ], [ 301, 208, 363, 228 ], [ 368, 208, 394, 228 ], [ 399, 208, 453, 228 ], [ 457, 208, 523, 228 ], [ 528, 208, 544, 228 ], [ 549, 208, 583, 228 ], [ 588, 208, 655, 228 ], [ 660, 208, 710, 228 ], [ 258, 244, 309, 263 ], [ 272, 261, 307, 281 ], [ 312, 261, 348, 281 ], [ 353, 261, 378, 281 ], [ 383, 261, 425, 281 ], [ 430, 261, 439, 281 ], [ 444, 261, 496, 281 ], [ 501, 261, 547, 281 ], [ 552, 261, 661, 281 ], [ 666, 261, 679, 281 ], [ 684, 261, 738, 281 ], [ 743, 261, 813, 281 ], [ 823, 261, 839, 281 ], [ 272, 278, 316, 298 ], [ 321, 278, 362, 298 ], [ 367, 278, 444, 298 ], [ 448, 278, 471, 298 ], [ 476, 278, 555, 298 ], [ 560, 278, 607, 298 ], [ 612, 278, 686, 298 ], [ 691, 278, 718, 298 ], [ 723, 278, 742, 298 ], [ 747, 278, 808, 298 ], [ 813, 278, 833, 298 ], [ 272, 296, 315, 316 ], [ 320, 296, 380, 316 ], [ 385, 296, 426, 316 ], [ 431, 296, 477, 316 ], [ 482, 296, 530, 316 ], [ 535, 296, 579, 316 ], [ 584, 296, 677, 316 ], [ 682, 296, 698, 316 ], [ 703, 296, 758, 316 ], [ 768, 296, 845, 316 ], [ 272, 313, 336, 333 ], [ 287, 332, 356, 352 ], [ 361, 332, 409, 352 ], [ 414, 332, 488, 352 ], [ 493, 332, 516, 352 ], [ 521, 332, 590, 352 ], [ 595, 332, 629, 352 ], [ 634, 332, 678, 352 ], [ 683, 332, 733, 352 ], [ 738, 332, 767, 352 ], [ 772, 332, 808, 352 ], [ 813, 332, 849, 352 ], [ 287, 349, 349, 369 ], [ 353, 349, 429, 369 ], [ 433, 349, 482, 369 ], [ 488, 349, 507, 369 ], [ 287, 368, 352, 388 ], [ 357, 368, 373, 388 ], [ 378, 368, 412, 388 ], [ 417, 368, 461, 388 ], [ 466, 368, 515, 388 ], [ 521, 368, 562, 388 ], [ 566, 368, 571, 388 ], [ 576, 368, 605, 388 ], [ 287, 386, 321, 406 ], [ 326, 386, 400, 406 ], [ 404, 386, 453, 406 ], [ 458, 386, 485, 406 ], [ 317, 404, 333, 424 ], [ 338, 404, 368, 424 ], [ 373, 404, 389, 424 ], [ 394, 404, 403, 424 ], [ 407, 404, 455, 424 ], [ 460, 404, 534, 424 ], [ 539, 404, 585, 424 ], [ 590, 404, 655, 424 ], [ 660, 404, 727, 424 ], [ 732, 405, 756, 424 ], [ 760, 405, 804, 424 ], [ 345, 421, 374, 441 ], [ 379, 421, 403, 441 ], [ 408, 421, 470, 441 ], [ 475, 421, 488, 441 ], [ 493, 421, 543, 441 ], [ 548, 421, 618, 441 ], [ 355, 456, 382, 476 ], [ 387, 456, 428, 476 ], [ 433, 456, 525, 476 ], [ 530, 456, 550, 476 ], [ 258, 457, 345, 476 ], [ 272, 475, 354, 495 ], [ 359, 475, 389, 495 ], [ 394, 475, 421, 495 ], [ 425, 475, 444, 495 ], [ 449, 475, 473, 495 ], [ 478, 475, 513, 495 ], [ 517, 475, 540, 495 ], [ 545, 475, 619, 495 ], [ 624, 475, 699, 495 ], [ 704, 475, 729, 495 ], [ 734, 475, 738, 495 ], [ 743, 475, 772, 495 ], [ 272, 493, 363, 513 ], [ 368, 493, 384, 513 ], [ 389, 493, 443, 513 ], [ 448, 493, 493, 513 ], [ 498, 493, 521, 513 ], [ 526, 493, 574, 513 ], [ 578, 493, 660, 513 ], [ 665, 493, 690, 513 ], [ 695, 493, 699, 513 ], [ 258, 562, 280, 583 ], [ 285, 562, 356, 583 ], [ 361, 562, 376, 583 ], [ 386, 562, 427, 583 ], [ 432, 562, 463, 583 ], [ 468, 562, 530, 583 ], [ 535, 562, 563, 583 ], [ 568, 562, 619, 583 ], [ 624, 562, 632, 583 ], [ 637, 562, 681, 583 ], [ 686, 562, 709, 583 ], [ 714, 562, 769, 583 ], [ 774, 562, 860, 583 ], [ 117, 563, 130, 582 ], [ 134, 563, 180, 582 ], [ 185, 563, 200, 582 ], [ 117, 579, 179, 598 ], [ 184, 579, 193, 598 ], [ 258, 580, 281, 600 ], [ 286, 580, 360, 600 ], [ 365, 580, 435, 600 ], [ 523, 580, 565, 600 ], [ 440, 581, 475, 601 ], [ 480, 581, 518, 601 ], [ 117, 595, 169, 614 ], [ 174, 595, 197, 614 ], [ 272, 598, 358, 619 ], [ 363, 598, 393, 619 ], [ 398, 598, 406, 619 ], [ 411, 598, 473, 619 ], [ 478, 598, 524, 619 ], [ 529, 598, 553, 619 ], [ 558, 598, 598, 619 ], [ 603, 598, 680, 619 ], [ 684, 598, 786, 619 ], [ 791, 598, 808, 619 ], [ 818, 598, 846, 619 ], [ 117, 611, 168, 630 ], [ 344, 617, 373, 637 ], [ 378, 617, 419, 637 ], [ 424, 617, 467, 637 ], [ 472, 617, 481, 637 ], [ 485, 617, 594, 637 ], [ 599, 617, 666, 637 ], [ 671, 617, 736, 637 ], [ 741, 617, 834, 637 ], [ 838, 617, 855, 637 ], [ 272, 618, 339, 638 ], [ 117, 627, 199, 646 ], [ 272, 634, 328, 655 ], [ 333, 634, 342, 655 ], [ 346, 634, 392, 655 ], [ 397, 634, 474, 655 ], [ 117, 643, 187, 662 ], [ 355, 669, 417, 689 ], [ 461, 669, 485, 689 ], [ 490, 669, 599, 689 ], [ 604, 669, 684, 689 ], [ 258, 670, 346, 689 ], [ 421, 670, 456, 690 ], [ 258, 721, 328, 742 ], [ 333, 721, 367, 742 ], [ 372, 721, 408, 742 ], [ 414, 721, 422, 742 ], [ 427, 721, 559, 742 ], [ 564, 721, 612, 742 ], [ 617, 721, 691, 742 ], [ 696, 721, 776, 742 ], [ 781, 721, 822, 742 ], [ 117, 722, 128, 741 ], [ 132, 722, 188, 741 ], [ 117, 738, 180, 757 ], [ 185, 738, 208, 757 ], [ 258, 739, 330, 759 ], [ 335, 739, 358, 759 ], [ 363, 739, 411, 759 ], [ 416, 739, 471, 759 ], [ 476, 739, 562, 759 ], [ 567, 739, 590, 759 ], [ 595, 739, 704, 759 ], [ 709, 739, 778, 759 ], [ 783, 739, 836, 759 ], [ 841, 739, 859, 759 ], [ 117, 754, 168, 773 ], [ 258, 756, 324, 776 ], [ 328, 756, 397, 776 ], [ 402, 756, 440, 776 ], [ 445, 756, 503, 776 ], [ 508, 756, 569, 776 ], [ 574, 756, 590, 776 ], [ 595, 756, 650, 776 ], [ 655, 756, 710, 776 ], [ 715, 756, 749, 776 ], [ 753, 756, 810, 776 ], [ 815, 756, 844, 776 ], [ 117, 770, 199, 789 ], [ 258, 774, 343, 794 ], [ 348, 774, 425, 794 ], [ 429, 774, 503, 794 ], [ 508, 774, 531, 794 ], [ 536, 774, 560, 794 ], [ 565, 774, 589, 794 ], [ 594, 774, 642, 794 ], [ 647, 774, 721, 794 ], [ 726, 774, 770, 794 ], [ 775, 774, 818, 794 ], [ 823, 774, 862, 794 ], [ 117, 786, 187, 805 ], [ 258, 809, 271, 829 ], [ 276, 809, 319, 829 ], [ 324, 809, 391, 829 ], [ 396, 809, 405, 829 ], [ 557, 809, 639, 829 ], [ 644, 809, 653, 829 ], [ 657, 809, 705, 829 ], [ 710, 809, 765, 829 ], [ 770, 809, 820, 829 ], [ 410, 810, 434, 829 ], [ 438, 810, 482, 829 ], [ 487, 810, 552, 829 ], [ 258, 826, 317, 846 ], [ 322, 826, 331, 846 ], [ 335, 826, 381, 846 ], [ 386, 826, 472, 846 ], [ 477, 826, 501, 846 ], [ 506, 826, 567, 846 ], [ 572, 826, 612, 846 ], [ 617, 826, 698, 846 ], [ 703, 826, 732, 846 ], [ 737, 826, 775, 846 ], [ 780, 826, 835, 846 ], [ 840, 826, 869, 846 ], [ 258, 843, 320, 864 ], [ 324, 843, 348, 864 ], [ 353, 843, 408, 864 ], [ 413, 843, 473, 864 ], [ 307, 878, 312, 898 ], [ 317, 878, 346, 898 ], [ 351, 878, 386, 898 ], [ 391, 878, 421, 898 ], [ 425, 878, 466, 898 ], [ 471, 878, 501, 898 ], [ 506, 878, 552, 898 ], [ 557, 878, 645, 898 ], [ 650, 878, 679, 898 ], [ 809, 878, 859, 898 ], [ 258, 879, 302, 898 ], [ 684, 879, 740, 899 ], [ 745, 879, 804, 899 ], [ 258, 896, 277, 916 ], [ 282, 896, 329, 916 ], [ 333, 896, 350, 916 ], [ 355, 896, 408, 916 ], [ 413, 896, 486, 916 ], [ 491, 896, 511, 916 ], [ 515, 896, 534, 916 ], [ 539, 896, 602, 916 ], [ 607, 896, 672, 916 ], [ 677, 896, 722, 916 ], [ 727, 896, 750, 916 ], [ 755, 896, 821, 916 ], [ 258, 913, 318, 933 ], [ 323, 913, 347, 933 ], [ 352, 913, 402, 933 ], [ 407, 913, 427, 933 ], [ 432, 913, 440, 933 ], [ 445, 913, 507, 933 ], [ 512, 913, 572, 933 ], [ 576, 913, 600, 933 ], [ 605, 913, 655, 933 ], [ 660, 913, 703, 933 ], [ 708, 913, 764, 933 ], [ 769, 913, 797, 933 ], [ 802, 913, 848, 933 ] ]
[ [ 117, 80, 132, 99 ], [ 117, 96, 236, 115 ], [ 117, 112, 155, 131 ], [ 160, 112, 211, 131 ], [ 215, 112, 238, 131 ], [ 117, 128, 168, 147 ], [ 117, 144, 199, 163 ], [ 117, 160, 187, 179 ], [ 258, 79, 284, 99 ], [ 299, 79, 342, 99 ], [ 346, 79, 381, 99 ], [ 385, 79, 442, 99 ], [ 447, 79, 563, 99 ], [ 568, 79, 606, 99 ], [ 611, 79, 653, 99 ], [ 658, 79, 736, 99 ], [ 741, 79, 766, 99 ], [ 771, 79, 796, 99 ], [ 801, 79, 857, 99 ], [ 258, 96, 279, 117 ], [ 283, 96, 346, 117 ], [ 272, 115, 281, 135 ], [ 286, 115, 334, 135 ], [ 339, 115, 413, 135 ], [ 418, 115, 434, 135 ], [ 439, 115, 512, 135 ], [ 517, 115, 530, 135 ], [ 535, 115, 544, 135 ], [ 549, 115, 592, 135 ], [ 597, 115, 613, 135 ], [ 618, 115, 676, 135 ], [ 681, 115, 742, 135 ], [ 272, 134, 281, 154 ], [ 286, 134, 334, 154 ], [ 339, 134, 413, 154 ], [ 418, 134, 434, 154 ], [ 439, 134, 512, 154 ], [ 517, 134, 530, 154 ], [ 535, 134, 544, 154 ], [ 549, 134, 592, 154 ], [ 597, 134, 613, 154 ], [ 618, 134, 674, 154 ], [ 679, 134, 733, 154 ], [ 272, 152, 296, 172 ], [ 301, 152, 363, 172 ], [ 368, 152, 394, 172 ], [ 399, 152, 408, 172 ], [ 413, 152, 545, 172 ], [ 550, 152, 574, 172 ], [ 579, 152, 626, 172 ], [ 631, 152, 706, 172 ], [ 711, 152, 727, 172 ], [ 732, 152, 805, 172 ], [ 272, 171, 296, 191 ], [ 301, 171, 363, 191 ], [ 368, 171, 394, 191 ], [ 399, 171, 408, 191 ], [ 413, 171, 515, 191 ], [ 520, 171, 544, 191 ], [ 549, 171, 627, 191 ], [ 272, 189, 296, 209 ], [ 301, 189, 363, 209 ], [ 368, 189, 381, 209 ], [ 386, 189, 437, 209 ], [ 441, 189, 507, 209 ], [ 512, 189, 540, 209 ], [ 545, 189, 560, 209 ], [ 565, 189, 583, 209 ], [ 588, 189, 612, 209 ], [ 617, 189, 695, 209 ], [ 700, 189, 716, 209 ], [ 272, 208, 296, 228 ], [ 301, 208, 363, 228 ], [ 368, 208, 394, 228 ], [ 399, 208, 453, 228 ], [ 457, 208, 523, 228 ], [ 528, 208, 544, 228 ], [ 549, 208, 583, 228 ], [ 588, 208, 655, 228 ], [ 660, 208, 710, 228 ], [ 258, 244, 309, 263 ], [ 272, 261, 307, 281 ], [ 312, 261, 348, 281 ], [ 353, 261, 378, 281 ], [ 383, 261, 425, 281 ], [ 430, 261, 439, 281 ], [ 444, 261, 496, 281 ], [ 501, 261, 547, 281 ], [ 552, 261, 661, 281 ], [ 666, 261, 679, 281 ], [ 684, 261, 738, 281 ], [ 743, 261, 813, 281 ], [ 823, 261, 839, 281 ], [ 272, 278, 316, 298 ], [ 321, 278, 362, 298 ], [ 367, 278, 444, 298 ], [ 448, 278, 471, 298 ], [ 476, 278, 555, 298 ], [ 560, 278, 607, 298 ], [ 612, 278, 686, 298 ], [ 691, 278, 718, 298 ], [ 723, 278, 742, 298 ], [ 747, 278, 808, 298 ], [ 813, 278, 833, 298 ], [ 272, 296, 315, 316 ], [ 320, 296, 380, 316 ], [ 385, 296, 426, 316 ], [ 431, 296, 477, 316 ], [ 482, 296, 530, 316 ], [ 535, 296, 579, 316 ], [ 584, 296, 677, 316 ], [ 682, 296, 698, 316 ], [ 703, 296, 758, 316 ], [ 768, 296, 845, 316 ], [ 272, 313, 336, 333 ], [ 287, 332, 356, 352 ], [ 361, 332, 409, 352 ], [ 414, 332, 488, 352 ], [ 493, 332, 516, 352 ], [ 521, 332, 590, 352 ], [ 595, 332, 629, 352 ], [ 634, 332, 678, 352 ], [ 683, 332, 733, 352 ], [ 738, 332, 767, 352 ], [ 772, 332, 808, 352 ], [ 813, 332, 849, 352 ], [ 287, 349, 349, 369 ], [ 353, 349, 429, 369 ], [ 433, 349, 482, 369 ], [ 488, 349, 507, 369 ], [ 287, 368, 352, 388 ], [ 357, 368, 373, 388 ], [ 378, 368, 412, 388 ], [ 417, 368, 461, 388 ], [ 466, 368, 515, 388 ], [ 521, 368, 562, 388 ], [ 566, 368, 571, 388 ], [ 576, 368, 605, 388 ], [ 287, 386, 321, 406 ], [ 326, 386, 400, 406 ], [ 404, 386, 453, 406 ], [ 458, 386, 485, 406 ], [ 317, 404, 333, 424 ], [ 338, 404, 368, 424 ], [ 373, 404, 389, 424 ], [ 394, 404, 403, 424 ], [ 407, 404, 455, 424 ], [ 460, 404, 534, 424 ], [ 539, 404, 585, 424 ], [ 590, 404, 655, 424 ], [ 660, 404, 727, 424 ], [ 732, 405, 756, 424 ], [ 760, 405, 804, 424 ], [ 345, 421, 374, 441 ], [ 379, 421, 403, 441 ], [ 408, 421, 470, 441 ], [ 475, 421, 488, 441 ], [ 493, 421, 543, 441 ], [ 548, 421, 618, 441 ], [ 258, 457, 345, 476 ], [ 355, 456, 382, 476 ], [ 387, 456, 428, 476 ], [ 433, 456, 525, 476 ], [ 530, 456, 550, 476 ], [ 272, 475, 354, 495 ], [ 359, 475, 389, 495 ], [ 394, 475, 421, 495 ], [ 425, 475, 444, 495 ], [ 449, 475, 473, 495 ], [ 478, 475, 513, 495 ], [ 517, 475, 540, 495 ], [ 545, 475, 619, 495 ], [ 624, 475, 699, 495 ], [ 704, 475, 729, 495 ], [ 734, 475, 738, 495 ], [ 743, 475, 772, 495 ], [ 272, 493, 363, 513 ], [ 368, 493, 384, 513 ], [ 389, 493, 443, 513 ], [ 448, 493, 493, 513 ], [ 498, 493, 521, 513 ], [ 526, 493, 574, 513 ], [ 578, 493, 660, 513 ], [ 665, 493, 690, 513 ], [ 695, 493, 699, 513 ], [ 117, 563, 130, 582 ], [ 134, 563, 180, 582 ], [ 185, 563, 200, 582 ], [ 117, 579, 179, 598 ], [ 184, 579, 193, 598 ], [ 117, 595, 169, 614 ], [ 174, 595, 197, 614 ], [ 117, 611, 168, 630 ], [ 117, 627, 199, 646 ], [ 117, 643, 187, 662 ], [ 258, 562, 280, 583 ], [ 285, 562, 356, 583 ], [ 361, 562, 376, 583 ], [ 386, 562, 427, 583 ], [ 432, 562, 463, 583 ], [ 468, 562, 530, 583 ], [ 535, 562, 563, 583 ], [ 568, 562, 619, 583 ], [ 624, 562, 632, 583 ], [ 637, 562, 681, 583 ], [ 686, 562, 709, 583 ], [ 714, 562, 769, 583 ], [ 774, 562, 860, 583 ], [ 258, 580, 281, 600 ], [ 286, 580, 360, 600 ], [ 365, 580, 435, 600 ], [ 440, 581, 475, 601 ], [ 480, 581, 518, 601 ], [ 523, 580, 565, 600 ], [ 272, 598, 358, 619 ], [ 363, 598, 393, 619 ], [ 398, 598, 406, 619 ], [ 411, 598, 473, 619 ], [ 478, 598, 524, 619 ], [ 529, 598, 553, 619 ], [ 558, 598, 598, 619 ], [ 603, 598, 680, 619 ], [ 684, 598, 786, 619 ], [ 791, 598, 808, 619 ], [ 818, 598, 846, 619 ], [ 272, 618, 339, 638 ], [ 344, 617, 373, 637 ], [ 378, 617, 419, 637 ], [ 424, 617, 467, 637 ], [ 472, 617, 481, 637 ], [ 485, 617, 594, 637 ], [ 599, 617, 666, 637 ], [ 671, 617, 736, 637 ], [ 741, 617, 834, 637 ], [ 838, 617, 855, 637 ], [ 272, 634, 328, 655 ], [ 333, 634, 342, 655 ], [ 346, 634, 392, 655 ], [ 397, 634, 474, 655 ], [ 258, 670, 346, 689 ], [ 355, 669, 417, 689 ], [ 421, 670, 456, 690 ], [ 461, 669, 485, 689 ], [ 490, 669, 599, 689 ], [ 604, 669, 684, 689 ], [ 117, 722, 128, 741 ], [ 132, 722, 188, 741 ], [ 117, 738, 180, 757 ], [ 185, 738, 208, 757 ], [ 117, 754, 168, 773 ], [ 117, 770, 199, 789 ], [ 117, 786, 187, 805 ], [ 258, 721, 328, 742 ], [ 333, 721, 367, 742 ], [ 372, 721, 408, 742 ], [ 414, 721, 422, 742 ], [ 427, 721, 559, 742 ], [ 564, 721, 612, 742 ], [ 617, 721, 691, 742 ], [ 696, 721, 776, 742 ], [ 781, 721, 822, 742 ], [ 258, 739, 330, 759 ], [ 335, 739, 358, 759 ], [ 363, 739, 411, 759 ], [ 416, 739, 471, 759 ], [ 476, 739, 562, 759 ], [ 567, 739, 590, 759 ], [ 595, 739, 704, 759 ], [ 709, 739, 778, 759 ], [ 783, 739, 836, 759 ], [ 841, 739, 859, 759 ], [ 258, 756, 324, 776 ], [ 328, 756, 397, 776 ], [ 402, 756, 440, 776 ], [ 445, 756, 503, 776 ], [ 508, 756, 569, 776 ], [ 574, 756, 590, 776 ], [ 595, 756, 650, 776 ], [ 655, 756, 710, 776 ], [ 715, 756, 749, 776 ], [ 753, 756, 810, 776 ], [ 815, 756, 844, 776 ], [ 258, 774, 343, 794 ], [ 348, 774, 425, 794 ], [ 429, 774, 503, 794 ], [ 508, 774, 531, 794 ], [ 536, 774, 560, 794 ], [ 565, 774, 589, 794 ], [ 594, 774, 642, 794 ], [ 647, 774, 721, 794 ], [ 726, 774, 770, 794 ], [ 775, 774, 818, 794 ], [ 823, 774, 862, 794 ], [ 258, 809, 271, 829 ], [ 276, 809, 319, 829 ], [ 324, 809, 391, 829 ], [ 396, 809, 405, 829 ], [ 410, 810, 434, 829 ], [ 438, 810, 482, 829 ], [ 487, 810, 552, 829 ], [ 557, 809, 639, 829 ], [ 644, 809, 653, 829 ], [ 657, 809, 705, 829 ], [ 710, 809, 765, 829 ], [ 770, 809, 820, 829 ], [ 258, 826, 317, 846 ], [ 322, 826, 331, 846 ], [ 335, 826, 381, 846 ], [ 386, 826, 472, 846 ], [ 477, 826, 501, 846 ], [ 506, 826, 567, 846 ], [ 572, 826, 612, 846 ], [ 617, 826, 698, 846 ], [ 703, 826, 732, 846 ], [ 737, 826, 775, 846 ], [ 780, 826, 835, 846 ], [ 840, 826, 869, 846 ], [ 258, 843, 320, 864 ], [ 324, 843, 348, 864 ], [ 353, 843, 408, 864 ], [ 413, 843, 473, 864 ], [ 258, 879, 302, 898 ], [ 307, 878, 312, 898 ], [ 317, 878, 346, 898 ], [ 351, 878, 386, 898 ], [ 391, 878, 421, 898 ], [ 425, 878, 466, 898 ], [ 471, 878, 501, 898 ], [ 506, 878, 552, 898 ], [ 557, 878, 645, 898 ], [ 650, 878, 679, 898 ], [ 684, 879, 740, 899 ], [ 745, 879, 804, 899 ], [ 809, 878, 859, 898 ], [ 258, 896, 277, 916 ], [ 282, 896, 329, 916 ], [ 333, 896, 350, 916 ], [ 355, 896, 408, 916 ], [ 413, 896, 486, 916 ], [ 491, 896, 511, 916 ], [ 515, 896, 534, 916 ], [ 539, 896, 602, 916 ], [ 607, 896, 672, 916 ], [ 677, 896, 722, 916 ], [ 727, 896, 750, 916 ], [ 755, 896, 821, 916 ], [ 258, 913, 318, 933 ], [ 323, 913, 347, 933 ], [ 352, 913, 402, 933 ], [ 407, 913, 427, 933 ], [ 432, 913, 440, 933 ], [ 445, 913, 507, 933 ], [ 512, 913, 572, 933 ], [ 576, 913, 600, 933 ], [ 605, 913, 655, 933 ], [ 660, 913, 703, 933 ], [ 708, 913, 764, 933 ], [ 769, 913, 797, 933 ], [ 802, 913, 848, 933 ] ]
a. Determining VA accredited attorneys and agents may only charge fees for services What provided after the RO has issued a decision and a NOD has been filed with Constitutes a respect to a “case.” Case When making a determination on fees apply the following principles: An original claim, a reopened claim, and a claim for increase are each separate even if they address the same disability. “cases,” Each request for DIC, Pension, or Death Pension is a separate “case.” Where the benefit sought is disability compensation, the case consists of an assertion of entitlement to compensation based on a specific disability. Distinct and separate symptoms are distinct disabilities and, therefore, distinct cases. However, different diagnoses assigned to the same symptoms do not represent different disabilities and, therefore, are not necessarily separate cases. Examples in following blocks illustrate what constitutes a for the “case” purpose of determining whether fees may be charged. For more information on References: The case concept, see 10 Vet.App. 104 (1997) (docket no. 96-0017) , Distinct symptomatology, see , 6 Vet. App. 259 (1994), Different diagnoses assigned to the same symptoms, see , 23 Vet. App. 1 (2009). b. Example 1 Facts – What The Veteran seeks service connection for (1) posttraumatic stress disorder Constitutes a (PTSD) and (2) hearing loss. “Case” The RO denies service connection for PTSD and defers the issue of service connection for hearing loss. After the Veteran files an NOD with the denial of service connection for PTSD, the RO awards service connection for hearing loss. Result The request for service connection for PTSD and the request for Veteran’s service connection for hearing loss constitute separate cases because they involve distinct disabilities. Fees may not be paid based on the award of service connection for hearing loss because the award was made in the initial decision, before an NOD could have been filed. c. Example 2 Facts – What On August 4, 2008, the Veteran files a claim for depression. At that time, Constitutes a the Veteran was not receiving any VA benefits and did not have any other “Case” claims pending. The RO denied service connection for depression and the
a. Determining What Constitutes a Case VA accredited attorneys and agents may only charge fees for services provided after the RO has issued a decision and a NOD has been filed with respect to a “case.” When making a determination on fees apply the following principles: An original claim, a reopened claim, and a claim for increase are each separate “cases,” even if they address the same disability. Each request for DIC, Pension, or Death Pension is a separate “case.” Where the benefit sought is disability compensation, the case consists of an assertion of entitlement to compensation based on a specific disability. Distinct and separate symptoms are distinct disabilities and, therefore, distinct cases. However, different diagnoses assigned to the same symptoms do not represent different disabilities and, therefore, are not necessarily separate cases. Examples in following blocks illustrate what constitutes a “case” for the purpose of determining whether fees may be charged. References: For more information on The case concept, see , 10 Vet.App. 104 (1997) (docket no. 96-0017) Distinct symptomatology, see , 6 Vet. App. 259 (1994), Different diagnoses assigned to the same symptoms, see , 23 Vet. App. 1 (2009). b. Example 1 – What Constitutes a “Case” Facts The Veteran seeks service connection for (1) posttraumatic stress disorder (PTSD) and (2) hearing loss. The RO denies service connection for PTSD and defers the issue of service connection for hearing loss. After the Veteran files an NOD with the denial of service connection for PTSD, the RO awards service connection for hearing loss. Result The Veteran’s request for service connection for PTSD and the request for service connection for hearing loss constitute separate cases because they involve distinct disabilities. Fees may not be paid based on the award of service connection for hearing loss because the award was made in the initial decision, before an NOD could have been filed. c. Example 2 – What Constitutes a “Case” Facts On August 4, 2008, the Veteran files a claim for depression. At that time, the Veteran was not receiving any VA benefits and did not have any other claims pending. The RO denied service connection for depression and the
0.873151
[ 0, 1, 13, 29, 30, 35, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 67, 60, 61, 62, 63, 64, 65, 66, 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, 143, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 156, 152, 153, 154, 155, 157, 158, 159, 160, 168, 161, 162, 163, 164, 165, 166, 167, 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, 196, 197, 208, 209, 215, 195, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 210, 211, 212, 213, 214, 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, 267, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 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, 316, 317, 332, 333, 348, 315, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359 ]
M21-1MRI_3_SecC.docx
task-1431-789
14
[ [ 117, 61, 131, 81 ], [ 140, 61, 237, 81 ], [ 258, 61, 287, 81 ], [ 291, 61, 372, 81 ], [ 377, 61, 449, 81 ], [ 454, 61, 482, 81 ], [ 487, 61, 537, 81 ], [ 542, 61, 576, 81 ], [ 581, 61, 616, 81 ], [ 620, 61, 673, 81 ], [ 678, 61, 709, 81 ], [ 714, 61, 737, 81 ], [ 742, 61, 805, 81 ], [ 117, 77, 160, 97 ], [ 258, 78, 328, 98 ], [ 333, 78, 369, 98 ], [ 374, 78, 398, 98 ], [ 403, 78, 430, 98 ], [ 435, 78, 461, 98 ], [ 466, 78, 515, 98 ], [ 520, 78, 528, 98 ], [ 533, 78, 599, 98 ], [ 604, 78, 632, 98 ], [ 637, 78, 645, 98 ], [ 650, 78, 693, 98 ], [ 698, 78, 724, 98 ], [ 729, 78, 766, 98 ], [ 771, 78, 807, 98 ], [ 811, 78, 846, 98 ], [ 117, 93, 204, 113 ], [ 209, 93, 218, 113 ], [ 258, 96, 314, 116 ], [ 319, 96, 334, 116 ], [ 339, 96, 348, 116 ], [ 353, 98, 408, 115 ], [ 117, 109, 154, 129 ], [ 258, 131, 305, 151 ], [ 310, 131, 369, 151 ], [ 374, 131, 382, 151 ], [ 387, 131, 496, 151 ], [ 501, 131, 521, 151 ], [ 526, 131, 557, 151 ], [ 562, 131, 606, 151 ], [ 611, 131, 635, 151 ], [ 640, 131, 716, 151 ], [ 721, 131, 803, 151 ], [ 272, 149, 296, 169 ], [ 301, 149, 362, 169 ], [ 367, 149, 416, 169 ], [ 421, 149, 429, 169 ], [ 434, 149, 506, 169 ], [ 511, 149, 559, 169 ], [ 564, 149, 593, 169 ], [ 598, 149, 606, 169 ], [ 611, 149, 655, 169 ], [ 660, 149, 683, 169 ], [ 687, 149, 752, 169 ], [ 757, 149, 781, 169 ], [ 785, 149, 821, 169 ], [ 272, 166, 337, 187 ], [ 410, 166, 447, 187 ], [ 452, 166, 464, 187 ], [ 469, 166, 503, 187 ], [ 508, 166, 566, 187 ], [ 571, 166, 595, 187 ], [ 600, 166, 640, 187 ], [ 645, 166, 723, 187 ], [ 342, 169, 405, 186 ], [ 272, 185, 311, 205 ], [ 316, 185, 373, 205 ], [ 378, 185, 401, 205 ], [ 406, 185, 444, 205 ], [ 449, 185, 517, 205 ], [ 522, 185, 538, 205 ], [ 543, 185, 589, 205 ], [ 594, 185, 656, 205 ], [ 661, 185, 674, 205 ], [ 679, 185, 688, 205 ], [ 693, 185, 757, 205 ], [ 762, 188, 818, 204 ], [ 272, 204, 325, 224 ], [ 330, 204, 354, 224 ], [ 358, 204, 413, 224 ], [ 418, 204, 470, 224 ], [ 475, 204, 488, 224 ], [ 493, 204, 566, 224 ], [ 571, 204, 685, 224 ], [ 690, 204, 714, 224 ], [ 718, 204, 752, 224 ], [ 757, 204, 819, 224 ], [ 824, 204, 841, 224 ], [ 845, 204, 864, 224 ], [ 272, 221, 342, 241 ], [ 347, 221, 363, 241 ], [ 368, 221, 456, 241 ], [ 461, 221, 477, 241 ], [ 482, 221, 590, 241 ], [ 595, 221, 640, 241 ], [ 645, 221, 664, 241 ], [ 669, 221, 678, 241 ], [ 683, 221, 744, 241 ], [ 749, 221, 827, 241 ], [ 288, 239, 350, 260 ], [ 355, 239, 384, 260 ], [ 389, 239, 453, 260 ], [ 458, 239, 539, 260 ], [ 544, 239, 567, 260 ], [ 572, 239, 630, 260 ], [ 635, 239, 720, 260 ], [ 725, 239, 758, 260 ], [ 763, 239, 838, 260 ], [ 288, 257, 346, 277 ], [ 351, 257, 397, 277 ], [ 288, 276, 365, 296 ], [ 370, 276, 437, 296 ], [ 442, 276, 520, 296 ], [ 525, 276, 592, 296 ], [ 597, 276, 612, 296 ], [ 617, 276, 641, 296 ], [ 646, 276, 686, 296 ], [ 691, 276, 772, 296 ], [ 777, 276, 797, 296 ], [ 801, 276, 826, 296 ], [ 288, 293, 360, 313 ], [ 365, 293, 432, 313 ], [ 437, 293, 523, 313 ], [ 527, 293, 561, 313 ], [ 565, 293, 641, 313 ], [ 646, 293, 670, 313 ], [ 675, 293, 700, 313 ], [ 705, 293, 792, 313 ], [ 797, 293, 861, 313 ], [ 288, 310, 334, 330 ], [ 258, 345, 336, 365 ], [ 341, 345, 356, 365 ], [ 361, 345, 437, 365 ], [ 442, 345, 493, 365 ], [ 498, 345, 567, 365 ], [ 572, 345, 610, 365 ], [ 614, 345, 699, 365 ], [ 704, 345, 712, 365 ], [ 773, 345, 796, 365 ], [ 801, 345, 825, 365 ], [ 717, 348, 768, 364 ], [ 258, 363, 320, 383 ], [ 325, 363, 342, 383 ], [ 346, 363, 441, 383 ], [ 446, 363, 509, 383 ], [ 514, 363, 546, 383 ], [ 551, 363, 585, 383 ], [ 589, 363, 608, 383 ], [ 613, 363, 680, 383 ], [ 363, 397, 390, 418 ], [ 395, 397, 435, 418 ], [ 440, 397, 533, 418 ], [ 538, 397, 557, 418 ], [ 258, 399, 353, 418 ], [ 272, 416, 303, 436 ], [ 308, 416, 342, 436 ], [ 346, 416, 412, 436 ], [ 417, 416, 442, 436 ], [ 457, 416, 477, 436 ], [ 482, 416, 553, 436 ], [ 558, 416, 588, 436 ], [ 593, 416, 645, 436 ], [ 650, 416, 709, 436 ], [ 713, 416, 738, 436 ], [ 743, 416, 815, 436 ], [ 447, 418, 452, 436 ], [ 272, 435, 335, 455 ], [ 340, 435, 476, 455 ], [ 481, 435, 506, 455 ], [ 511, 435, 516, 455 ], [ 521, 435, 531, 455 ], [ 535, 435, 569, 455 ], [ 573, 435, 612, 455 ], [ 617, 435, 646, 455 ], [ 652, 435, 709, 455 ], [ 272, 453, 344, 473 ], [ 349, 453, 426, 473 ], [ 431, 453, 499, 473 ], [ 504, 453, 519, 473 ], [ 524, 453, 548, 473 ], [ 553, 453, 593, 473 ], [ 598, 453, 684, 473 ], [ 689, 453, 714, 473 ], [ 718, 453, 723, 473 ], [ 728, 453, 748, 473 ], [ 753, 453, 786, 473 ], [ 791, 453, 829, 473 ], [ 834, 453, 844, 473 ], [ 272, 470, 330, 490 ], [ 117, 563, 132, 583 ], [ 141, 563, 209, 583 ], [ 213, 563, 222, 583 ], [ 258, 564, 303, 584 ], [ 227, 566, 236, 581 ], [ 117, 579, 160, 599 ], [ 272, 581, 303, 602 ], [ 308, 581, 370, 602 ], [ 375, 581, 417, 602 ], [ 422, 581, 478, 602 ], [ 482, 581, 569, 602 ], [ 574, 581, 596, 602 ], [ 601, 581, 624, 602 ], [ 629, 581, 736, 602 ], [ 741, 581, 784, 602 ], [ 789, 581, 853, 602 ], [ 117, 595, 204, 615 ], [ 209, 595, 218, 615 ], [ 272, 599, 334, 619 ], [ 338, 599, 367, 619 ], [ 372, 599, 394, 619 ], [ 399, 599, 458, 619 ], [ 463, 599, 499, 619 ], [ 117, 613, 172, 629 ], [ 272, 617, 303, 637 ], [ 308, 617, 335, 637 ], [ 340, 617, 390, 637 ], [ 395, 617, 450, 637 ], [ 455, 617, 541, 637 ], [ 546, 617, 569, 637 ], [ 574, 617, 622, 637 ], [ 627, 617, 655, 637 ], [ 660, 617, 708, 637 ], [ 713, 617, 737, 637 ], [ 742, 617, 781, 637 ], [ 786, 617, 802, 637 ], [ 807, 617, 863, 637 ], [ 272, 635, 358, 655 ], [ 363, 635, 386, 655 ], [ 391, 635, 450, 655 ], [ 455, 635, 490, 655 ], [ 272, 653, 314, 673 ], [ 319, 653, 343, 673 ], [ 347, 653, 410, 673 ], [ 414, 653, 448, 673 ], [ 453, 653, 472, 673 ], [ 477, 653, 519, 673 ], [ 524, 653, 559, 673 ], [ 564, 653, 588, 673 ], [ 593, 653, 640, 673 ], [ 645, 653, 662, 673 ], [ 667, 653, 722, 673 ], [ 727, 653, 813, 673 ], [ 818, 653, 841, 673 ], [ 272, 671, 325, 691 ], [ 330, 671, 354, 691 ], [ 359, 671, 386, 691 ], [ 391, 671, 447, 691 ], [ 452, 671, 507, 691 ], [ 512, 671, 598, 691 ], [ 603, 671, 626, 691 ], [ 631, 671, 690, 691 ], [ 694, 671, 730, 691 ], [ 258, 707, 310, 727 ], [ 258, 723, 289, 743 ], [ 375, 723, 431, 743 ], [ 436, 723, 459, 743 ], [ 464, 723, 519, 743 ], [ 524, 723, 611, 743 ], [ 615, 723, 638, 743 ], [ 643, 723, 691, 743 ], [ 696, 723, 725, 743 ], [ 729, 723, 753, 743 ], [ 758, 723, 815, 743 ], [ 820, 723, 843, 743 ], [ 294, 725, 370, 742 ], [ 258, 740, 314, 761 ], [ 319, 740, 405, 761 ], [ 410, 740, 433, 761 ], [ 437, 740, 496, 761 ], [ 501, 740, 531, 761 ], [ 537, 740, 613, 761 ], [ 618, 740, 682, 761 ], [ 687, 740, 728, 761 ], [ 733, 740, 795, 761 ], [ 800, 740, 834, 761 ], [ 258, 758, 317, 778 ], [ 322, 758, 380, 778 ], [ 385, 758, 474, 778 ], [ 484, 758, 520, 778 ], [ 525, 758, 559, 778 ], [ 564, 758, 589, 778 ], [ 594, 758, 612, 778 ], [ 617, 758, 651, 778 ], [ 656, 758, 700, 778 ], [ 705, 758, 725, 778 ], [ 730, 758, 754, 778 ], [ 759, 758, 807, 778 ], [ 811, 758, 828, 778 ], [ 258, 775, 314, 795 ], [ 319, 775, 405, 795 ], [ 410, 775, 433, 795 ], [ 437, 775, 496, 795 ], [ 501, 775, 531, 795 ], [ 536, 775, 599, 795 ], [ 604, 775, 627, 795 ], [ 632, 775, 680, 795 ], [ 685, 775, 715, 795 ], [ 720, 775, 763, 795 ], [ 768, 775, 783, 795 ], [ 788, 775, 812, 795 ], [ 817, 775, 863, 795 ], [ 258, 792, 329, 813 ], [ 334, 792, 384, 813 ], [ 388, 792, 407, 813 ], [ 412, 792, 454, 813 ], [ 459, 792, 503, 813 ], [ 508, 792, 545, 813 ], [ 550, 792, 587, 813 ], [ 592, 792, 632, 813 ], [ 117, 863, 130, 882 ], [ 139, 863, 207, 882 ], [ 211, 863, 220, 882 ], [ 258, 864, 303, 883 ], [ 225, 865, 234, 880 ], [ 117, 879, 160, 898 ], [ 272, 881, 296, 901 ], [ 301, 881, 358, 901 ], [ 363, 881, 377, 901 ], [ 382, 881, 426, 901 ], [ 431, 881, 455, 901 ], [ 460, 881, 522, 901 ], [ 527, 881, 561, 901 ], [ 566, 881, 575, 901 ], [ 579, 881, 623, 901 ], [ 628, 881, 651, 901 ], [ 656, 881, 744, 901 ], [ 754, 881, 774, 901 ], [ 779, 881, 808, 901 ], [ 813, 881, 853, 901 ], [ 117, 895, 204, 914 ], [ 209, 895, 218, 914 ], [ 272, 898, 296, 918 ], [ 301, 898, 363, 918 ], [ 368, 898, 399, 918 ], [ 404, 898, 429, 918 ], [ 434, 898, 507, 918 ], [ 511, 898, 540, 918 ], [ 545, 898, 573, 918 ], [ 578, 898, 640, 918 ], [ 645, 898, 673, 918 ], [ 678, 898, 703, 918 ], [ 708, 898, 733, 918 ], [ 738, 898, 775, 918 ], [ 780, 898, 809, 918 ], [ 813, 898, 853, 918 ], [ 117, 913, 172, 928 ], [ 272, 915, 324, 936 ], [ 329, 915, 396, 936 ], [ 406, 915, 437, 936 ], [ 442, 915, 469, 936 ], [ 474, 915, 526, 936 ], [ 531, 915, 587, 936 ], [ 592, 915, 678, 936 ], [ 683, 915, 706, 936 ], [ 710, 915, 794, 936 ], [ 799, 915, 828, 936 ], [ 832, 915, 856, 936 ] ]
[ [ 117, 61, 131, 81 ], [ 140, 61, 237, 81 ], [ 117, 77, 160, 97 ], [ 117, 93, 204, 113 ], [ 209, 93, 218, 113 ], [ 117, 109, 154, 129 ], [ 258, 61, 287, 81 ], [ 291, 61, 372, 81 ], [ 377, 61, 449, 81 ], [ 454, 61, 482, 81 ], [ 487, 61, 537, 81 ], [ 542, 61, 576, 81 ], [ 581, 61, 616, 81 ], [ 620, 61, 673, 81 ], [ 678, 61, 709, 81 ], [ 714, 61, 737, 81 ], [ 742, 61, 805, 81 ], [ 258, 78, 328, 98 ], [ 333, 78, 369, 98 ], [ 374, 78, 398, 98 ], [ 403, 78, 430, 98 ], [ 435, 78, 461, 98 ], [ 466, 78, 515, 98 ], [ 520, 78, 528, 98 ], [ 533, 78, 599, 98 ], [ 604, 78, 632, 98 ], [ 637, 78, 645, 98 ], [ 650, 78, 693, 98 ], [ 698, 78, 724, 98 ], [ 729, 78, 766, 98 ], [ 771, 78, 807, 98 ], [ 811, 78, 846, 98 ], [ 258, 96, 314, 116 ], [ 319, 96, 334, 116 ], [ 339, 96, 348, 116 ], [ 353, 98, 408, 115 ], [ 258, 131, 305, 151 ], [ 310, 131, 369, 151 ], [ 374, 131, 382, 151 ], [ 387, 131, 496, 151 ], [ 501, 131, 521, 151 ], [ 526, 131, 557, 151 ], [ 562, 131, 606, 151 ], [ 611, 131, 635, 151 ], [ 640, 131, 716, 151 ], [ 721, 131, 803, 151 ], [ 272, 149, 296, 169 ], [ 301, 149, 362, 169 ], [ 367, 149, 416, 169 ], [ 421, 149, 429, 169 ], [ 434, 149, 506, 169 ], [ 511, 149, 559, 169 ], [ 564, 149, 593, 169 ], [ 598, 149, 606, 169 ], [ 611, 149, 655, 169 ], [ 660, 149, 683, 169 ], [ 687, 149, 752, 169 ], [ 757, 149, 781, 169 ], [ 785, 149, 821, 169 ], [ 272, 166, 337, 187 ], [ 342, 169, 405, 186 ], [ 410, 166, 447, 187 ], [ 452, 166, 464, 187 ], [ 469, 166, 503, 187 ], [ 508, 166, 566, 187 ], [ 571, 166, 595, 187 ], [ 600, 166, 640, 187 ], [ 645, 166, 723, 187 ], [ 272, 185, 311, 205 ], [ 316, 185, 373, 205 ], [ 378, 185, 401, 205 ], [ 406, 185, 444, 205 ], [ 449, 185, 517, 205 ], [ 522, 185, 538, 205 ], [ 543, 185, 589, 205 ], [ 594, 185, 656, 205 ], [ 661, 185, 674, 205 ], [ 679, 185, 688, 205 ], [ 693, 185, 757, 205 ], [ 762, 188, 818, 204 ], [ 272, 204, 325, 224 ], [ 330, 204, 354, 224 ], [ 358, 204, 413, 224 ], [ 418, 204, 470, 224 ], [ 475, 204, 488, 224 ], [ 493, 204, 566, 224 ], [ 571, 204, 685, 224 ], [ 690, 204, 714, 224 ], [ 718, 204, 752, 224 ], [ 757, 204, 819, 224 ], [ 824, 204, 841, 224 ], [ 845, 204, 864, 224 ], [ 272, 221, 342, 241 ], [ 347, 221, 363, 241 ], [ 368, 221, 456, 241 ], [ 461, 221, 477, 241 ], [ 482, 221, 590, 241 ], [ 595, 221, 640, 241 ], [ 645, 221, 664, 241 ], [ 669, 221, 678, 241 ], [ 683, 221, 744, 241 ], [ 749, 221, 827, 241 ], [ 288, 239, 350, 260 ], [ 355, 239, 384, 260 ], [ 389, 239, 453, 260 ], [ 458, 239, 539, 260 ], [ 544, 239, 567, 260 ], [ 572, 239, 630, 260 ], [ 635, 239, 720, 260 ], [ 725, 239, 758, 260 ], [ 763, 239, 838, 260 ], [ 288, 257, 346, 277 ], [ 351, 257, 397, 277 ], [ 288, 276, 365, 296 ], [ 370, 276, 437, 296 ], [ 442, 276, 520, 296 ], [ 525, 276, 592, 296 ], [ 597, 276, 612, 296 ], [ 617, 276, 641, 296 ], [ 646, 276, 686, 296 ], [ 691, 276, 772, 296 ], [ 777, 276, 797, 296 ], [ 801, 276, 826, 296 ], [ 288, 293, 360, 313 ], [ 365, 293, 432, 313 ], [ 437, 293, 523, 313 ], [ 527, 293, 561, 313 ], [ 565, 293, 641, 313 ], [ 646, 293, 670, 313 ], [ 675, 293, 700, 313 ], [ 705, 293, 792, 313 ], [ 797, 293, 861, 313 ], [ 288, 310, 334, 330 ], [ 258, 345, 336, 365 ], [ 341, 345, 356, 365 ], [ 361, 345, 437, 365 ], [ 442, 345, 493, 365 ], [ 498, 345, 567, 365 ], [ 572, 345, 610, 365 ], [ 614, 345, 699, 365 ], [ 704, 345, 712, 365 ], [ 717, 348, 768, 364 ], [ 773, 345, 796, 365 ], [ 801, 345, 825, 365 ], [ 258, 363, 320, 383 ], [ 325, 363, 342, 383 ], [ 346, 363, 441, 383 ], [ 446, 363, 509, 383 ], [ 514, 363, 546, 383 ], [ 551, 363, 585, 383 ], [ 589, 363, 608, 383 ], [ 613, 363, 680, 383 ], [ 258, 399, 353, 418 ], [ 363, 397, 390, 418 ], [ 395, 397, 435, 418 ], [ 440, 397, 533, 418 ], [ 538, 397, 557, 418 ], [ 272, 416, 303, 436 ], [ 308, 416, 342, 436 ], [ 346, 416, 412, 436 ], [ 417, 416, 442, 436 ], [ 447, 418, 452, 436 ], [ 457, 416, 477, 436 ], [ 482, 416, 553, 436 ], [ 558, 416, 588, 436 ], [ 593, 416, 645, 436 ], [ 650, 416, 709, 436 ], [ 713, 416, 738, 436 ], [ 743, 416, 815, 436 ], [ 272, 435, 335, 455 ], [ 340, 435, 476, 455 ], [ 481, 435, 506, 455 ], [ 511, 435, 516, 455 ], [ 521, 435, 531, 455 ], [ 535, 435, 569, 455 ], [ 573, 435, 612, 455 ], [ 617, 435, 646, 455 ], [ 652, 435, 709, 455 ], [ 272, 453, 344, 473 ], [ 349, 453, 426, 473 ], [ 431, 453, 499, 473 ], [ 504, 453, 519, 473 ], [ 524, 453, 548, 473 ], [ 553, 453, 593, 473 ], [ 598, 453, 684, 473 ], [ 689, 453, 714, 473 ], [ 718, 453, 723, 473 ], [ 728, 453, 748, 473 ], [ 753, 453, 786, 473 ], [ 791, 453, 829, 473 ], [ 834, 453, 844, 473 ], [ 272, 470, 330, 490 ], [ 117, 563, 132, 583 ], [ 141, 563, 209, 583 ], [ 213, 563, 222, 583 ], [ 227, 566, 236, 581 ], [ 117, 579, 160, 599 ], [ 117, 595, 204, 615 ], [ 209, 595, 218, 615 ], [ 117, 613, 172, 629 ], [ 258, 564, 303, 584 ], [ 272, 581, 303, 602 ], [ 308, 581, 370, 602 ], [ 375, 581, 417, 602 ], [ 422, 581, 478, 602 ], [ 482, 581, 569, 602 ], [ 574, 581, 596, 602 ], [ 601, 581, 624, 602 ], [ 629, 581, 736, 602 ], [ 741, 581, 784, 602 ], [ 789, 581, 853, 602 ], [ 272, 599, 334, 619 ], [ 338, 599, 367, 619 ], [ 372, 599, 394, 619 ], [ 399, 599, 458, 619 ], [ 463, 599, 499, 619 ], [ 272, 617, 303, 637 ], [ 308, 617, 335, 637 ], [ 340, 617, 390, 637 ], [ 395, 617, 450, 637 ], [ 455, 617, 541, 637 ], [ 546, 617, 569, 637 ], [ 574, 617, 622, 637 ], [ 627, 617, 655, 637 ], [ 660, 617, 708, 637 ], [ 713, 617, 737, 637 ], [ 742, 617, 781, 637 ], [ 786, 617, 802, 637 ], [ 807, 617, 863, 637 ], [ 272, 635, 358, 655 ], [ 363, 635, 386, 655 ], [ 391, 635, 450, 655 ], [ 455, 635, 490, 655 ], [ 272, 653, 314, 673 ], [ 319, 653, 343, 673 ], [ 347, 653, 410, 673 ], [ 414, 653, 448, 673 ], [ 453, 653, 472, 673 ], [ 477, 653, 519, 673 ], [ 524, 653, 559, 673 ], [ 564, 653, 588, 673 ], [ 593, 653, 640, 673 ], [ 645, 653, 662, 673 ], [ 667, 653, 722, 673 ], [ 727, 653, 813, 673 ], [ 818, 653, 841, 673 ], [ 272, 671, 325, 691 ], [ 330, 671, 354, 691 ], [ 359, 671, 386, 691 ], [ 391, 671, 447, 691 ], [ 452, 671, 507, 691 ], [ 512, 671, 598, 691 ], [ 603, 671, 626, 691 ], [ 631, 671, 690, 691 ], [ 694, 671, 730, 691 ], [ 258, 707, 310, 727 ], [ 258, 723, 289, 743 ], [ 294, 725, 370, 742 ], [ 375, 723, 431, 743 ], [ 436, 723, 459, 743 ], [ 464, 723, 519, 743 ], [ 524, 723, 611, 743 ], [ 615, 723, 638, 743 ], [ 643, 723, 691, 743 ], [ 696, 723, 725, 743 ], [ 729, 723, 753, 743 ], [ 758, 723, 815, 743 ], [ 820, 723, 843, 743 ], [ 258, 740, 314, 761 ], [ 319, 740, 405, 761 ], [ 410, 740, 433, 761 ], [ 437, 740, 496, 761 ], [ 501, 740, 531, 761 ], [ 537, 740, 613, 761 ], [ 618, 740, 682, 761 ], [ 687, 740, 728, 761 ], [ 733, 740, 795, 761 ], [ 800, 740, 834, 761 ], [ 258, 758, 317, 778 ], [ 322, 758, 380, 778 ], [ 385, 758, 474, 778 ], [ 484, 758, 520, 778 ], [ 525, 758, 559, 778 ], [ 564, 758, 589, 778 ], [ 594, 758, 612, 778 ], [ 617, 758, 651, 778 ], [ 656, 758, 700, 778 ], [ 705, 758, 725, 778 ], [ 730, 758, 754, 778 ], [ 759, 758, 807, 778 ], [ 811, 758, 828, 778 ], [ 258, 775, 314, 795 ], [ 319, 775, 405, 795 ], [ 410, 775, 433, 795 ], [ 437, 775, 496, 795 ], [ 501, 775, 531, 795 ], [ 536, 775, 599, 795 ], [ 604, 775, 627, 795 ], [ 632, 775, 680, 795 ], [ 685, 775, 715, 795 ], [ 720, 775, 763, 795 ], [ 768, 775, 783, 795 ], [ 788, 775, 812, 795 ], [ 817, 775, 863, 795 ], [ 258, 792, 329, 813 ], [ 334, 792, 384, 813 ], [ 388, 792, 407, 813 ], [ 412, 792, 454, 813 ], [ 459, 792, 503, 813 ], [ 508, 792, 545, 813 ], [ 550, 792, 587, 813 ], [ 592, 792, 632, 813 ], [ 117, 863, 130, 882 ], [ 139, 863, 207, 882 ], [ 211, 863, 220, 882 ], [ 225, 865, 234, 880 ], [ 117, 879, 160, 898 ], [ 117, 895, 204, 914 ], [ 209, 895, 218, 914 ], [ 117, 913, 172, 928 ], [ 258, 864, 303, 883 ], [ 272, 881, 296, 901 ], [ 301, 881, 358, 901 ], [ 363, 881, 377, 901 ], [ 382, 881, 426, 901 ], [ 431, 881, 455, 901 ], [ 460, 881, 522, 901 ], [ 527, 881, 561, 901 ], [ 566, 881, 575, 901 ], [ 579, 881, 623, 901 ], [ 628, 881, 651, 901 ], [ 656, 881, 744, 901 ], [ 754, 881, 774, 901 ], [ 779, 881, 808, 901 ], [ 813, 881, 853, 901 ], [ 272, 898, 296, 918 ], [ 301, 898, 363, 918 ], [ 368, 898, 399, 918 ], [ 404, 898, 429, 918 ], [ 434, 898, 507, 918 ], [ 511, 898, 540, 918 ], [ 545, 898, 573, 918 ], [ 578, 898, 640, 918 ], [ 645, 898, 673, 918 ], [ 678, 898, 703, 918 ], [ 708, 898, 733, 918 ], [ 738, 898, 775, 918 ], [ 780, 898, 809, 918 ], [ 813, 898, 853, 918 ], [ 272, 915, 324, 936 ], [ 329, 915, 396, 936 ], [ 406, 915, 437, 936 ], [ 442, 915, 469, 936 ], [ 474, 915, 526, 936 ], [ 531, 915, 587, 936 ], [ 592, 915, 678, 936 ], [ 683, 915, 706, 936 ], [ 710, 915, 794, 936 ], [ 799, 915, 828, 936 ], [ 832, 915, 856, 936 ] ]
Section C. Income Verification Match (IVM) Overview This section contains the following topic: In This Section _______________________________________________________________
Section C. Income Verification Match (IVM) Overview In This Section This section contains the following topic: _______________________________________________________________
0.721399
[ 0, 1, 2, 3, 4, 5, 6, 13, 14, 15, 7, 8, 9, 10, 11, 12, 16 ]
M21-1MR_X_9_C.docx
task-1431-801
0
[ [ 176, 88, 270, 115 ], [ 278, 88, 304, 115 ], [ 318, 88, 409, 115 ], [ 417, 88, 559, 115 ], [ 567, 88, 642, 115 ], [ 649, 88, 713, 115 ], [ 117, 126, 233, 154 ], [ 260, 217, 295, 237 ], [ 300, 217, 355, 237 ], [ 360, 217, 425, 237 ], [ 430, 217, 454, 237 ], [ 459, 217, 535, 237 ], [ 540, 217, 585, 237 ], [ 117, 218, 134, 237 ], [ 139, 218, 173, 237 ], [ 177, 218, 233, 237 ], [ 257, 595, 875, 615 ] ]
[ [ 176, 88, 270, 115 ], [ 278, 88, 304, 115 ], [ 318, 88, 409, 115 ], [ 417, 88, 559, 115 ], [ 567, 88, 642, 115 ], [ 649, 88, 713, 115 ], [ 117, 126, 233, 154 ], [ 117, 218, 134, 237 ], [ 139, 218, 173, 237 ], [ 177, 218, 233, 237 ], [ 260, 217, 295, 237 ], [ 300, 217, 355, 237 ], [ 360, 217, 425, 237 ], [ 430, 217, 454, 237 ], [ 459, 217, 535, 237 ], [ 540, 217, 585, 237 ], [ 257, 595, 875, 615 ] ]
This topic contains information on effective dates of adjustment for pension Introduction and DIC, including Parents’ the effective date for Improved Pension and DIC, and Parents’ payer and recipient verify Department of Veterans Affairs (VA) information. Change Date March 30, 2015 a. Effective In Improved Pension and DIC cases, the effective date of reduction Parents’ Date: or termination is the first of the month following the month the income was Improved first received. Pension and DIC Parents’ In the notice of proposed adverse action, ask the beneficiary to furnish VA with the date income was first received. If the income payer or income recipient does not furnish the specific Note: date that the income was first paid, but shows the calendar year it was paid, assume that it was received in January and propose to adjust effective February 1. If both the payer and the income recipient respond within the 30-day waiting b. Payer and Recipient period verifying the information VA received from the match, send a notice Verify VA of proposed adverse action based on the income report. recipient’s Information If there is only one income year, there is no need to mention the reply Note: from the payer. 7. Differing Responses From Payer and Recipient
Introduction This topic contains information on effective dates of adjustment for pension and Parents’ DIC, including the effective date for Improved Pension and Parents’ DIC, and payer and recipient verify Department of Veterans Affairs (VA) information. Change Date March 30, 2015 a. Effective Date: Improved Pension and Parents’ DIC In Improved Pension and Parents’ DIC cases, the effective date of reduction or termination is the first of the month following the month the income was first received. In the notice of proposed adverse action, ask the beneficiary to furnish VA with the date income was first received. Note: If the income payer or income recipient does not furnish the specific date that the income was first paid, but shows the calendar year it was paid, assume that it was received in January and propose to adjust effective February 1. b. Payer and Recipient Verify VA Information If both the payer and the income recipient respond within the 30-day waiting period verifying the information VA received from the match, send a notice of proposed adverse action based on the income recipient’s report. Note: If there is only one income year, there is no need to mention the reply from the payer. 7. Differing Responses From Payer and Recipient
0.809262
[ 11, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 15, 13, 14, 16, 17, 18, 19, 20, 21, 22, 25, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 55, 70, 73, 74, 76, 75, 43, 44, 45, 46, 54, 47, 48, 49, 50, 51, 52, 53, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 109, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 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, 152, 153, 154, 155, 168, 169, 180, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 170, 171, 172, 173, 174, 175, 176, 177, 179, 178, 196, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206 ]
M21-1MR_X_9_C.docx
task-1431-801
10
[ [ 258, 88, 293, 108 ], [ 298, 88, 337, 108 ], [ 342, 88, 408, 108 ], [ 413, 88, 505, 108 ], [ 510, 88, 530, 108 ], [ 535, 88, 603, 108 ], [ 608, 88, 648, 108 ], [ 653, 88, 669, 108 ], [ 674, 88, 760, 108 ], [ 765, 88, 788, 108 ], [ 793, 88, 854, 108 ], [ 117, 89, 216, 108 ], [ 258, 106, 287, 126 ], [ 361, 106, 399, 126 ], [ 404, 106, 478, 126 ], [ 291, 108, 356, 125 ], [ 271, 142, 295, 162 ], [ 300, 142, 369, 162 ], [ 374, 142, 406, 162 ], [ 411, 142, 434, 162 ], [ 439, 142, 515, 162 ], [ 520, 142, 582, 162 ], [ 587, 142, 615, 162 ], [ 689, 142, 728, 162 ], [ 733, 142, 761, 162 ], [ 620, 144, 684, 161 ], [ 271, 160, 315, 180 ], [ 320, 160, 348, 180 ], [ 353, 160, 421, 180 ], [ 426, 160, 473, 180 ], [ 478, 160, 571, 180 ], [ 575, 160, 592, 180 ], [ 597, 160, 667, 180 ], [ 672, 160, 727, 180 ], [ 732, 160, 773, 180 ], [ 271, 177, 369, 198 ], [ 117, 230, 176, 250 ], [ 181, 230, 217, 250 ], [ 257, 230, 308, 250 ], [ 313, 230, 337, 250 ], [ 342, 230, 381, 250 ], [ 117, 282, 131, 302 ], [ 140, 282, 208, 302 ], [ 258, 282, 274, 302 ], [ 280, 282, 356, 302 ], [ 361, 282, 423, 302 ], [ 428, 282, 456, 302 ], [ 530, 282, 564, 302 ], [ 569, 282, 615, 302 ], [ 620, 282, 644, 302 ], [ 649, 282, 717, 302 ], [ 722, 282, 755, 302 ], [ 760, 282, 776, 302 ], [ 781, 282, 855, 302 ], [ 461, 284, 525, 301 ], [ 117, 298, 159, 318 ], [ 258, 299, 275, 319 ], [ 280, 299, 370, 319 ], [ 375, 299, 388, 319 ], [ 393, 299, 417, 319 ], [ 422, 299, 453, 319 ], [ 458, 299, 475, 319 ], [ 479, 299, 503, 319 ], [ 508, 299, 558, 319 ], [ 563, 299, 640, 319 ], [ 644, 299, 668, 319 ], [ 673, 299, 724, 319 ], [ 728, 299, 752, 319 ], [ 757, 299, 815, 319 ], [ 820, 299, 850, 319 ], [ 117, 314, 193, 334 ], [ 258, 317, 290, 337 ], [ 295, 317, 366, 337 ], [ 117, 330, 177, 350 ], [ 182, 330, 211, 350 ], [ 187, 346, 220, 366 ], [ 117, 349, 182, 364 ], [ 258, 351, 274, 372 ], [ 279, 351, 303, 372 ], [ 308, 351, 356, 372 ], [ 361, 351, 377, 372 ], [ 382, 351, 454, 372 ], [ 459, 351, 519, 372 ], [ 524, 351, 577, 372 ], [ 582, 351, 608, 372 ], [ 613, 351, 637, 372 ], [ 642, 351, 730, 372 ], [ 735, 351, 750, 372 ], [ 755, 351, 810, 372 ], [ 815, 351, 844, 372 ], [ 258, 369, 293, 389 ], [ 298, 369, 322, 389 ], [ 327, 369, 360, 389 ], [ 364, 369, 422, 389 ], [ 427, 369, 458, 389 ], [ 463, 369, 494, 389 ], [ 499, 369, 570, 389 ], [ 312, 404, 325, 424 ], [ 330, 404, 354, 424 ], [ 358, 404, 416, 424 ], [ 421, 404, 465, 424 ], [ 470, 404, 486, 424 ], [ 491, 404, 548, 424 ], [ 553, 404, 622, 424 ], [ 627, 404, 663, 424 ], [ 668, 404, 693, 424 ], [ 698, 404, 753, 424 ], [ 758, 404, 782, 424 ], [ 787, 404, 848, 424 ], [ 258, 405, 302, 424 ], [ 258, 421, 291, 441 ], [ 296, 421, 325, 441 ], [ 330, 421, 354, 441 ], [ 359, 421, 417, 441 ], [ 422, 421, 452, 441 ], [ 457, 421, 489, 441 ], [ 494, 421, 532, 441 ], [ 537, 421, 562, 441 ], [ 567, 421, 616, 441 ], [ 621, 421, 645, 441 ], [ 650, 421, 716, 441 ], [ 722, 421, 755, 441 ], [ 760, 421, 771, 441 ], [ 776, 421, 806, 441 ], [ 811, 421, 850, 441 ], [ 258, 439, 316, 459 ], [ 321, 439, 350, 459 ], [ 355, 439, 366, 459 ], [ 371, 439, 402, 459 ], [ 406, 439, 473, 459 ], [ 478, 439, 493, 459 ], [ 498, 439, 559, 459 ], [ 564, 439, 592, 459 ], [ 597, 439, 659, 459 ], [ 664, 439, 679, 459 ], [ 684, 439, 731, 459 ], [ 736, 439, 805, 459 ], [ 258, 456, 329, 476 ], [ 334, 456, 349, 476 ], [ 258, 508, 271, 529 ], [ 276, 508, 311, 529 ], [ 316, 508, 340, 529 ], [ 345, 508, 388, 529 ], [ 393, 508, 422, 529 ], [ 426, 508, 450, 529 ], [ 455, 508, 513, 529 ], [ 518, 508, 586, 529 ], [ 591, 508, 653, 529 ], [ 659, 508, 709, 529 ], [ 714, 508, 738, 529 ], [ 743, 508, 797, 529 ], [ 802, 508, 861, 529 ], [ 117, 509, 132, 528 ], [ 141, 509, 186, 528 ], [ 190, 509, 219, 528 ], [ 117, 525, 190, 544 ], [ 258, 526, 308, 546 ], [ 313, 526, 385, 546 ], [ 390, 526, 414, 546 ], [ 419, 526, 512, 546 ], [ 517, 526, 545, 546 ], [ 550, 526, 616, 546 ], [ 621, 526, 659, 546 ], [ 664, 526, 688, 546 ], [ 693, 526, 746, 546 ], [ 751, 526, 787, 546 ], [ 791, 526, 800, 546 ], [ 805, 526, 853, 546 ], [ 117, 541, 166, 560 ], [ 171, 541, 197, 560 ], [ 258, 543, 275, 563 ], [ 280, 543, 351, 563 ], [ 356, 543, 416, 563 ], [ 421, 543, 469, 563 ], [ 474, 543, 519, 563 ], [ 524, 543, 543, 563 ], [ 548, 543, 572, 563 ], [ 577, 543, 635, 563 ], [ 727, 543, 779, 563 ], [ 640, 546, 722, 562 ], [ 117, 557, 211, 576 ], [ 312, 578, 325, 598 ], [ 330, 578, 369, 598 ], [ 374, 578, 387, 598 ], [ 392, 578, 427, 598 ], [ 431, 578, 460, 598 ], [ 465, 578, 522, 598 ], [ 528, 578, 566, 598 ], [ 571, 578, 610, 598 ], [ 615, 578, 628, 598 ], [ 633, 578, 653, 598 ], [ 657, 578, 694, 598 ], [ 699, 578, 715, 598 ], [ 719, 578, 784, 598 ], [ 789, 578, 813, 598 ], [ 818, 578, 858, 598 ], [ 258, 579, 302, 598 ], [ 258, 595, 296, 616 ], [ 301, 595, 325, 616 ], [ 330, 595, 379, 616 ], [ 117, 825, 139, 853 ], [ 153, 825, 261, 853 ], [ 268, 825, 407, 853 ], [ 415, 825, 480, 853 ], [ 487, 825, 558, 853 ], [ 566, 825, 612, 853 ], [ 620, 825, 738, 853 ] ]
[ [ 117, 89, 216, 108 ], [ 258, 88, 293, 108 ], [ 298, 88, 337, 108 ], [ 342, 88, 408, 108 ], [ 413, 88, 505, 108 ], [ 510, 88, 530, 108 ], [ 535, 88, 603, 108 ], [ 608, 88, 648, 108 ], [ 653, 88, 669, 108 ], [ 674, 88, 760, 108 ], [ 765, 88, 788, 108 ], [ 793, 88, 854, 108 ], [ 258, 106, 287, 126 ], [ 291, 108, 356, 125 ], [ 361, 106, 399, 126 ], [ 404, 106, 478, 126 ], [ 271, 142, 295, 162 ], [ 300, 142, 369, 162 ], [ 374, 142, 406, 162 ], [ 411, 142, 434, 162 ], [ 439, 142, 515, 162 ], [ 520, 142, 582, 162 ], [ 587, 142, 615, 162 ], [ 620, 144, 684, 161 ], [ 689, 142, 728, 162 ], [ 733, 142, 761, 162 ], [ 271, 160, 315, 180 ], [ 320, 160, 348, 180 ], [ 353, 160, 421, 180 ], [ 426, 160, 473, 180 ], [ 478, 160, 571, 180 ], [ 575, 160, 592, 180 ], [ 597, 160, 667, 180 ], [ 672, 160, 727, 180 ], [ 732, 160, 773, 180 ], [ 271, 177, 369, 198 ], [ 117, 230, 176, 250 ], [ 181, 230, 217, 250 ], [ 257, 230, 308, 250 ], [ 313, 230, 337, 250 ], [ 342, 230, 381, 250 ], [ 117, 282, 131, 302 ], [ 140, 282, 208, 302 ], [ 117, 298, 159, 318 ], [ 117, 314, 193, 334 ], [ 117, 330, 177, 350 ], [ 182, 330, 211, 350 ], [ 117, 349, 182, 364 ], [ 187, 346, 220, 366 ], [ 258, 282, 274, 302 ], [ 280, 282, 356, 302 ], [ 361, 282, 423, 302 ], [ 428, 282, 456, 302 ], [ 461, 284, 525, 301 ], [ 530, 282, 564, 302 ], [ 569, 282, 615, 302 ], [ 620, 282, 644, 302 ], [ 649, 282, 717, 302 ], [ 722, 282, 755, 302 ], [ 760, 282, 776, 302 ], [ 781, 282, 855, 302 ], [ 258, 299, 275, 319 ], [ 280, 299, 370, 319 ], [ 375, 299, 388, 319 ], [ 393, 299, 417, 319 ], [ 422, 299, 453, 319 ], [ 458, 299, 475, 319 ], [ 479, 299, 503, 319 ], [ 508, 299, 558, 319 ], [ 563, 299, 640, 319 ], [ 644, 299, 668, 319 ], [ 673, 299, 724, 319 ], [ 728, 299, 752, 319 ], [ 757, 299, 815, 319 ], [ 820, 299, 850, 319 ], [ 258, 317, 290, 337 ], [ 295, 317, 366, 337 ], [ 258, 351, 274, 372 ], [ 279, 351, 303, 372 ], [ 308, 351, 356, 372 ], [ 361, 351, 377, 372 ], [ 382, 351, 454, 372 ], [ 459, 351, 519, 372 ], [ 524, 351, 577, 372 ], [ 582, 351, 608, 372 ], [ 613, 351, 637, 372 ], [ 642, 351, 730, 372 ], [ 735, 351, 750, 372 ], [ 755, 351, 810, 372 ], [ 815, 351, 844, 372 ], [ 258, 369, 293, 389 ], [ 298, 369, 322, 389 ], [ 327, 369, 360, 389 ], [ 364, 369, 422, 389 ], [ 427, 369, 458, 389 ], [ 463, 369, 494, 389 ], [ 499, 369, 570, 389 ], [ 258, 405, 302, 424 ], [ 312, 404, 325, 424 ], [ 330, 404, 354, 424 ], [ 358, 404, 416, 424 ], [ 421, 404, 465, 424 ], [ 470, 404, 486, 424 ], [ 491, 404, 548, 424 ], [ 553, 404, 622, 424 ], [ 627, 404, 663, 424 ], [ 668, 404, 693, 424 ], [ 698, 404, 753, 424 ], [ 758, 404, 782, 424 ], [ 787, 404, 848, 424 ], [ 258, 421, 291, 441 ], [ 296, 421, 325, 441 ], [ 330, 421, 354, 441 ], [ 359, 421, 417, 441 ], [ 422, 421, 452, 441 ], [ 457, 421, 489, 441 ], [ 494, 421, 532, 441 ], [ 537, 421, 562, 441 ], [ 567, 421, 616, 441 ], [ 621, 421, 645, 441 ], [ 650, 421, 716, 441 ], [ 722, 421, 755, 441 ], [ 760, 421, 771, 441 ], [ 776, 421, 806, 441 ], [ 811, 421, 850, 441 ], [ 258, 439, 316, 459 ], [ 321, 439, 350, 459 ], [ 355, 439, 366, 459 ], [ 371, 439, 402, 459 ], [ 406, 439, 473, 459 ], [ 478, 439, 493, 459 ], [ 498, 439, 559, 459 ], [ 564, 439, 592, 459 ], [ 597, 439, 659, 459 ], [ 664, 439, 679, 459 ], [ 684, 439, 731, 459 ], [ 736, 439, 805, 459 ], [ 258, 456, 329, 476 ], [ 334, 456, 349, 476 ], [ 117, 509, 132, 528 ], [ 141, 509, 186, 528 ], [ 190, 509, 219, 528 ], [ 117, 525, 190, 544 ], [ 117, 541, 166, 560 ], [ 171, 541, 197, 560 ], [ 117, 557, 211, 576 ], [ 258, 508, 271, 529 ], [ 276, 508, 311, 529 ], [ 316, 508, 340, 529 ], [ 345, 508, 388, 529 ], [ 393, 508, 422, 529 ], [ 426, 508, 450, 529 ], [ 455, 508, 513, 529 ], [ 518, 508, 586, 529 ], [ 591, 508, 653, 529 ], [ 659, 508, 709, 529 ], [ 714, 508, 738, 529 ], [ 743, 508, 797, 529 ], [ 802, 508, 861, 529 ], [ 258, 526, 308, 546 ], [ 313, 526, 385, 546 ], [ 390, 526, 414, 546 ], [ 419, 526, 512, 546 ], [ 517, 526, 545, 546 ], [ 550, 526, 616, 546 ], [ 621, 526, 659, 546 ], [ 664, 526, 688, 546 ], [ 693, 526, 746, 546 ], [ 751, 526, 787, 546 ], [ 791, 526, 800, 546 ], [ 805, 526, 853, 546 ], [ 258, 543, 275, 563 ], [ 280, 543, 351, 563 ], [ 356, 543, 416, 563 ], [ 421, 543, 469, 563 ], [ 474, 543, 519, 563 ], [ 524, 543, 543, 563 ], [ 548, 543, 572, 563 ], [ 577, 543, 635, 563 ], [ 640, 546, 722, 562 ], [ 727, 543, 779, 563 ], [ 258, 579, 302, 598 ], [ 312, 578, 325, 598 ], [ 330, 578, 369, 598 ], [ 374, 578, 387, 598 ], [ 392, 578, 427, 598 ], [ 431, 578, 460, 598 ], [ 465, 578, 522, 598 ], [ 528, 578, 566, 598 ], [ 571, 578, 610, 598 ], [ 615, 578, 628, 598 ], [ 633, 578, 653, 598 ], [ 657, 578, 694, 598 ], [ 699, 578, 715, 598 ], [ 719, 578, 784, 598 ], [ 789, 578, 813, 598 ], [ 818, 578, 858, 598 ], [ 258, 595, 296, 616 ], [ 301, 595, 325, 616 ], [ 330, 595, 379, 616 ], [ 117, 825, 139, 853 ], [ 153, 825, 261, 853 ], [ 268, 825, 407, 853 ], [ 415, 825, 480, 853 ], [ 487, 825, 558, 853 ], [ 566, 825, 612, 853 ], [ 620, 825, 738, 853 ] ]
The MAPR for any given claimant is determined by a. General Information on MAPR the type of payee (Veteran, surviving spouse, or child) the number of established dependents, and whether the beneficiary is eligible for the Aid and Attendance (A&A) or Housebound MAPR. A change in any of these factors, such as the loss of a dependent or grant of A&A, changes the MAPR and the amount of the pension payable, per . A higher MAPR applies to a beneficiary who is found in need of A&A Note: or is Housebound. A&A and Housebound benefits are also referred to as Special Monthly Pension (SMP). b. If Social Security (SS) benefits are increased as the result of an SS Increase adjustment (COLA), Pension MAPRs are increased by a like in MAPR percentage at the same time, per . For References: current and historical MAPRs, see , and more information on adjustment of Pension based on a change in income due to an SS COLA, see . 3. Veterans Who Are Married to Each Other This topic contains information on Veterans who are married to each other, Introduction including the combined rate payable to Veterans married to each other the award procedures in Veteran-married-to-Veteran cases determining the file number to use in combined awards estranged married Veterans, and mandatory election from protected pension in Veteran-married-to-Veteran cases. June 27, 2015 Change Date
a. General Information on MAPR The MAPR for any given claimant is determined by the type of payee (Veteran, surviving spouse, or child) the number of established dependents, and whether the beneficiary is eligible for the Aid and Attendance (A&A) or Housebound MAPR. A change in any of these factors, such as the loss of a dependent or grant of A&A, changes the MAPR and the amount of the pension payable, per . Note: A higher MAPR applies to a beneficiary who is found in need of A&A or is Housebound. A&A and Housebound benefits are also referred to as Special Monthly Pension (SMP). b. Increase in MAPR If Social Security (SS) benefits are increased as the result of an SS adjustment (COLA), Pension MAPRs are increased by a like percentage at the same time, per . References: For current and historical MAPRs, see , and more information on adjustment of Pension based on a change in income due to an SS COLA, see . 3. Veterans Who Are Married to Each Other Introduction This topic contains information on Veterans who are married to each other, including the combined rate payable to Veterans married to each other the award procedures in Veteran-married-to-Veteran cases determining the file number to use in combined awards estranged married Veterans, and mandatory election from protected pension in Veteran-married-to-Veteran cases. Change Date June 27, 2015
0.897028
[ 9, 10, 11, 12, 13, 0, 1, 2, 3, 4, 5, 6, 7, 8, 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, 87, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 118, 128, 129, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 130, 131, 132, 133, 134, 135, 136, 138, 137, 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, 185, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 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, 227, 228, 224, 225, 226 ]
M21-1V_iii_1_SecE.docx
task-1431-804
3
[ [ 258, 70, 289, 90 ], [ 294, 70, 349, 90 ], [ 354, 70, 377, 90 ], [ 382, 70, 411, 90 ], [ 415, 70, 459, 90 ], [ 464, 70, 531, 90 ], [ 536, 70, 549, 90 ], [ 554, 70, 642, 90 ], [ 647, 70, 667, 90 ], [ 117, 71, 131, 90 ], [ 140, 71, 202, 90 ], [ 117, 86, 211, 106 ], [ 216, 86, 235, 106 ], [ 117, 103, 171, 122 ], [ 272, 106, 296, 126 ], [ 301, 106, 335, 126 ], [ 340, 106, 356, 126 ], [ 361, 106, 407, 126 ], [ 412, 106, 485, 126 ], [ 490, 106, 564, 126 ], [ 569, 106, 627, 126 ], [ 632, 106, 649, 126 ], [ 654, 106, 700, 126 ], [ 272, 124, 296, 145 ], [ 301, 124, 361, 145 ], [ 366, 124, 382, 145 ], [ 387, 124, 474, 145 ], [ 479, 124, 572, 145 ], [ 577, 124, 605, 145 ], [ 272, 143, 336, 163 ], [ 340, 143, 364, 163 ], [ 369, 143, 458, 163 ], [ 462, 143, 476, 163 ], [ 481, 143, 539, 163 ], [ 544, 143, 567, 163 ], [ 572, 143, 596, 163 ], [ 601, 143, 630, 163 ], [ 635, 143, 663, 163 ], [ 668, 143, 758, 163 ], [ 763, 143, 819, 163 ], [ 824, 143, 841, 163 ], [ 272, 160, 371, 180 ], [ 376, 160, 437, 180 ], [ 258, 195, 273, 215 ], [ 277, 195, 333, 215 ], [ 338, 195, 353, 215 ], [ 358, 195, 387, 215 ], [ 391, 195, 407, 215 ], [ 412, 195, 453, 215 ], [ 458, 195, 516, 215 ], [ 521, 195, 556, 215 ], [ 562, 195, 578, 215 ], [ 583, 195, 607, 215 ], [ 612, 195, 642, 215 ], [ 647, 195, 664, 215 ], [ 668, 195, 677, 215 ], [ 682, 195, 762, 215 ], [ 768, 195, 784, 215 ], [ 789, 195, 829, 215 ], [ 834, 195, 850, 215 ], [ 258, 213, 307, 233 ], [ 312, 213, 375, 233 ], [ 380, 213, 404, 233 ], [ 409, 213, 464, 233 ], [ 469, 213, 497, 233 ], [ 502, 213, 526, 233 ], [ 531, 213, 590, 233 ], [ 595, 213, 611, 233 ], [ 616, 213, 640, 233 ], [ 645, 213, 706, 233 ], [ 711, 213, 777, 233 ], [ 782, 213, 807, 233 ], [ 812, 213, 817, 233 ], [ 312, 247, 326, 268 ], [ 331, 247, 381, 268 ], [ 386, 247, 441, 268 ], [ 446, 247, 502, 268 ], [ 507, 247, 522, 268 ], [ 527, 247, 536, 268 ], [ 541, 247, 629, 268 ], [ 634, 247, 667, 268 ], [ 672, 247, 685, 268 ], [ 690, 247, 736, 268 ], [ 741, 247, 756, 268 ], [ 761, 247, 798, 268 ], [ 803, 247, 819, 268 ], [ 824, 247, 868, 268 ], [ 258, 249, 302, 268 ], [ 258, 265, 275, 285 ], [ 280, 265, 293, 285 ], [ 298, 265, 401, 285 ], [ 411, 265, 455, 285 ], [ 460, 265, 488, 285 ], [ 493, 265, 592, 285 ], [ 597, 265, 659, 285 ], [ 664, 265, 688, 285 ], [ 693, 265, 724, 285 ], [ 729, 265, 791, 285 ], [ 796, 265, 812, 285 ], [ 817, 265, 833, 285 ], [ 258, 282, 316, 302 ], [ 321, 282, 389, 302 ], [ 393, 282, 455, 302 ], [ 461, 282, 518, 302 ], [ 117, 335, 132, 354 ], [ 258, 335, 271, 355 ], [ 276, 335, 325, 355 ], [ 330, 335, 396, 355 ], [ 400, 335, 435, 355 ], [ 440, 335, 502, 355 ], [ 507, 335, 531, 355 ], [ 536, 335, 610, 355 ], [ 615, 335, 631, 355 ], [ 636, 335, 660, 355 ], [ 665, 335, 709, 355 ], [ 714, 335, 730, 355 ], [ 735, 335, 753, 355 ], [ 758, 335, 780, 355 ], [ 172, 351, 237, 370 ], [ 309, 352, 395, 372 ], [ 400, 352, 471, 372 ], [ 476, 352, 538, 372 ], [ 543, 352, 607, 372 ], [ 612, 352, 635, 372 ], [ 640, 352, 714, 372 ], [ 719, 352, 739, 372 ], [ 744, 352, 752, 372 ], [ 757, 352, 787, 372 ], [ 117, 367, 132, 386 ], [ 137, 367, 191, 386 ], [ 258, 369, 343, 390 ], [ 348, 369, 362, 390 ], [ 367, 369, 391, 390 ], [ 396, 369, 436, 390 ], [ 441, 369, 481, 390 ], [ 486, 369, 511, 390 ], [ 516, 369, 521, 390 ], [ 363, 404, 390, 424 ], [ 258, 405, 353, 424 ], [ 272, 423, 328, 443 ], [ 333, 423, 361, 443 ], [ 366, 423, 439, 443 ], [ 444, 423, 512, 443 ], [ 517, 423, 542, 443 ], [ 547, 423, 552, 443 ], [ 557, 423, 585, 443 ], [ 272, 441, 313, 462 ], [ 318, 441, 410, 462 ], [ 415, 441, 435, 462 ], [ 440, 441, 526, 462 ], [ 531, 441, 547, 462 ], [ 552, 441, 614, 462 ], [ 619, 441, 664, 462 ], [ 668, 441, 688, 462 ], [ 693, 441, 702, 462 ], [ 706, 441, 762, 462 ], [ 767, 441, 782, 462 ], [ 787, 441, 845, 462 ], [ 272, 459, 301, 479 ], [ 306, 459, 321, 479 ], [ 326, 459, 344, 479 ], [ 349, 459, 371, 479 ], [ 376, 459, 434, 479 ], [ 439, 459, 464, 479 ], [ 469, 460, 474, 479 ], [ 117, 533, 139, 561 ], [ 153, 533, 264, 561 ], [ 271, 533, 328, 561 ], [ 335, 533, 378, 561 ], [ 386, 533, 480, 561 ], [ 488, 533, 512, 561 ], [ 520, 533, 582, 561 ], [ 589, 533, 659, 561 ], [ 258, 592, 293, 612 ], [ 298, 592, 337, 612 ], [ 342, 592, 408, 612 ], [ 413, 592, 505, 612 ], [ 510, 592, 530, 612 ], [ 535, 592, 604, 612 ], [ 609, 592, 643, 612 ], [ 648, 592, 672, 612 ], [ 676, 592, 737, 612 ], [ 742, 592, 758, 612 ], [ 762, 592, 798, 612 ], [ 803, 592, 848, 612 ], [ 117, 593, 215, 612 ], [ 258, 610, 332, 630 ], [ 272, 646, 296, 666 ], [ 301, 646, 379, 666 ], [ 384, 646, 413, 666 ], [ 418, 646, 479, 666 ], [ 484, 646, 499, 666 ], [ 504, 646, 573, 666 ], [ 578, 646, 639, 666 ], [ 644, 646, 660, 666 ], [ 665, 646, 700, 666 ], [ 705, 646, 746, 666 ], [ 272, 664, 296, 684 ], [ 301, 664, 349, 684 ], [ 354, 664, 440, 684 ], [ 445, 664, 460, 684 ], [ 465, 664, 685, 684 ], [ 690, 664, 731, 684 ], [ 272, 683, 367, 703 ], [ 372, 683, 396, 703 ], [ 401, 683, 427, 703 ], [ 432, 683, 492, 703 ], [ 497, 683, 512, 703 ], [ 517, 683, 543, 703 ], [ 548, 683, 563, 703 ], [ 568, 683, 645, 703 ], [ 650, 683, 706, 703 ], [ 272, 701, 347, 721 ], [ 352, 701, 413, 721 ], [ 418, 701, 493, 721 ], [ 498, 701, 526, 721 ], [ 272, 720, 357, 740 ], [ 361, 720, 423, 740 ], [ 428, 720, 466, 740 ], [ 471, 720, 544, 740 ], [ 549, 720, 610, 740 ], [ 615, 720, 630, 740 ], [ 635, 720, 855, 740 ], [ 272, 737, 319, 757 ], [ 258, 789, 294, 809 ], [ 299, 789, 324, 809 ], [ 329, 789, 368, 809 ], [ 117, 790, 176, 809 ], [ 181, 790, 217, 809 ] ]
[ [ 117, 71, 131, 90 ], [ 140, 71, 202, 90 ], [ 117, 86, 211, 106 ], [ 216, 86, 235, 106 ], [ 117, 103, 171, 122 ], [ 258, 70, 289, 90 ], [ 294, 70, 349, 90 ], [ 354, 70, 377, 90 ], [ 382, 70, 411, 90 ], [ 415, 70, 459, 90 ], [ 464, 70, 531, 90 ], [ 536, 70, 549, 90 ], [ 554, 70, 642, 90 ], [ 647, 70, 667, 90 ], [ 272, 106, 296, 126 ], [ 301, 106, 335, 126 ], [ 340, 106, 356, 126 ], [ 361, 106, 407, 126 ], [ 412, 106, 485, 126 ], [ 490, 106, 564, 126 ], [ 569, 106, 627, 126 ], [ 632, 106, 649, 126 ], [ 654, 106, 700, 126 ], [ 272, 124, 296, 145 ], [ 301, 124, 361, 145 ], [ 366, 124, 382, 145 ], [ 387, 124, 474, 145 ], [ 479, 124, 572, 145 ], [ 577, 124, 605, 145 ], [ 272, 143, 336, 163 ], [ 340, 143, 364, 163 ], [ 369, 143, 458, 163 ], [ 462, 143, 476, 163 ], [ 481, 143, 539, 163 ], [ 544, 143, 567, 163 ], [ 572, 143, 596, 163 ], [ 601, 143, 630, 163 ], [ 635, 143, 663, 163 ], [ 668, 143, 758, 163 ], [ 763, 143, 819, 163 ], [ 824, 143, 841, 163 ], [ 272, 160, 371, 180 ], [ 376, 160, 437, 180 ], [ 258, 195, 273, 215 ], [ 277, 195, 333, 215 ], [ 338, 195, 353, 215 ], [ 358, 195, 387, 215 ], [ 391, 195, 407, 215 ], [ 412, 195, 453, 215 ], [ 458, 195, 516, 215 ], [ 521, 195, 556, 215 ], [ 562, 195, 578, 215 ], [ 583, 195, 607, 215 ], [ 612, 195, 642, 215 ], [ 647, 195, 664, 215 ], [ 668, 195, 677, 215 ], [ 682, 195, 762, 215 ], [ 768, 195, 784, 215 ], [ 789, 195, 829, 215 ], [ 834, 195, 850, 215 ], [ 258, 213, 307, 233 ], [ 312, 213, 375, 233 ], [ 380, 213, 404, 233 ], [ 409, 213, 464, 233 ], [ 469, 213, 497, 233 ], [ 502, 213, 526, 233 ], [ 531, 213, 590, 233 ], [ 595, 213, 611, 233 ], [ 616, 213, 640, 233 ], [ 645, 213, 706, 233 ], [ 711, 213, 777, 233 ], [ 782, 213, 807, 233 ], [ 812, 213, 817, 233 ], [ 258, 249, 302, 268 ], [ 312, 247, 326, 268 ], [ 331, 247, 381, 268 ], [ 386, 247, 441, 268 ], [ 446, 247, 502, 268 ], [ 507, 247, 522, 268 ], [ 527, 247, 536, 268 ], [ 541, 247, 629, 268 ], [ 634, 247, 667, 268 ], [ 672, 247, 685, 268 ], [ 690, 247, 736, 268 ], [ 741, 247, 756, 268 ], [ 761, 247, 798, 268 ], [ 803, 247, 819, 268 ], [ 824, 247, 868, 268 ], [ 258, 265, 275, 285 ], [ 280, 265, 293, 285 ], [ 298, 265, 401, 285 ], [ 411, 265, 455, 285 ], [ 460, 265, 488, 285 ], [ 493, 265, 592, 285 ], [ 597, 265, 659, 285 ], [ 664, 265, 688, 285 ], [ 693, 265, 724, 285 ], [ 729, 265, 791, 285 ], [ 796, 265, 812, 285 ], [ 817, 265, 833, 285 ], [ 258, 282, 316, 302 ], [ 321, 282, 389, 302 ], [ 393, 282, 455, 302 ], [ 461, 282, 518, 302 ], [ 117, 335, 132, 354 ], [ 172, 351, 237, 370 ], [ 117, 367, 132, 386 ], [ 137, 367, 191, 386 ], [ 258, 335, 271, 355 ], [ 276, 335, 325, 355 ], [ 330, 335, 396, 355 ], [ 400, 335, 435, 355 ], [ 440, 335, 502, 355 ], [ 507, 335, 531, 355 ], [ 536, 335, 610, 355 ], [ 615, 335, 631, 355 ], [ 636, 335, 660, 355 ], [ 665, 335, 709, 355 ], [ 714, 335, 730, 355 ], [ 735, 335, 753, 355 ], [ 758, 335, 780, 355 ], [ 309, 352, 395, 372 ], [ 400, 352, 471, 372 ], [ 476, 352, 538, 372 ], [ 543, 352, 607, 372 ], [ 612, 352, 635, 372 ], [ 640, 352, 714, 372 ], [ 719, 352, 739, 372 ], [ 744, 352, 752, 372 ], [ 757, 352, 787, 372 ], [ 258, 369, 343, 390 ], [ 348, 369, 362, 390 ], [ 367, 369, 391, 390 ], [ 396, 369, 436, 390 ], [ 441, 369, 481, 390 ], [ 486, 369, 511, 390 ], [ 516, 369, 521, 390 ], [ 258, 405, 353, 424 ], [ 363, 404, 390, 424 ], [ 272, 423, 328, 443 ], [ 333, 423, 361, 443 ], [ 366, 423, 439, 443 ], [ 444, 423, 512, 443 ], [ 517, 423, 542, 443 ], [ 547, 423, 552, 443 ], [ 557, 423, 585, 443 ], [ 272, 441, 313, 462 ], [ 318, 441, 410, 462 ], [ 415, 441, 435, 462 ], [ 440, 441, 526, 462 ], [ 531, 441, 547, 462 ], [ 552, 441, 614, 462 ], [ 619, 441, 664, 462 ], [ 668, 441, 688, 462 ], [ 693, 441, 702, 462 ], [ 706, 441, 762, 462 ], [ 767, 441, 782, 462 ], [ 787, 441, 845, 462 ], [ 272, 459, 301, 479 ], [ 306, 459, 321, 479 ], [ 326, 459, 344, 479 ], [ 349, 459, 371, 479 ], [ 376, 459, 434, 479 ], [ 439, 459, 464, 479 ], [ 469, 460, 474, 479 ], [ 117, 533, 139, 561 ], [ 153, 533, 264, 561 ], [ 271, 533, 328, 561 ], [ 335, 533, 378, 561 ], [ 386, 533, 480, 561 ], [ 488, 533, 512, 561 ], [ 520, 533, 582, 561 ], [ 589, 533, 659, 561 ], [ 117, 593, 215, 612 ], [ 258, 592, 293, 612 ], [ 298, 592, 337, 612 ], [ 342, 592, 408, 612 ], [ 413, 592, 505, 612 ], [ 510, 592, 530, 612 ], [ 535, 592, 604, 612 ], [ 609, 592, 643, 612 ], [ 648, 592, 672, 612 ], [ 676, 592, 737, 612 ], [ 742, 592, 758, 612 ], [ 762, 592, 798, 612 ], [ 803, 592, 848, 612 ], [ 258, 610, 332, 630 ], [ 272, 646, 296, 666 ], [ 301, 646, 379, 666 ], [ 384, 646, 413, 666 ], [ 418, 646, 479, 666 ], [ 484, 646, 499, 666 ], [ 504, 646, 573, 666 ], [ 578, 646, 639, 666 ], [ 644, 646, 660, 666 ], [ 665, 646, 700, 666 ], [ 705, 646, 746, 666 ], [ 272, 664, 296, 684 ], [ 301, 664, 349, 684 ], [ 354, 664, 440, 684 ], [ 445, 664, 460, 684 ], [ 465, 664, 685, 684 ], [ 690, 664, 731, 684 ], [ 272, 683, 367, 703 ], [ 372, 683, 396, 703 ], [ 401, 683, 427, 703 ], [ 432, 683, 492, 703 ], [ 497, 683, 512, 703 ], [ 517, 683, 543, 703 ], [ 548, 683, 563, 703 ], [ 568, 683, 645, 703 ], [ 650, 683, 706, 703 ], [ 272, 701, 347, 721 ], [ 352, 701, 413, 721 ], [ 418, 701, 493, 721 ], [ 498, 701, 526, 721 ], [ 272, 720, 357, 740 ], [ 361, 720, 423, 740 ], [ 428, 720, 466, 740 ], [ 471, 720, 544, 740 ], [ 549, 720, 610, 740 ], [ 615, 720, 630, 740 ], [ 635, 720, 855, 740 ], [ 272, 737, 319, 757 ], [ 117, 790, 176, 809 ], [ 181, 790, 217, 809 ], [ 258, 789, 294, 809 ], [ 299, 789, 324, 809 ], [ 329, 789, 368, 809 ] ]
Department of Veterans Affairs M21-1, Part III, Subpart i Veterans Benefits Administration July 31, 2015 Washington, DC 20420 Transmittal Sheet The table below describes the changes included in this revision of Veterans Changes Included in Benefits Manual M21-1, Part III, Subpart i, “General Claims Process,” This Revision of the Veterans “Structure Service Center (VSC).” Notes: The term “regional office” (RO) also includes pension management center (PMC), where appropriate. Unless otherwise noted, the term the official, “claims folder” refers to numbered, Department of Veterans Affairs (VA) repository whether paper – or electronic for all documentation relating to claims that a Veteran and/or – his/her survivors file with VA. Minor editorial changes have also been made to update incorrect or obsolete references update the term to “VCAA notice” “section 5103 notice” update the term to “notification letter” “decision notice” update obsolete terminology, where appropriate remove references to specific claims-processing systems, where doing so does not affect the clarity of the instructions or information provided renumber each topic based on the standard that the first topic in each section is Topic 1 reassign alphabetical designations to individual blocks, where necessary, to account for new and/or deleted blocks within a topic update section and topic titles to more accurately reflect their content clarify block labels and/or block text, and bring the document into conformance with M21-1 standards. Reason(s) for the Change Citation To update instructions in notes sublabel for Step 6 of table concerning M21-1, Part III, actions a Physical Evaluation Board Liasion Officer (PEBLO) should Subpart i, Chapter 2, take on a Section D, Topic 2, “referral package.” Block a (III.i.2.D.2.a) To add Block b which contains a sample copy of the Service III.i.2.D.2.b Department Memorandum of Complete and Current Service Treatement Records (STRs). III.i.2.D.3.a To add the items a proper referral package includes to Step 2 of table. To provide information in Step 4 of table about initial interview completed within 10 days. To add table in Step 5 about determining with embedded “If/Then” Consolidated Veterans Records System (COVERS) if a claims folder
Department of Veterans Affairs M21-1, Part III, Subpart i Veterans Benefits Administration July 31, 2015 Washington, DC 20420 Transmittal Sheet Changes Included in This Revision The table below describes the changes included in this revision of Veterans Benefits Manual M21-1, Part III, “General Claims Process,” Subpart i, “Structure of the Veterans Service Center (VSC).” Notes: The term “regional office” (RO) also includes pension management center (PMC), where appropriate. Unless otherwise noted, the term “claims folder” refers to the official, numbered, Department of Veterans Affairs (VA) repository – whether paper or electronic – for all documentation relating to claims that a Veteran and/or his/her survivors file with VA. Minor editorial changes have also been made to update incorrect or obsolete references update the term “VCAA notice” to “section 5103 notice” update the term “notification letter” to “decision notice” update obsolete terminology, where appropriate remove references to specific claims-processing systems, where doing so does not affect the clarity of the instructions or information provided renumber each topic based on the standard that the first topic in each section is Topic 1 reassign alphabetical designations to individual blocks, where necessary, to account for new and/or deleted blocks within a topic update section and topic titles to more accurately reflect their content clarify block labels and/or block text, and bring the document into conformance with M21-1 standards. Reason(s) for the Change Citation To update instructions in notes sublabel for Step 6 of table concerning actions a Physical Evaluation Board Liasion Officer (PEBLO) should take on a “referral package.” M21-1, Part III, Subpart i, Chapter 2, Section D, Topic 2, Block a (III.i.2.D.2.a) To add Block b which contains a sample copy of the Service Department Memorandum of Complete and Current Service Treatement Records (STRs). III.i.2.D.2.b To add the items a proper referral package includes to Step 2 of table. To provide information in Step 4 of table about initial interview completed within 10 days. To add embedded “If/Then” table in Step 5 about determining with Consolidated Veterans Records System (COVERS) if a claims folder III.i.2.D.3.a
0.85193
[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 32, 33, 34, 45, 46, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 35, 36, 37, 38, 39, 42, 43, 44, 40, 41, 50, 47, 48, 49, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 75, 76, 77, 78, 73, 74, 79, 80, 81, 82, 83, 84, 85, 88, 86, 87, 89, 90, 101, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 125, 123, 126, 127, 128, 129, 130, 131, 133, 134, 132, 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, 243, 244, 245, 246, 247, 248, 249, 250, 251, 256, 257, 258, 263, 264, 240, 241, 242, 252, 253, 254, 255, 259, 260, 261, 262, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 280, 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, 330, 331, 323, 324, 325, 326, 327, 328, 329, 332, 333, 334, 335, 336, 337, 338, 339, 340, 291 ]
M21-1_III_i_2_SecD_TS.docx
task-1431-807
0
[ [ 117, 71, 201, 88 ], [ 206, 71, 219, 88 ], [ 223, 71, 286, 88 ], [ 290, 71, 339, 88 ], [ 676, 71, 726, 88 ], [ 730, 71, 760, 88 ], [ 765, 71, 788, 88 ], [ 792, 71, 849, 88 ], [ 853, 71, 857, 88 ], [ 117, 85, 180, 103 ], [ 184, 85, 240, 103 ], [ 244, 85, 351, 103 ], [ 716, 85, 746, 103 ], [ 750, 85, 771, 103 ], [ 775, 85, 807, 103 ], [ 117, 100, 206, 117 ], [ 210, 100, 233, 117 ], [ 241, 100, 282, 117 ], [ 117, 127, 258, 155 ], [ 265, 127, 336, 155 ], [ 258, 186, 289, 206 ], [ 294, 186, 332, 206 ], [ 337, 186, 384, 206 ], [ 389, 186, 462, 206 ], [ 467, 186, 491, 206 ], [ 496, 186, 559, 206 ], [ 564, 186, 632, 206 ], [ 637, 186, 652, 206 ], [ 657, 186, 685, 206 ], [ 690, 186, 753, 206 ], [ 758, 186, 775, 206 ], [ 779, 186, 849, 206 ], [ 117, 187, 183, 206 ], [ 117, 203, 185, 222 ], [ 190, 203, 205, 222 ], [ 258, 203, 324, 224 ], [ 329, 203, 388, 224 ], [ 393, 203, 452, 224 ], [ 457, 203, 488, 224 ], [ 493, 203, 517, 224 ], [ 737, 203, 798, 224 ], [ 803, 203, 813, 224 ], [ 522, 206, 593, 223 ], [ 598, 206, 654, 223 ], [ 659, 206, 732, 223 ], [ 117, 219, 151, 238 ], [ 156, 219, 222, 238 ], [ 344, 221, 360, 241 ], [ 365, 221, 389, 241 ], [ 394, 221, 464, 241 ], [ 258, 223, 339, 240 ], [ 469, 223, 527, 240 ], [ 532, 223, 584, 240 ], [ 589, 223, 654, 240 ], [ 258, 257, 309, 276 ], [ 272, 274, 303, 295 ], [ 308, 277, 344, 294 ], [ 349, 277, 421, 294 ], [ 426, 277, 481, 294 ], [ 486, 277, 526, 294 ], [ 531, 277, 562, 294 ], [ 567, 277, 633, 294 ], [ 638, 277, 699, 294 ], [ 704, 277, 804, 294 ], [ 809, 277, 857, 294 ], [ 272, 292, 332, 312 ], [ 337, 292, 385, 312 ], [ 389, 292, 484, 312 ], [ 272, 310, 326, 330 ], [ 331, 310, 407, 330 ], [ 412, 310, 460, 330 ], [ 465, 310, 489, 330 ], [ 494, 310, 530, 330 ], [ 730, 310, 754, 330 ], [ 759, 310, 820, 330 ], [ 535, 313, 595, 330 ], [ 600, 313, 655, 330 ], [ 660, 313, 705, 330 ], [ 710, 313, 725, 330 ], [ 272, 328, 356, 348 ], [ 361, 328, 453, 348 ], [ 458, 328, 475, 348 ], [ 479, 328, 549, 348 ], [ 554, 328, 609, 348 ], [ 614, 328, 656, 348 ], [ 661, 328, 740, 348 ], [ 760, 328, 823, 348 ], [ 828, 328, 871, 348 ], [ 745, 330, 755, 347 ], [ 272, 345, 289, 365 ], [ 294, 345, 371, 365 ], [ 391, 345, 413, 365 ], [ 418, 345, 438, 365 ], [ 443, 345, 560, 365 ], [ 564, 345, 624, 365 ], [ 629, 345, 644, 365 ], [ 649, 345, 701, 365 ], [ 705, 345, 735, 365 ], [ 740, 345, 748, 365 ], [ 753, 345, 815, 365 ], [ 820, 345, 870, 365 ], [ 376, 347, 386, 364 ], [ 272, 362, 326, 383 ], [ 331, 362, 404, 383 ], [ 409, 362, 435, 383 ], [ 439, 362, 474, 383 ], [ 479, 362, 512, 383 ], [ 272, 381, 322, 401 ], [ 326, 381, 392, 401 ], [ 397, 381, 460, 401 ], [ 465, 381, 502, 401 ], [ 506, 381, 538, 401 ], [ 543, 381, 580, 401 ], [ 585, 381, 627, 401 ], [ 632, 381, 647, 401 ], [ 288, 400, 340, 420 ], [ 345, 400, 414, 420 ], [ 419, 400, 436, 420 ], [ 441, 400, 506, 420 ], [ 511, 400, 591, 420 ], [ 288, 418, 340, 438 ], [ 345, 418, 369, 438 ], [ 374, 418, 410, 438 ], [ 545, 418, 561, 438 ], [ 414, 421, 479, 437 ], [ 484, 421, 540, 437 ], [ 565, 421, 630, 437 ], [ 635, 421, 674, 437 ], [ 679, 421, 735, 437 ], [ 288, 437, 340, 457 ], [ 345, 437, 369, 457 ], [ 374, 437, 410, 457 ], [ 573, 437, 588, 457 ], [ 414, 439, 514, 456 ], [ 519, 439, 568, 456 ], [ 593, 439, 667, 456 ], [ 672, 439, 728, 456 ], [ 288, 455, 340, 475 ], [ 345, 455, 410, 475 ], [ 415, 455, 516, 475 ], [ 521, 455, 569, 475 ], [ 574, 455, 663, 475 ], [ 288, 474, 346, 494 ], [ 351, 474, 432, 494 ], [ 437, 474, 452, 494 ], [ 457, 474, 518, 494 ], [ 523, 474, 665, 494 ], [ 669, 474, 736, 494 ], [ 741, 474, 789, 494 ], [ 794, 474, 839, 494 ], [ 844, 474, 861, 494 ], [ 288, 491, 324, 511 ], [ 329, 491, 354, 511 ], [ 359, 491, 403, 511 ], [ 408, 491, 432, 511 ], [ 437, 491, 487, 511 ], [ 492, 491, 508, 511 ], [ 513, 491, 537, 511 ], [ 542, 491, 633, 511 ], [ 638, 491, 655, 511 ], [ 660, 491, 752, 511 ], [ 757, 491, 827, 511 ], [ 288, 510, 363, 530 ], [ 368, 510, 403, 530 ], [ 408, 510, 448, 530 ], [ 452, 510, 497, 530 ], [ 502, 510, 522, 530 ], [ 527, 510, 551, 530 ], [ 556, 510, 622, 530 ], [ 627, 510, 656, 530 ], [ 661, 510, 685, 530 ], [ 690, 510, 722, 530 ], [ 727, 510, 766, 530 ], [ 771, 510, 786, 530 ], [ 791, 510, 827, 530 ], [ 288, 527, 343, 547 ], [ 348, 527, 361, 547 ], [ 366, 527, 412, 547 ], [ 417, 527, 427, 547 ], [ 288, 546, 352, 566 ], [ 357, 546, 451, 566 ], [ 456, 546, 554, 566 ], [ 559, 546, 575, 566 ], [ 580, 546, 659, 566 ], [ 664, 546, 720, 566 ], [ 725, 546, 773, 566 ], [ 778, 546, 859, 566 ], [ 288, 563, 303, 583 ], [ 308, 563, 369, 583 ], [ 374, 563, 397, 583 ], [ 401, 563, 434, 583 ], [ 439, 563, 489, 583 ], [ 494, 563, 551, 583 ], [ 555, 563, 607, 583 ], [ 612, 563, 662, 583 ], [ 667, 563, 675, 583 ], [ 680, 563, 720, 583 ], [ 288, 582, 340, 602 ], [ 345, 582, 400, 602 ], [ 405, 582, 434, 602 ], [ 438, 582, 478, 602 ], [ 483, 582, 521, 602 ], [ 526, 582, 541, 602 ], [ 546, 582, 586, 602 ], [ 591, 582, 672, 602 ], [ 676, 582, 726, 602 ], [ 731, 582, 767, 602 ], [ 772, 582, 830, 602 ], [ 288, 600, 339, 620 ], [ 344, 600, 387, 620 ], [ 392, 600, 438, 620 ], [ 443, 600, 493, 620 ], [ 498, 600, 542, 620 ], [ 546, 600, 581, 620 ], [ 586, 600, 614, 620 ], [ 288, 618, 329, 639 ], [ 334, 618, 358, 639 ], [ 363, 618, 440, 639 ], [ 445, 618, 476, 639 ], [ 481, 618, 583, 639 ], [ 588, 618, 623, 639 ], [ 627, 618, 681, 639 ], [ 686, 618, 765, 639 ], [ 302, 655, 383, 676 ], [ 388, 655, 413, 676 ], [ 418, 655, 444, 676 ], [ 449, 655, 514, 676 ], [ 756, 655, 824, 676 ], [ 126, 673, 148, 693 ], [ 153, 673, 205, 693 ], [ 210, 673, 301, 693 ], [ 306, 673, 321, 693 ], [ 326, 673, 368, 693 ], [ 373, 673, 438, 693 ], [ 443, 673, 466, 693 ], [ 471, 673, 505, 693 ], [ 510, 673, 520, 693 ], [ 525, 673, 542, 693 ], [ 546, 673, 585, 693 ], [ 589, 673, 677, 693 ], [ 707, 673, 765, 693 ], [ 770, 673, 802, 693 ], [ 807, 673, 831, 693 ], [ 126, 690, 181, 710 ], [ 186, 690, 195, 710 ], [ 200, 690, 266, 710 ], [ 271, 690, 356, 710 ], [ 361, 690, 409, 710 ], [ 414, 690, 473, 710 ], [ 478, 690, 534, 710 ], [ 539, 690, 614, 710 ], [ 619, 690, 671, 710 ], [ 707, 690, 768, 710 ], [ 773, 690, 783, 710 ], [ 788, 690, 850, 710 ], [ 855, 690, 870, 710 ], [ 126, 707, 159, 728 ], [ 163, 707, 183, 728 ], [ 188, 707, 197, 728 ], [ 707, 707, 766, 728 ], [ 771, 707, 790, 728 ], [ 795, 707, 841, 728 ], [ 845, 707, 860, 728 ], [ 201, 710, 268, 727 ], [ 273, 710, 351, 727 ], [ 707, 725, 754, 745 ], [ 759, 725, 767, 745 ], [ 707, 742, 812, 763 ], [ 126, 761, 148, 781 ], [ 153, 761, 181, 781 ], [ 186, 761, 233, 781 ], [ 237, 761, 247, 781 ], [ 252, 761, 300, 781 ], [ 305, 761, 370, 781 ], [ 375, 761, 384, 781 ], [ 389, 761, 445, 781 ], [ 449, 761, 488, 781 ], [ 492, 761, 509, 781 ], [ 514, 761, 538, 781 ], [ 543, 761, 601, 781 ], [ 707, 761, 800, 781 ], [ 126, 778, 218, 798 ], [ 223, 778, 335, 798 ], [ 340, 778, 356, 798 ], [ 361, 778, 437, 798 ], [ 442, 778, 470, 798 ], [ 475, 778, 535, 798 ], [ 540, 778, 599, 798 ], [ 126, 795, 215, 816 ], [ 220, 795, 284, 816 ], [ 289, 795, 351, 816 ], [ 707, 831, 799, 851 ], [ 139, 832, 161, 853 ], [ 166, 832, 194, 853 ], [ 199, 832, 223, 853 ], [ 228, 832, 270, 853 ], [ 275, 832, 284, 853 ], [ 289, 832, 340, 853 ], [ 345, 832, 402, 853 ], [ 407, 832, 471, 853 ], [ 476, 832, 542, 853 ], [ 547, 832, 562, 853 ], [ 567, 832, 602, 853 ], [ 607, 832, 616, 853 ], [ 621, 832, 638, 853 ], [ 643, 832, 685, 853 ], [ 139, 851, 161, 871 ], [ 166, 851, 226, 871 ], [ 230, 851, 323, 871 ], [ 328, 851, 343, 871 ], [ 348, 851, 383, 871 ], [ 388, 851, 398, 871 ], [ 403, 851, 419, 871 ], [ 424, 851, 462, 871 ], [ 467, 851, 510, 871 ], [ 515, 851, 561, 871 ], [ 566, 851, 640, 871 ], [ 139, 868, 221, 888 ], [ 225, 868, 276, 888 ], [ 281, 868, 300, 888 ], [ 305, 868, 346, 888 ], [ 139, 887, 161, 907 ], [ 166, 887, 194, 907 ], [ 365, 887, 403, 907 ], [ 408, 887, 424, 907 ], [ 428, 887, 463, 907 ], [ 468, 887, 478, 907 ], [ 483, 887, 526, 907 ], [ 532, 887, 626, 907 ], [ 631, 887, 666, 907 ], [ 199, 889, 279, 906 ], [ 284, 889, 360, 906 ], [ 139, 904, 242, 924 ], [ 247, 904, 317, 924 ], [ 322, 904, 386, 924 ], [ 391, 904, 449, 924 ], [ 454, 904, 544, 924 ], [ 549, 904, 561, 924 ], [ 566, 904, 575, 924 ], [ 580, 904, 631, 924 ], [ 636, 904, 682, 924 ] ]
[ [ 117, 71, 201, 88 ], [ 206, 71, 219, 88 ], [ 223, 71, 286, 88 ], [ 290, 71, 339, 88 ], [ 676, 71, 726, 88 ], [ 730, 71, 760, 88 ], [ 765, 71, 788, 88 ], [ 792, 71, 849, 88 ], [ 853, 71, 857, 88 ], [ 117, 85, 180, 103 ], [ 184, 85, 240, 103 ], [ 244, 85, 351, 103 ], [ 716, 85, 746, 103 ], [ 750, 85, 771, 103 ], [ 775, 85, 807, 103 ], [ 117, 100, 206, 117 ], [ 210, 100, 233, 117 ], [ 241, 100, 282, 117 ], [ 117, 127, 258, 155 ], [ 265, 127, 336, 155 ], [ 117, 187, 183, 206 ], [ 117, 203, 185, 222 ], [ 190, 203, 205, 222 ], [ 117, 219, 151, 238 ], [ 156, 219, 222, 238 ], [ 258, 186, 289, 206 ], [ 294, 186, 332, 206 ], [ 337, 186, 384, 206 ], [ 389, 186, 462, 206 ], [ 467, 186, 491, 206 ], [ 496, 186, 559, 206 ], [ 564, 186, 632, 206 ], [ 637, 186, 652, 206 ], [ 657, 186, 685, 206 ], [ 690, 186, 753, 206 ], [ 758, 186, 775, 206 ], [ 779, 186, 849, 206 ], [ 258, 203, 324, 224 ], [ 329, 203, 388, 224 ], [ 393, 203, 452, 224 ], [ 457, 203, 488, 224 ], [ 493, 203, 517, 224 ], [ 522, 206, 593, 223 ], [ 598, 206, 654, 223 ], [ 659, 206, 732, 223 ], [ 737, 203, 798, 224 ], [ 803, 203, 813, 224 ], [ 258, 223, 339, 240 ], [ 344, 221, 360, 241 ], [ 365, 221, 389, 241 ], [ 394, 221, 464, 241 ], [ 469, 223, 527, 240 ], [ 532, 223, 584, 240 ], [ 589, 223, 654, 240 ], [ 258, 257, 309, 276 ], [ 272, 274, 303, 295 ], [ 308, 277, 344, 294 ], [ 349, 277, 421, 294 ], [ 426, 277, 481, 294 ], [ 486, 277, 526, 294 ], [ 531, 277, 562, 294 ], [ 567, 277, 633, 294 ], [ 638, 277, 699, 294 ], [ 704, 277, 804, 294 ], [ 809, 277, 857, 294 ], [ 272, 292, 332, 312 ], [ 337, 292, 385, 312 ], [ 389, 292, 484, 312 ], [ 272, 310, 326, 330 ], [ 331, 310, 407, 330 ], [ 412, 310, 460, 330 ], [ 465, 310, 489, 330 ], [ 494, 310, 530, 330 ], [ 535, 313, 595, 330 ], [ 600, 313, 655, 330 ], [ 660, 313, 705, 330 ], [ 710, 313, 725, 330 ], [ 730, 310, 754, 330 ], [ 759, 310, 820, 330 ], [ 272, 328, 356, 348 ], [ 361, 328, 453, 348 ], [ 458, 328, 475, 348 ], [ 479, 328, 549, 348 ], [ 554, 328, 609, 348 ], [ 614, 328, 656, 348 ], [ 661, 328, 740, 348 ], [ 745, 330, 755, 347 ], [ 760, 328, 823, 348 ], [ 828, 328, 871, 348 ], [ 272, 345, 289, 365 ], [ 294, 345, 371, 365 ], [ 376, 347, 386, 364 ], [ 391, 345, 413, 365 ], [ 418, 345, 438, 365 ], [ 443, 345, 560, 365 ], [ 564, 345, 624, 365 ], [ 629, 345, 644, 365 ], [ 649, 345, 701, 365 ], [ 705, 345, 735, 365 ], [ 740, 345, 748, 365 ], [ 753, 345, 815, 365 ], [ 820, 345, 870, 365 ], [ 272, 362, 326, 383 ], [ 331, 362, 404, 383 ], [ 409, 362, 435, 383 ], [ 439, 362, 474, 383 ], [ 479, 362, 512, 383 ], [ 272, 381, 322, 401 ], [ 326, 381, 392, 401 ], [ 397, 381, 460, 401 ], [ 465, 381, 502, 401 ], [ 506, 381, 538, 401 ], [ 543, 381, 580, 401 ], [ 585, 381, 627, 401 ], [ 632, 381, 647, 401 ], [ 288, 400, 340, 420 ], [ 345, 400, 414, 420 ], [ 419, 400, 436, 420 ], [ 441, 400, 506, 420 ], [ 511, 400, 591, 420 ], [ 288, 418, 340, 438 ], [ 345, 418, 369, 438 ], [ 374, 418, 410, 438 ], [ 414, 421, 479, 437 ], [ 484, 421, 540, 437 ], [ 545, 418, 561, 438 ], [ 565, 421, 630, 437 ], [ 635, 421, 674, 437 ], [ 679, 421, 735, 437 ], [ 288, 437, 340, 457 ], [ 345, 437, 369, 457 ], [ 374, 437, 410, 457 ], [ 414, 439, 514, 456 ], [ 519, 439, 568, 456 ], [ 573, 437, 588, 457 ], [ 593, 439, 667, 456 ], [ 672, 439, 728, 456 ], [ 288, 455, 340, 475 ], [ 345, 455, 410, 475 ], [ 415, 455, 516, 475 ], [ 521, 455, 569, 475 ], [ 574, 455, 663, 475 ], [ 288, 474, 346, 494 ], [ 351, 474, 432, 494 ], [ 437, 474, 452, 494 ], [ 457, 474, 518, 494 ], [ 523, 474, 665, 494 ], [ 669, 474, 736, 494 ], [ 741, 474, 789, 494 ], [ 794, 474, 839, 494 ], [ 844, 474, 861, 494 ], [ 288, 491, 324, 511 ], [ 329, 491, 354, 511 ], [ 359, 491, 403, 511 ], [ 408, 491, 432, 511 ], [ 437, 491, 487, 511 ], [ 492, 491, 508, 511 ], [ 513, 491, 537, 511 ], [ 542, 491, 633, 511 ], [ 638, 491, 655, 511 ], [ 660, 491, 752, 511 ], [ 757, 491, 827, 511 ], [ 288, 510, 363, 530 ], [ 368, 510, 403, 530 ], [ 408, 510, 448, 530 ], [ 452, 510, 497, 530 ], [ 502, 510, 522, 530 ], [ 527, 510, 551, 530 ], [ 556, 510, 622, 530 ], [ 627, 510, 656, 530 ], [ 661, 510, 685, 530 ], [ 690, 510, 722, 530 ], [ 727, 510, 766, 530 ], [ 771, 510, 786, 530 ], [ 791, 510, 827, 530 ], [ 288, 527, 343, 547 ], [ 348, 527, 361, 547 ], [ 366, 527, 412, 547 ], [ 417, 527, 427, 547 ], [ 288, 546, 352, 566 ], [ 357, 546, 451, 566 ], [ 456, 546, 554, 566 ], [ 559, 546, 575, 566 ], [ 580, 546, 659, 566 ], [ 664, 546, 720, 566 ], [ 725, 546, 773, 566 ], [ 778, 546, 859, 566 ], [ 288, 563, 303, 583 ], [ 308, 563, 369, 583 ], [ 374, 563, 397, 583 ], [ 401, 563, 434, 583 ], [ 439, 563, 489, 583 ], [ 494, 563, 551, 583 ], [ 555, 563, 607, 583 ], [ 612, 563, 662, 583 ], [ 667, 563, 675, 583 ], [ 680, 563, 720, 583 ], [ 288, 582, 340, 602 ], [ 345, 582, 400, 602 ], [ 405, 582, 434, 602 ], [ 438, 582, 478, 602 ], [ 483, 582, 521, 602 ], [ 526, 582, 541, 602 ], [ 546, 582, 586, 602 ], [ 591, 582, 672, 602 ], [ 676, 582, 726, 602 ], [ 731, 582, 767, 602 ], [ 772, 582, 830, 602 ], [ 288, 600, 339, 620 ], [ 344, 600, 387, 620 ], [ 392, 600, 438, 620 ], [ 443, 600, 493, 620 ], [ 498, 600, 542, 620 ], [ 546, 600, 581, 620 ], [ 586, 600, 614, 620 ], [ 288, 618, 329, 639 ], [ 334, 618, 358, 639 ], [ 363, 618, 440, 639 ], [ 445, 618, 476, 639 ], [ 481, 618, 583, 639 ], [ 588, 618, 623, 639 ], [ 627, 618, 681, 639 ], [ 686, 618, 765, 639 ], [ 302, 655, 383, 676 ], [ 388, 655, 413, 676 ], [ 418, 655, 444, 676 ], [ 449, 655, 514, 676 ], [ 756, 655, 824, 676 ], [ 126, 673, 148, 693 ], [ 153, 673, 205, 693 ], [ 210, 673, 301, 693 ], [ 306, 673, 321, 693 ], [ 326, 673, 368, 693 ], [ 373, 673, 438, 693 ], [ 443, 673, 466, 693 ], [ 471, 673, 505, 693 ], [ 510, 673, 520, 693 ], [ 525, 673, 542, 693 ], [ 546, 673, 585, 693 ], [ 589, 673, 677, 693 ], [ 126, 690, 181, 710 ], [ 186, 690, 195, 710 ], [ 200, 690, 266, 710 ], [ 271, 690, 356, 710 ], [ 361, 690, 409, 710 ], [ 414, 690, 473, 710 ], [ 478, 690, 534, 710 ], [ 539, 690, 614, 710 ], [ 619, 690, 671, 710 ], [ 126, 707, 159, 728 ], [ 163, 707, 183, 728 ], [ 188, 707, 197, 728 ], [ 201, 710, 268, 727 ], [ 273, 710, 351, 727 ], [ 707, 673, 765, 693 ], [ 770, 673, 802, 693 ], [ 807, 673, 831, 693 ], [ 707, 690, 768, 710 ], [ 773, 690, 783, 710 ], [ 788, 690, 850, 710 ], [ 855, 690, 870, 710 ], [ 707, 707, 766, 728 ], [ 771, 707, 790, 728 ], [ 795, 707, 841, 728 ], [ 845, 707, 860, 728 ], [ 707, 725, 754, 745 ], [ 759, 725, 767, 745 ], [ 707, 742, 812, 763 ], [ 126, 761, 148, 781 ], [ 153, 761, 181, 781 ], [ 186, 761, 233, 781 ], [ 237, 761, 247, 781 ], [ 252, 761, 300, 781 ], [ 305, 761, 370, 781 ], [ 375, 761, 384, 781 ], [ 389, 761, 445, 781 ], [ 449, 761, 488, 781 ], [ 492, 761, 509, 781 ], [ 514, 761, 538, 781 ], [ 543, 761, 601, 781 ], [ 126, 778, 218, 798 ], [ 223, 778, 335, 798 ], [ 340, 778, 356, 798 ], [ 361, 778, 437, 798 ], [ 442, 778, 470, 798 ], [ 475, 778, 535, 798 ], [ 540, 778, 599, 798 ], [ 126, 795, 215, 816 ], [ 220, 795, 284, 816 ], [ 289, 795, 351, 816 ], [ 707, 761, 800, 781 ], [ 139, 832, 161, 853 ], [ 166, 832, 194, 853 ], [ 199, 832, 223, 853 ], [ 228, 832, 270, 853 ], [ 275, 832, 284, 853 ], [ 289, 832, 340, 853 ], [ 345, 832, 402, 853 ], [ 407, 832, 471, 853 ], [ 476, 832, 542, 853 ], [ 547, 832, 562, 853 ], [ 567, 832, 602, 853 ], [ 607, 832, 616, 853 ], [ 621, 832, 638, 853 ], [ 643, 832, 685, 853 ], [ 139, 851, 161, 871 ], [ 166, 851, 226, 871 ], [ 230, 851, 323, 871 ], [ 328, 851, 343, 871 ], [ 348, 851, 383, 871 ], [ 388, 851, 398, 871 ], [ 403, 851, 419, 871 ], [ 424, 851, 462, 871 ], [ 467, 851, 510, 871 ], [ 515, 851, 561, 871 ], [ 566, 851, 640, 871 ], [ 139, 868, 221, 888 ], [ 225, 868, 276, 888 ], [ 281, 868, 300, 888 ], [ 305, 868, 346, 888 ], [ 139, 887, 161, 907 ], [ 166, 887, 194, 907 ], [ 199, 889, 279, 906 ], [ 284, 889, 360, 906 ], [ 365, 887, 403, 907 ], [ 408, 887, 424, 907 ], [ 428, 887, 463, 907 ], [ 468, 887, 478, 907 ], [ 483, 887, 526, 907 ], [ 532, 887, 626, 907 ], [ 631, 887, 666, 907 ], [ 139, 904, 242, 924 ], [ 247, 904, 317, 924 ], [ 322, 904, 386, 924 ], [ 391, 904, 449, 924 ], [ 454, 904, 544, 924 ], [ 549, 904, 561, 924 ], [ 566, 904, 575, 924 ], [ 580, 904, 631, 924 ], [ 636, 904, 682, 924 ], [ 707, 831, 799, 851 ] ]
if priority processing of a claim/correspondence associated with an EP 139 is necessary, or if a rating decision is ready for promulgation, and the evidence necessary to process the claim/correspondence associated with the EP 139 is of record. Although Compensation Service and the contractor are generally Important: responsible for processing claims/correspondence associated with an EP 139, SOOs remain responsible for responding to inquiries they receive through the Inquiry Routing and Information System (IRIS) or from members of Congress regarding such claims/correspondence. Compensation Service periodically releases batches of decision notices that b. Batch Generation and reflect a denial of entitlement to additional disability compensation for a Release of dependent when the claimant is a Veteran with a combined disability rating Decision that is than 30 percent less and Notices That Reflect a Denial a 130-series EP is pending a concurrently pending rating EP, without or of Entitlement an EP 020 and a 130-series EP are concurrently pending. to Additional Benefits Upon release of a decision notice, the system that generated the notice clears the 130-series EP, and uploads a copy of the decision notice into the eFolder. Veteran’s For information about rating EPs, see M21-4, Appendix B, Reference: Section II.
if priority processing of a claim/correspondence associated with an EP 139 is necessary, or if a rating decision is ready for promulgation, and the evidence necessary to process the claim/correspondence associated with the EP 139 is of record. Important: Although Compensation Service and the contractor are generally responsible for processing claims/correspondence associated with an EP 139, SOOs remain responsible for responding to inquiries they receive through the Inquiry Routing and Information System (IRIS) or from members of Congress regarding such claims/correspondence. b. Batch Generation and Release of Decision Notices That Reflect a Denial of Entitlement to Additional Benefits Compensation Service periodically releases batches of decision notices that reflect a denial of entitlement to additional disability compensation for a dependent when the claimant is a Veteran with a combined disability rating that is less than 30 percent and a 130-series EP is pending without a concurrently pending rating EP, or an EP 020 and a 130-series EP are concurrently pending. Upon release of a decision notice, the system that generated the notice clears the 130-series EP, and uploads a copy of the decision notice into the Veteran’s eFolder. Reference: For information about rating EPs, see M21-4, Appendix B, Section II.
0.82612
[ 0, 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, 46, 38, 39, 40, 41, 42, 43, 44, 45, 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, 90, 91, 92, 93, 105, 106, 119, 127, 128, 129, 130, 131, 144, 145, 156, 157, 158, 81, 82, 83, 84, 85, 86, 87, 88, 89, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 120, 121, 125, 122, 123, 124, 126, 132, 133, 134, 135, 136, 142, 137, 138, 139, 140, 141, 143, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 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, 186, 185, 196, 187, 188, 189, 190, 191, 192, 193, 194, 195, 197, 198 ]
M21_1III_i_4_SecE.docx
task-1431-831
4
[ [ 272, 89, 284, 110 ], [ 289, 89, 348, 110 ], [ 353, 89, 437, 110 ], [ 442, 89, 458, 110 ], [ 463, 89, 472, 110 ], [ 477, 89, 648, 110 ], [ 654, 89, 734, 110 ], [ 739, 89, 774, 110 ], [ 779, 89, 798, 110 ], [ 802, 89, 825, 110 ], [ 830, 89, 860, 110 ], [ 272, 107, 286, 127 ], [ 291, 107, 371, 127 ], [ 376, 107, 393, 127 ], [ 272, 125, 284, 145 ], [ 289, 125, 298, 145 ], [ 303, 125, 349, 145 ], [ 353, 125, 419, 145 ], [ 424, 125, 437, 145 ], [ 442, 125, 486, 145 ], [ 490, 125, 513, 145 ], [ 518, 125, 629, 145 ], [ 634, 125, 662, 145 ], [ 667, 125, 691, 145 ], [ 696, 125, 765, 145 ], [ 770, 125, 847, 145 ], [ 851, 125, 867, 145 ], [ 272, 143, 331, 163 ], [ 336, 143, 360, 163 ], [ 365, 143, 537, 163 ], [ 542, 143, 622, 163 ], [ 627, 143, 662, 163 ], [ 667, 143, 691, 163 ], [ 696, 143, 719, 163 ], [ 724, 143, 753, 163 ], [ 758, 143, 771, 163 ], [ 776, 143, 793, 163 ], [ 798, 143, 852, 163 ], [ 356, 177, 429, 198 ], [ 434, 177, 548, 198 ], [ 553, 177, 611, 198 ], [ 616, 177, 644, 198 ], [ 649, 177, 673, 198 ], [ 678, 177, 758, 198 ], [ 763, 177, 787, 198 ], [ 792, 177, 865, 198 ], [ 258, 179, 346, 198 ], [ 258, 195, 348, 215 ], [ 353, 195, 375, 215 ], [ 380, 195, 464, 215 ], [ 469, 195, 649, 215 ], [ 654, 195, 734, 215 ], [ 739, 195, 774, 215 ], [ 779, 195, 797, 215 ], [ 802, 195, 825, 215 ], [ 830, 195, 865, 215 ], [ 258, 212, 305, 232 ], [ 310, 212, 364, 232 ], [ 369, 212, 459, 232 ], [ 464, 212, 487, 232 ], [ 491, 212, 579, 232 ], [ 583, 212, 599, 232 ], [ 604, 212, 672, 232 ], [ 677, 212, 711, 232 ], [ 716, 212, 772, 232 ], [ 777, 212, 838, 232 ], [ 843, 212, 867, 232 ], [ 258, 230, 316, 250 ], [ 321, 230, 384, 250 ], [ 389, 230, 417, 250 ], [ 422, 230, 516, 250 ], [ 521, 230, 579, 250 ], [ 584, 230, 634, 250 ], [ 638, 230, 655, 250 ], [ 660, 230, 698, 250 ], [ 703, 230, 775, 250 ], [ 779, 230, 796, 250 ], [ 258, 247, 331, 267 ], [ 336, 247, 411, 267 ], [ 416, 247, 452, 267 ], [ 457, 247, 641, 267 ], [ 258, 299, 372, 320 ], [ 377, 299, 435, 320 ], [ 440, 299, 534, 320 ], [ 539, 299, 601, 320 ], [ 606, 299, 665, 320 ], [ 670, 299, 686, 320 ], [ 691, 299, 756, 320 ], [ 761, 299, 816, 320 ], [ 821, 299, 851, 320 ], [ 117, 300, 132, 319 ], [ 141, 300, 186, 319 ], [ 117, 316, 204, 335 ], [ 209, 316, 238, 335 ], [ 258, 317, 308, 337 ], [ 313, 317, 322, 337 ], [ 327, 317, 375, 337 ], [ 380, 317, 396, 337 ], [ 401, 317, 489, 337 ], [ 494, 317, 509, 337 ], [ 514, 317, 593, 337 ], [ 598, 317, 671, 337 ], [ 675, 317, 784, 337 ], [ 789, 317, 812, 337 ], [ 817, 317, 826, 337 ], [ 117, 332, 175, 351 ], [ 180, 332, 195, 351 ], [ 258, 334, 339, 354 ], [ 344, 334, 386, 354 ], [ 391, 334, 415, 354 ], [ 420, 334, 488, 354 ], [ 493, 334, 506, 354 ], [ 511, 334, 519, 354 ], [ 524, 334, 586, 354 ], [ 591, 334, 626, 354 ], [ 631, 334, 639, 354 ], [ 645, 334, 722, 354 ], [ 727, 334, 800, 354 ], [ 804, 334, 850, 354 ], [ 117, 348, 182, 367 ], [ 258, 352, 288, 372 ], [ 293, 352, 306, 372 ], [ 345, 352, 379, 372 ], [ 384, 352, 403, 372 ], [ 408, 352, 466, 372 ], [ 311, 353, 340, 372 ], [ 471, 353, 501, 373 ], [ 117, 364, 173, 383 ], [ 178, 364, 215, 383 ], [ 117, 380, 171, 399 ], [ 176, 380, 185, 399 ], [ 189, 380, 239, 399 ], [ 271, 388, 280, 408 ], [ 285, 388, 365, 408 ], [ 370, 388, 393, 408 ], [ 398, 388, 411, 408 ], [ 416, 388, 479, 408 ], [ 548, 388, 557, 408 ], [ 562, 388, 661, 408 ], [ 666, 388, 729, 408 ], [ 734, 388, 779, 408 ], [ 784, 388, 812, 408 ], [ 484, 389, 543, 408 ], [ 817, 389, 835, 409 ], [ 117, 396, 132, 415 ], [ 137, 396, 228, 415 ], [ 271, 406, 290, 426 ], [ 295, 406, 317, 426 ], [ 323, 406, 352, 426 ], [ 357, 406, 385, 426 ], [ 390, 406, 399, 426 ], [ 404, 406, 484, 426 ], [ 489, 406, 512, 426 ], [ 517, 406, 541, 426 ], [ 546, 406, 645, 426 ], [ 650, 406, 718, 426 ], [ 117, 412, 132, 431 ], [ 137, 412, 219, 431 ], [ 117, 428, 179, 447 ], [ 258, 441, 302, 461 ], [ 307, 441, 361, 461 ], [ 366, 441, 382, 461 ], [ 387, 441, 396, 461 ], [ 401, 441, 466, 461 ], [ 471, 441, 524, 461 ], [ 529, 441, 553, 461 ], [ 558, 441, 612, 461 ], [ 617, 441, 647, 461 ], [ 652, 441, 728, 461 ], [ 733, 441, 757, 461 ], [ 761, 441, 809, 461 ], [ 271, 477, 317, 497 ], [ 322, 477, 346, 497 ], [ 351, 477, 431, 497 ], [ 436, 477, 464, 497 ], [ 469, 477, 497, 497 ], [ 271, 495, 332, 516 ], [ 337, 495, 346, 516 ], [ 351, 495, 389, 516 ], [ 394, 495, 410, 516 ], [ 415, 495, 439, 516 ], [ 444, 495, 509, 516 ], [ 514, 495, 562, 516 ], [ 567, 495, 598, 516 ], [ 603, 495, 627, 516 ], [ 712, 495, 777, 516 ], [ 631, 498, 707, 515 ], [ 355, 530, 382, 550 ], [ 387, 530, 480, 550 ], [ 485, 530, 529, 550 ], [ 534, 530, 579, 550 ], [ 584, 530, 619, 550 ], [ 624, 530, 649, 550 ], [ 655, 530, 713, 550 ], [ 718, 530, 795, 550 ], [ 800, 530, 818, 550 ], [ 258, 531, 345, 550 ], [ 258, 548, 317, 568 ], [ 322, 548, 340, 568 ] ]
[ [ 272, 89, 284, 110 ], [ 289, 89, 348, 110 ], [ 353, 89, 437, 110 ], [ 442, 89, 458, 110 ], [ 463, 89, 472, 110 ], [ 477, 89, 648, 110 ], [ 654, 89, 734, 110 ], [ 739, 89, 774, 110 ], [ 779, 89, 798, 110 ], [ 802, 89, 825, 110 ], [ 830, 89, 860, 110 ], [ 272, 107, 286, 127 ], [ 291, 107, 371, 127 ], [ 376, 107, 393, 127 ], [ 272, 125, 284, 145 ], [ 289, 125, 298, 145 ], [ 303, 125, 349, 145 ], [ 353, 125, 419, 145 ], [ 424, 125, 437, 145 ], [ 442, 125, 486, 145 ], [ 490, 125, 513, 145 ], [ 518, 125, 629, 145 ], [ 634, 125, 662, 145 ], [ 667, 125, 691, 145 ], [ 696, 125, 765, 145 ], [ 770, 125, 847, 145 ], [ 851, 125, 867, 145 ], [ 272, 143, 331, 163 ], [ 336, 143, 360, 163 ], [ 365, 143, 537, 163 ], [ 542, 143, 622, 163 ], [ 627, 143, 662, 163 ], [ 667, 143, 691, 163 ], [ 696, 143, 719, 163 ], [ 724, 143, 753, 163 ], [ 758, 143, 771, 163 ], [ 776, 143, 793, 163 ], [ 798, 143, 852, 163 ], [ 258, 179, 346, 198 ], [ 356, 177, 429, 198 ], [ 434, 177, 548, 198 ], [ 553, 177, 611, 198 ], [ 616, 177, 644, 198 ], [ 649, 177, 673, 198 ], [ 678, 177, 758, 198 ], [ 763, 177, 787, 198 ], [ 792, 177, 865, 198 ], [ 258, 195, 348, 215 ], [ 353, 195, 375, 215 ], [ 380, 195, 464, 215 ], [ 469, 195, 649, 215 ], [ 654, 195, 734, 215 ], [ 739, 195, 774, 215 ], [ 779, 195, 797, 215 ], [ 802, 195, 825, 215 ], [ 830, 195, 865, 215 ], [ 258, 212, 305, 232 ], [ 310, 212, 364, 232 ], [ 369, 212, 459, 232 ], [ 464, 212, 487, 232 ], [ 491, 212, 579, 232 ], [ 583, 212, 599, 232 ], [ 604, 212, 672, 232 ], [ 677, 212, 711, 232 ], [ 716, 212, 772, 232 ], [ 777, 212, 838, 232 ], [ 843, 212, 867, 232 ], [ 258, 230, 316, 250 ], [ 321, 230, 384, 250 ], [ 389, 230, 417, 250 ], [ 422, 230, 516, 250 ], [ 521, 230, 579, 250 ], [ 584, 230, 634, 250 ], [ 638, 230, 655, 250 ], [ 660, 230, 698, 250 ], [ 703, 230, 775, 250 ], [ 779, 230, 796, 250 ], [ 258, 247, 331, 267 ], [ 336, 247, 411, 267 ], [ 416, 247, 452, 267 ], [ 457, 247, 641, 267 ], [ 117, 300, 132, 319 ], [ 141, 300, 186, 319 ], [ 117, 316, 204, 335 ], [ 209, 316, 238, 335 ], [ 117, 332, 175, 351 ], [ 180, 332, 195, 351 ], [ 117, 348, 182, 367 ], [ 117, 364, 173, 383 ], [ 178, 364, 215, 383 ], [ 117, 380, 171, 399 ], [ 176, 380, 185, 399 ], [ 189, 380, 239, 399 ], [ 117, 396, 132, 415 ], [ 137, 396, 228, 415 ], [ 117, 412, 132, 431 ], [ 137, 412, 219, 431 ], [ 117, 428, 179, 447 ], [ 258, 299, 372, 320 ], [ 377, 299, 435, 320 ], [ 440, 299, 534, 320 ], [ 539, 299, 601, 320 ], [ 606, 299, 665, 320 ], [ 670, 299, 686, 320 ], [ 691, 299, 756, 320 ], [ 761, 299, 816, 320 ], [ 821, 299, 851, 320 ], [ 258, 317, 308, 337 ], [ 313, 317, 322, 337 ], [ 327, 317, 375, 337 ], [ 380, 317, 396, 337 ], [ 401, 317, 489, 337 ], [ 494, 317, 509, 337 ], [ 514, 317, 593, 337 ], [ 598, 317, 671, 337 ], [ 675, 317, 784, 337 ], [ 789, 317, 812, 337 ], [ 817, 317, 826, 337 ], [ 258, 334, 339, 354 ], [ 344, 334, 386, 354 ], [ 391, 334, 415, 354 ], [ 420, 334, 488, 354 ], [ 493, 334, 506, 354 ], [ 511, 334, 519, 354 ], [ 524, 334, 586, 354 ], [ 591, 334, 626, 354 ], [ 631, 334, 639, 354 ], [ 645, 334, 722, 354 ], [ 727, 334, 800, 354 ], [ 804, 334, 850, 354 ], [ 258, 352, 288, 372 ], [ 293, 352, 306, 372 ], [ 311, 353, 340, 372 ], [ 345, 352, 379, 372 ], [ 384, 352, 403, 372 ], [ 408, 352, 466, 372 ], [ 471, 353, 501, 373 ], [ 271, 388, 280, 408 ], [ 285, 388, 365, 408 ], [ 370, 388, 393, 408 ], [ 398, 388, 411, 408 ], [ 416, 388, 479, 408 ], [ 484, 389, 543, 408 ], [ 548, 388, 557, 408 ], [ 562, 388, 661, 408 ], [ 666, 388, 729, 408 ], [ 734, 388, 779, 408 ], [ 784, 388, 812, 408 ], [ 817, 389, 835, 409 ], [ 271, 406, 290, 426 ], [ 295, 406, 317, 426 ], [ 323, 406, 352, 426 ], [ 357, 406, 385, 426 ], [ 390, 406, 399, 426 ], [ 404, 406, 484, 426 ], [ 489, 406, 512, 426 ], [ 517, 406, 541, 426 ], [ 546, 406, 645, 426 ], [ 650, 406, 718, 426 ], [ 258, 441, 302, 461 ], [ 307, 441, 361, 461 ], [ 366, 441, 382, 461 ], [ 387, 441, 396, 461 ], [ 401, 441, 466, 461 ], [ 471, 441, 524, 461 ], [ 529, 441, 553, 461 ], [ 558, 441, 612, 461 ], [ 617, 441, 647, 461 ], [ 652, 441, 728, 461 ], [ 733, 441, 757, 461 ], [ 761, 441, 809, 461 ], [ 271, 477, 317, 497 ], [ 322, 477, 346, 497 ], [ 351, 477, 431, 497 ], [ 436, 477, 464, 497 ], [ 469, 477, 497, 497 ], [ 271, 495, 332, 516 ], [ 337, 495, 346, 516 ], [ 351, 495, 389, 516 ], [ 394, 495, 410, 516 ], [ 415, 495, 439, 516 ], [ 444, 495, 509, 516 ], [ 514, 495, 562, 516 ], [ 567, 495, 598, 516 ], [ 603, 495, 627, 516 ], [ 631, 498, 707, 515 ], [ 712, 495, 777, 516 ], [ 258, 531, 345, 550 ], [ 355, 530, 382, 550 ], [ 387, 530, 480, 550 ], [ 485, 530, 529, 550 ], [ 534, 530, 579, 550 ], [ 584, 530, 619, 550 ], [ 624, 530, 649, 550 ], [ 655, 530, 713, 550 ], [ 718, 530, 795, 550 ], [ 800, 530, 818, 550 ], [ 258, 548, 317, 568 ], [ 322, 548, 340, 568 ] ]
Missouri Judicial Yes 60 330 No Not Confirmation/Ratification Holder Date of Applicable Convey – Confirmation Transfer of Ratification Custody of Sale Retain or 3rd Party – Confirmed Sale Date with No Transfer of Custody Missouri Non-Judicial Sale No Results of Date of Sale 60 330 Yes 365 Sale Montana Judicial Confirmation/Ratification Yes Holder Date of 150 450 Yes 365 Convey - Confirmation Transfer of Ratification Custody of Sale Retain or 3rd Party – Confirmed Sale Date with No Transfer of Custody Montana Non-Judicial Sale No Results of Date of Sale 150 450 No Not Sale Applicable Nebraska Judicial of Sale Yes Holder Date of 180 420 No Not Convey – Confirmation Applicable Transfer of Ratification Custody of Sale Retain or 3rd Party – Confirmed
Missouri Judicial Confirmation/Ratification Yes Holder Convey – Transfer of Custody Retain or 3rd Party – Confirmed Sale Date with No Transfer of Custody Date of Ratification of Sale 60 330 No Not Applicable Missouri Non-Judicial Sale No Results of Sale Date of Sale 60 330 Yes 365 Montana Judicial Confirmation/Ratification Yes Holder Convey - Transfer of Custody Retain or 3rd Party – Confirmed Sale Date with No Transfer of Custody Date of Ratification of Sale 150 450 Yes 365 Montana Non-Judicial Sale No Results of Sale Date of Sale 150 450 No Not Applicable Nebraska Judicial of Sale Yes Holder Convey – Transfer of Custody Retain or 3rd Party – Confirmed Date of Ratification of Sale 180 420 No Not Applicable Confirmation Confirmation Confirmation
0.596223
[ 0, 1, 7, 2, 8, 12, 13, 15, 16, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 9, 10, 17, 19, 20, 3, 4, 5, 6, 11, 34, 35, 36, 37, 38, 39, 47, 40, 41, 42, 43, 44, 45, 46, 48, 49, 50, 51, 52, 59, 60, 62, 63, 65, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 53, 54, 64, 66, 67, 55, 56, 57, 58, 81, 82, 83, 84, 85, 86, 94, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 108, 109, 112, 113, 115, 118, 119, 120, 121, 122, 123, 102, 103, 114, 116, 117, 104, 105, 106, 107, 111, 14, 61, 110 ]
M26-3%20Appendix%20G%20-%205-2017.docx
task-1431-857
7
[ [ 90, 265, 130, 280 ], [ 177, 265, 210, 280 ], [ 393, 265, 408, 280 ], [ 630, 265, 642, 280 ], [ 700, 265, 717, 280 ], [ 769, 265, 782, 280 ], [ 842, 265, 859, 280 ], [ 256, 283, 374, 298 ], [ 478, 283, 509, 298 ], [ 552, 283, 574, 298 ], [ 576, 283, 586, 298 ], [ 842, 283, 890, 298 ], [ 478, 301, 512, 316 ], [ 514, 301, 520, 316 ], [ 552, 301, 613, 316 ], [ 478, 319, 516, 334 ], [ 519, 319, 528, 334 ], [ 559, 319, 612, 334 ], [ 478, 337, 515, 352 ], [ 552, 337, 561, 352 ], [ 564, 337, 583, 352 ], [ 478, 355, 507, 370 ], [ 510, 355, 520, 370 ], [ 478, 373, 494, 388 ], [ 496, 373, 520, 388 ], [ 523, 373, 529, 388 ], [ 478, 391, 527, 406 ], [ 478, 409, 497, 424 ], [ 499, 409, 521, 424 ], [ 478, 427, 498, 442 ], [ 501, 427, 514, 442 ], [ 478, 445, 516, 460 ], [ 519, 445, 528, 460 ], [ 478, 463, 515, 478 ], [ 90, 482, 130, 496 ], [ 177, 482, 233, 496 ], [ 256, 482, 275, 496 ], [ 393, 482, 406, 496 ], [ 478, 482, 511, 496 ], [ 513, 482, 523, 496 ], [ 552, 482, 574, 496 ], [ 576, 482, 586, 496 ], [ 588, 482, 607, 496 ], [ 630, 482, 642, 496 ], [ 700, 482, 717, 496 ], [ 769, 482, 785, 496 ], [ 842, 482, 859, 496 ], [ 478, 500, 497, 514 ], [ 90, 518, 133, 533 ], [ 177, 518, 210, 533 ], [ 256, 518, 374, 533 ], [ 393, 518, 408, 533 ], [ 478, 518, 509, 533 ], [ 552, 518, 574, 533 ], [ 576, 518, 586, 533 ], [ 630, 518, 647, 533 ], [ 700, 518, 717, 533 ], [ 769, 518, 785, 533 ], [ 842, 518, 859, 533 ], [ 478, 536, 512, 551 ], [ 514, 536, 518, 551 ], [ 552, 536, 613, 551 ], [ 478, 554, 516, 569 ], [ 519, 554, 528, 569 ], [ 559, 554, 612, 569 ], [ 478, 572, 515, 587 ], [ 552, 572, 561, 587 ], [ 564, 572, 583, 587 ], [ 478, 590, 507, 605 ], [ 510, 590, 520, 605 ], [ 478, 608, 494, 623 ], [ 496, 608, 520, 623 ], [ 523, 608, 529, 623 ], [ 478, 626, 527, 641 ], [ 478, 644, 497, 659 ], [ 499, 644, 521, 659 ], [ 478, 662, 498, 677 ], [ 501, 662, 514, 677 ], [ 478, 680, 516, 695 ], [ 519, 680, 528, 695 ], [ 478, 698, 515, 713 ], [ 90, 717, 133, 731 ], [ 177, 717, 233, 731 ], [ 256, 717, 275, 731 ], [ 393, 717, 406, 731 ], [ 478, 717, 511, 731 ], [ 513, 717, 523, 731 ], [ 552, 717, 574, 731 ], [ 576, 717, 586, 731 ], [ 588, 717, 607, 731 ], [ 630, 717, 647, 731 ], [ 700, 717, 717, 731 ], [ 769, 717, 782, 731 ], [ 842, 717, 859, 731 ], [ 478, 735, 497, 749 ], [ 842, 735, 890, 749 ], [ 90, 753, 134, 768 ], [ 177, 753, 210, 768 ], [ 320, 753, 329, 768 ], [ 332, 753, 351, 768 ], [ 393, 753, 408, 768 ], [ 478, 753, 509, 768 ], [ 552, 753, 574, 768 ], [ 576, 753, 586, 768 ], [ 630, 753, 647, 768 ], [ 700, 753, 717, 768 ], [ 769, 753, 782, 768 ], [ 842, 753, 859, 768 ], [ 478, 771, 512, 786 ], [ 514, 771, 520, 786 ], [ 552, 771, 613, 786 ], [ 842, 771, 890, 786 ], [ 478, 789, 516, 804 ], [ 519, 789, 528, 804 ], [ 559, 789, 612, 804 ], [ 478, 807, 515, 822 ], [ 552, 807, 561, 822 ], [ 564, 807, 583, 822 ], [ 478, 825, 507, 840 ], [ 510, 825, 520, 840 ], [ 478, 843, 494, 858 ], [ 496, 843, 520, 858 ], [ 523, 843, 529, 858 ], [ 478, 861, 527, 876 ] ]
[ [ 90, 265, 130, 280 ], [ 177, 265, 210, 280 ], [ 256, 283, 374, 298 ], [ 393, 265, 408, 280 ], [ 478, 283, 509, 298 ], [ 478, 301, 512, 316 ], [ 514, 301, 520, 316 ], [ 478, 319, 516, 334 ], [ 519, 319, 528, 334 ], [ 478, 337, 515, 352 ], [ 478, 355, 507, 370 ], [ 510, 355, 520, 370 ], [ 478, 373, 494, 388 ], [ 496, 373, 520, 388 ], [ 523, 373, 529, 388 ], [ 478, 391, 527, 406 ], [ 478, 409, 497, 424 ], [ 499, 409, 521, 424 ], [ 478, 427, 498, 442 ], [ 501, 427, 514, 442 ], [ 478, 445, 516, 460 ], [ 519, 445, 528, 460 ], [ 478, 463, 515, 478 ], [ 552, 283, 574, 298 ], [ 576, 283, 586, 298 ], [ 559, 319, 612, 334 ], [ 552, 337, 561, 352 ], [ 564, 337, 583, 352 ], [ 630, 265, 642, 280 ], [ 700, 265, 717, 280 ], [ 769, 265, 782, 280 ], [ 842, 265, 859, 280 ], [ 842, 283, 890, 298 ], [ 90, 482, 130, 496 ], [ 177, 482, 233, 496 ], [ 256, 482, 275, 496 ], [ 393, 482, 406, 496 ], [ 478, 482, 511, 496 ], [ 513, 482, 523, 496 ], [ 478, 500, 497, 514 ], [ 552, 482, 574, 496 ], [ 576, 482, 586, 496 ], [ 588, 482, 607, 496 ], [ 630, 482, 642, 496 ], [ 700, 482, 717, 496 ], [ 769, 482, 785, 496 ], [ 842, 482, 859, 496 ], [ 90, 518, 133, 533 ], [ 177, 518, 210, 533 ], [ 256, 518, 374, 533 ], [ 393, 518, 408, 533 ], [ 478, 518, 509, 533 ], [ 478, 536, 512, 551 ], [ 514, 536, 518, 551 ], [ 478, 554, 516, 569 ], [ 519, 554, 528, 569 ], [ 478, 572, 515, 587 ], [ 478, 590, 507, 605 ], [ 510, 590, 520, 605 ], [ 478, 608, 494, 623 ], [ 496, 608, 520, 623 ], [ 523, 608, 529, 623 ], [ 478, 626, 527, 641 ], [ 478, 644, 497, 659 ], [ 499, 644, 521, 659 ], [ 478, 662, 498, 677 ], [ 501, 662, 514, 677 ], [ 478, 680, 516, 695 ], [ 519, 680, 528, 695 ], [ 478, 698, 515, 713 ], [ 552, 518, 574, 533 ], [ 576, 518, 586, 533 ], [ 559, 554, 612, 569 ], [ 552, 572, 561, 587 ], [ 564, 572, 583, 587 ], [ 630, 518, 647, 533 ], [ 700, 518, 717, 533 ], [ 769, 518, 785, 533 ], [ 842, 518, 859, 533 ], [ 90, 717, 133, 731 ], [ 177, 717, 233, 731 ], [ 256, 717, 275, 731 ], [ 393, 717, 406, 731 ], [ 478, 717, 511, 731 ], [ 513, 717, 523, 731 ], [ 478, 735, 497, 749 ], [ 552, 717, 574, 731 ], [ 576, 717, 586, 731 ], [ 588, 717, 607, 731 ], [ 630, 717, 647, 731 ], [ 700, 717, 717, 731 ], [ 769, 717, 782, 731 ], [ 842, 717, 859, 731 ], [ 842, 735, 890, 749 ], [ 90, 753, 134, 768 ], [ 177, 753, 210, 768 ], [ 320, 753, 329, 768 ], [ 332, 753, 351, 768 ], [ 393, 753, 408, 768 ], [ 478, 753, 509, 768 ], [ 478, 771, 512, 786 ], [ 514, 771, 520, 786 ], [ 478, 789, 516, 804 ], [ 519, 789, 528, 804 ], [ 478, 807, 515, 822 ], [ 478, 825, 507, 840 ], [ 510, 825, 520, 840 ], [ 478, 843, 494, 858 ], [ 496, 843, 520, 858 ], [ 523, 843, 529, 858 ], [ 478, 861, 527, 876 ], [ 552, 753, 574, 768 ], [ 576, 753, 586, 768 ], [ 559, 789, 612, 804 ], [ 552, 807, 561, 822 ], [ 564, 807, 583, 822 ], [ 630, 753, 647, 768 ], [ 700, 753, 717, 768 ], [ 769, 753, 782, 768 ], [ 842, 753, 859, 768 ], [ 842, 771, 890, 786 ], [ 552, 301, 613, 316 ], [ 552, 536, 613, 551 ], [ 552, 771, 613, 786 ] ]
North Carolina N North Dakota N Ohio Y All Counties Not Applicable Two-Thirds of Sheriff's Appraised Results of Sale Sheriff's Appraised Value Value Oklahoma Y All Counties Not Applicable Two-Thirds of Sheriff's Appraised Results of Sale Sheriff's Appraised Value Value Oregon N Pennsylvania N Puerto Rico Y All Counties Not Applicable Up to 3 sales Original Loan Results of Sale 1st - Original Loan Amount or Net Amount or NV Value (whichever 2nd - 2/3 Original is greater) Loan Amount or NV 3rd - 1/2 Original Loan Amount or NV Rhode Island N South Carolina N South Dakota Y All Counties WebLGY Not Applicable WebLGY Not Applicable Appraised Value Appraised Value Tennessee N Texas N Utah N Vermont Y All Counties Total Not Applicable Total Results of Sale Indebtedness Indebtedness Virgin Islands N Virginia N Washington N
North Carolina N North Dakota N Ohio Y All Counties Not Applicable Two-Thirds of Sheriff's Appraised Value Sheriff's Appraised Value Results of Sale Oklahoma Y All Counties Not Applicable Two-Thirds of Sheriff's Appraised Value Sheriff's Appraised Value Results of Sale Oregon N Pennsylvania N Puerto Rico Y All Counties Not Applicable Up to 3 sales 1st - Original Loan Amount or NV 2nd - 2/3 Original Loan Amount or NV 3rd - 1/2 Original Loan Amount or NV Original Loan Amount or Net Value (whichever is greater) Results of Sale Rhode Island N South Carolina N South Dakota Y All Counties WebLGY Appraised Value Not Applicable WebLGY Appraised Value Not Applicable Tennessee N Texas N Utah N Vermont Y All Counties Total Indebtedness Not Applicable Total Indebtedness Results of Sale Virgin Islands N Virginia N Washington N
0.708738
[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 19, 20, 22, 14, 15, 21, 16, 17, 18, 23, 24, 25, 26, 27, 28, 29, 30, 36, 37, 39, 31, 32, 38, 33, 34, 35, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 60, 61, 62, 63, 67, 68, 69, 72, 73, 74, 75, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 55, 56, 64, 65, 66, 70, 71, 76, 77, 57, 58, 59, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 107, 108, 102, 103, 104, 109, 110, 105, 106, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 128, 122, 123, 124, 129, 125, 126, 127, 130, 131, 132, 133, 134, 135, 136 ]
M26-3%20Appendix%20G%20-%205-2017.docx
task-1431-857
18
[ [ 90, 210, 121, 230 ], [ 125, 210, 170, 230 ], [ 258, 210, 266, 230 ], [ 90, 232, 121, 252 ], [ 125, 232, 164, 252 ], [ 258, 232, 266, 252 ], [ 90, 254, 116, 273 ], [ 258, 254, 265, 273 ], [ 328, 254, 341, 273 ], [ 345, 254, 393, 273 ], [ 447, 254, 466, 273 ], [ 470, 254, 526, 273 ], [ 566, 254, 628, 273 ], [ 632, 254, 643, 273 ], [ 685, 254, 729, 273 ], [ 733, 254, 788, 273 ], [ 803, 254, 843, 273 ], [ 847, 254, 858, 273 ], [ 862, 254, 885, 273 ], [ 566, 273, 610, 293 ], [ 614, 273, 669, 293 ], [ 685, 273, 715, 293 ], [ 566, 293, 596, 313 ], [ 90, 314, 146, 333 ], [ 258, 314, 265, 333 ], [ 328, 314, 341, 333 ], [ 345, 314, 393, 333 ], [ 447, 314, 466, 333 ], [ 470, 314, 526, 333 ], [ 566, 314, 628, 333 ], [ 632, 314, 643, 333 ], [ 685, 314, 729, 333 ], [ 733, 314, 788, 333 ], [ 803, 314, 843, 333 ], [ 847, 314, 858, 333 ], [ 862, 314, 885, 333 ], [ 566, 333, 610, 353 ], [ 614, 333, 669, 353 ], [ 685, 333, 715, 353 ], [ 566, 353, 596, 373 ], [ 90, 374, 131, 393 ], [ 258, 374, 266, 393 ], [ 90, 395, 162, 415 ], [ 258, 395, 266, 415 ], [ 90, 417, 127, 437 ], [ 131, 417, 154, 437 ], [ 258, 417, 265, 437 ], [ 348, 417, 361, 437 ], [ 365, 417, 413, 437 ], [ 460, 417, 479, 437 ], [ 483, 417, 539, 437 ], [ 566, 417, 581, 437 ], [ 585, 417, 596, 437 ], [ 600, 417, 607, 437 ], [ 611, 417, 638, 437 ], [ 700, 417, 743, 437 ], [ 747, 417, 774, 437 ], [ 815, 417, 855, 437 ], [ 859, 417, 870, 437 ], [ 874, 417, 897, 437 ], [ 566, 437, 582, 456 ], [ 586, 437, 591, 456 ], [ 595, 437, 638, 456 ], [ 642, 437, 668, 456 ], [ 696, 437, 739, 456 ], [ 743, 437, 755, 456 ], [ 759, 437, 778, 456 ], [ 566, 456, 609, 476 ], [ 613, 456, 624, 476 ], [ 628, 456, 644, 476 ], [ 689, 456, 720, 476 ], [ 724, 456, 785, 476 ], [ 566, 476, 587, 496 ], [ 590, 476, 595, 496 ], [ 599, 476, 618, 496 ], [ 622, 476, 664, 496 ], [ 708, 476, 717, 496 ], [ 721, 476, 766, 496 ], [ 566, 496, 592, 515 ], [ 596, 496, 640, 515 ], [ 644, 496, 655, 515 ], [ 566, 516, 582, 535 ], [ 566, 535, 584, 555 ], [ 588, 535, 593, 555 ], [ 597, 535, 615, 555 ], [ 619, 535, 662, 555 ], [ 566, 555, 592, 575 ], [ 596, 555, 640, 575 ], [ 644, 555, 655, 575 ], [ 566, 575, 582, 594 ], [ 90, 595, 126, 615 ], [ 130, 595, 163, 615 ], [ 258, 595, 266, 615 ], [ 90, 617, 123, 637 ], [ 126, 617, 171, 637 ], [ 258, 617, 266, 637 ], [ 90, 639, 123, 658 ], [ 126, 639, 166, 658 ], [ 258, 639, 265, 658 ], [ 328, 639, 341, 658 ], [ 345, 639, 393, 658 ], [ 447, 639, 494, 658 ], [ 566, 639, 585, 658 ], [ 589, 639, 645, 658 ], [ 685, 639, 731, 658 ], [ 803, 639, 823, 658 ], [ 827, 639, 883, 658 ], [ 447, 658, 502, 678 ], [ 506, 658, 536, 678 ], [ 685, 658, 739, 678 ], [ 743, 658, 774, 678 ], [ 90, 690, 150, 709 ], [ 258, 690, 266, 709 ], [ 90, 711, 123, 731 ], [ 258, 711, 266, 731 ], [ 90, 733, 116, 753 ], [ 258, 733, 266, 753 ], [ 90, 755, 138, 774 ], [ 258, 755, 265, 774 ], [ 328, 755, 341, 774 ], [ 345, 755, 393, 774 ], [ 447, 755, 475, 774 ], [ 566, 755, 585, 774 ], [ 589, 755, 645, 774 ], [ 685, 755, 712, 774 ], [ 803, 755, 843, 774 ], [ 847, 755, 858, 774 ], [ 862, 755, 885, 774 ], [ 447, 774, 522, 794 ], [ 685, 774, 760, 794 ], [ 90, 797, 122, 817 ], [ 126, 797, 166, 817 ], [ 258, 797, 266, 817 ], [ 90, 819, 132, 839 ], [ 258, 819, 266, 839 ], [ 90, 840, 156, 860 ], [ 258, 840, 266, 860 ] ]
[ [ 90, 210, 121, 230 ], [ 125, 210, 170, 230 ], [ 258, 210, 266, 230 ], [ 90, 232, 121, 252 ], [ 125, 232, 164, 252 ], [ 258, 232, 266, 252 ], [ 90, 254, 116, 273 ], [ 258, 254, 265, 273 ], [ 328, 254, 341, 273 ], [ 345, 254, 393, 273 ], [ 447, 254, 466, 273 ], [ 470, 254, 526, 273 ], [ 566, 254, 628, 273 ], [ 632, 254, 643, 273 ], [ 566, 273, 610, 293 ], [ 614, 273, 669, 293 ], [ 566, 293, 596, 313 ], [ 685, 254, 729, 273 ], [ 733, 254, 788, 273 ], [ 685, 273, 715, 293 ], [ 803, 254, 843, 273 ], [ 847, 254, 858, 273 ], [ 862, 254, 885, 273 ], [ 90, 314, 146, 333 ], [ 258, 314, 265, 333 ], [ 328, 314, 341, 333 ], [ 345, 314, 393, 333 ], [ 447, 314, 466, 333 ], [ 470, 314, 526, 333 ], [ 566, 314, 628, 333 ], [ 632, 314, 643, 333 ], [ 566, 333, 610, 353 ], [ 614, 333, 669, 353 ], [ 566, 353, 596, 373 ], [ 685, 314, 729, 333 ], [ 733, 314, 788, 333 ], [ 685, 333, 715, 353 ], [ 803, 314, 843, 333 ], [ 847, 314, 858, 333 ], [ 862, 314, 885, 333 ], [ 90, 374, 131, 393 ], [ 258, 374, 266, 393 ], [ 90, 395, 162, 415 ], [ 258, 395, 266, 415 ], [ 90, 417, 127, 437 ], [ 131, 417, 154, 437 ], [ 258, 417, 265, 437 ], [ 348, 417, 361, 437 ], [ 365, 417, 413, 437 ], [ 460, 417, 479, 437 ], [ 483, 417, 539, 437 ], [ 566, 417, 581, 437 ], [ 585, 417, 596, 437 ], [ 600, 417, 607, 437 ], [ 611, 417, 638, 437 ], [ 566, 437, 582, 456 ], [ 586, 437, 591, 456 ], [ 595, 437, 638, 456 ], [ 642, 437, 668, 456 ], [ 566, 456, 609, 476 ], [ 613, 456, 624, 476 ], [ 628, 456, 644, 476 ], [ 566, 476, 587, 496 ], [ 590, 476, 595, 496 ], [ 599, 476, 618, 496 ], [ 622, 476, 664, 496 ], [ 566, 496, 592, 515 ], [ 596, 496, 640, 515 ], [ 644, 496, 655, 515 ], [ 566, 516, 582, 535 ], [ 566, 535, 584, 555 ], [ 588, 535, 593, 555 ], [ 597, 535, 615, 555 ], [ 619, 535, 662, 555 ], [ 566, 555, 592, 575 ], [ 596, 555, 640, 575 ], [ 644, 555, 655, 575 ], [ 566, 575, 582, 594 ], [ 700, 417, 743, 437 ], [ 747, 417, 774, 437 ], [ 696, 437, 739, 456 ], [ 743, 437, 755, 456 ], [ 759, 437, 778, 456 ], [ 689, 456, 720, 476 ], [ 724, 456, 785, 476 ], [ 708, 476, 717, 496 ], [ 721, 476, 766, 496 ], [ 815, 417, 855, 437 ], [ 859, 417, 870, 437 ], [ 874, 417, 897, 437 ], [ 90, 595, 126, 615 ], [ 130, 595, 163, 615 ], [ 258, 595, 266, 615 ], [ 90, 617, 123, 637 ], [ 126, 617, 171, 637 ], [ 258, 617, 266, 637 ], [ 90, 639, 123, 658 ], [ 126, 639, 166, 658 ], [ 258, 639, 265, 658 ], [ 328, 639, 341, 658 ], [ 345, 639, 393, 658 ], [ 447, 639, 494, 658 ], [ 447, 658, 502, 678 ], [ 506, 658, 536, 678 ], [ 566, 639, 585, 658 ], [ 589, 639, 645, 658 ], [ 685, 639, 731, 658 ], [ 685, 658, 739, 678 ], [ 743, 658, 774, 678 ], [ 803, 639, 823, 658 ], [ 827, 639, 883, 658 ], [ 90, 690, 150, 709 ], [ 258, 690, 266, 709 ], [ 90, 711, 123, 731 ], [ 258, 711, 266, 731 ], [ 90, 733, 116, 753 ], [ 258, 733, 266, 753 ], [ 90, 755, 138, 774 ], [ 258, 755, 265, 774 ], [ 328, 755, 341, 774 ], [ 345, 755, 393, 774 ], [ 447, 755, 475, 774 ], [ 447, 774, 522, 794 ], [ 566, 755, 585, 774 ], [ 589, 755, 645, 774 ], [ 685, 755, 712, 774 ], [ 685, 774, 760, 794 ], [ 803, 755, 843, 774 ], [ 847, 755, 858, 774 ], [ 862, 755, 885, 774 ], [ 90, 797, 122, 817 ], [ 126, 797, 166, 817 ], [ 258, 797, 266, 817 ], [ 90, 819, 132, 839 ], [ 258, 819, 266, 839 ], [ 90, 840, 156, 860 ], [ 258, 840, 266, 860 ] ]
CONTENTS CHAPTER 14. CLAIMS PARAGRAPH PAGE 14-2 14.01 Claims (38 CFR 36.4324)………………………………...….. 14-2 14.02 Eligibility for Claim Payment…..…..……....……......……... 14.03 Claim 14-3 Payment Calculation…………...………..………........ 14.04 Allowable Claim Items for 14-10 VA Reimbursement...…..…....... 14.05 VA 14-17 Determines Credit to Indebtedness…………….……….. 14.06 VA Calculates Claim 14-18 Payment……..……………......……... 14.07 Other Review Considerations on Claim 14-19 Payment……….….. 14.08 Credits to 14-20 Claim…………………………………………….. 14.09 Servicer Receives Claim 14-20 Payment....…………….……......... 14-21 14.10 Supplemental Claims…………………………………….….. 14.11 Claim Process for Mobile Homes (38 CFR 14-21 36.4824)……….. 14.12 Funds Received By After Claim 14-21 Payment....………..…….....
CONTENTS CHAPTER 14. CLAIMS PARAGRAPH PAGE 14.01 Claims (38 CFR 36.4324)………………………………...….. 14-2 14.02 Eligibility for Claim Payment…..…..……....……......……... 14-2 14.03 Claim Payment Calculation…………...………..………........ 14-3 14.04 Allowable Claim Items for VA Reimbursement...…..…....... 14-10 14.05 VA Determines Credit to Indebtedness…………….……….. 14-17 14.06 VA Calculates Claim Payment……..……………......……... 14-18 14.07 Other Review Considerations on Claim Payment……….….. 14-19 14.08 Credits to Claim…………………………………………….. 14-20 14.09 Servicer Receives Claim Payment....…………….……......... 14-20 14.10 Supplemental Claims…………………………………….….. 14-21 14.11 Claim Process for Mobile Homes (38 CFR 36.4824)……….. 14-21 14.12 Funds Received By After Claim Payment....………..……..... 14-21
0.555345
[ 0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 6, 13, 14, 15, 16, 17, 12, 18, 19, 21, 22, 20, 23, 24, 25, 26, 27, 29, 30, 28, 31, 32, 34, 35, 36, 37, 33, 38, 39, 40, 41, 43, 42, 44, 45, 46, 47, 48, 49, 51, 50, 52, 53, 54, 56, 55, 57, 58, 59, 60, 62, 61, 64, 65, 66, 63, 67, 68, 69, 70, 71, 72, 73, 74, 76, 75, 77, 78, 79, 80, 81, 82, 84, 83 ]
M26-3%20Chapter%2014%20Claims.docx
task-1431-866
0
[ [ 448, 95, 551, 115 ], [ 398, 130, 488, 150 ], [ 492, 130, 517, 150 ], [ 527, 130, 601, 150 ], [ 147, 182, 265, 202 ], [ 725, 182, 776, 202 ], [ 735, 217, 771, 237 ], [ 147, 219, 191, 236 ], [ 201, 219, 256, 236 ], [ 261, 219, 287, 236 ], [ 292, 219, 329, 236 ], [ 334, 219, 684, 236 ], [ 735, 252, 771, 272 ], [ 147, 254, 191, 271 ], [ 201, 254, 280, 271 ], [ 285, 254, 308, 271 ], [ 312, 254, 361, 271 ], [ 365, 254, 674, 271 ], [ 147, 287, 191, 307 ], [ 201, 287, 248, 307 ], [ 735, 287, 771, 307 ], [ 253, 289, 322, 306 ], [ 327, 289, 677, 306 ], [ 147, 321, 191, 342 ], [ 201, 321, 282, 342 ], [ 287, 321, 335, 342 ], [ 340, 321, 383, 342 ], [ 388, 321, 411, 342 ], [ 735, 321, 781, 342 ], [ 416, 324, 444, 341 ], [ 449, 324, 671, 341 ], [ 147, 356, 191, 377 ], [ 201, 356, 229, 377 ], [ 735, 356, 781, 377 ], [ 234, 359, 324, 376 ], [ 329, 359, 378, 376 ], [ 383, 359, 398, 376 ], [ 403, 359, 677, 376 ], [ 147, 391, 191, 411 ], [ 201, 391, 229, 411 ], [ 234, 391, 315, 411 ], [ 320, 391, 368, 411 ], [ 735, 391, 781, 411 ], [ 373, 394, 672, 410 ], [ 147, 426, 191, 446 ], [ 201, 426, 245, 446 ], [ 250, 426, 310, 446 ], [ 315, 426, 432, 446 ], [ 437, 426, 457, 446 ], [ 462, 426, 510, 446 ], [ 735, 426, 781, 446 ], [ 515, 428, 676, 445 ], [ 147, 461, 191, 481 ], [ 201, 461, 257, 481 ], [ 262, 461, 277, 481 ], [ 735, 461, 781, 481 ], [ 282, 463, 673, 480 ], [ 147, 496, 191, 516 ], [ 201, 496, 266, 516 ], [ 271, 496, 341, 516 ], [ 346, 496, 394, 516 ], [ 735, 496, 781, 516 ], [ 399, 498, 674, 515 ], [ 735, 531, 781, 551 ], [ 147, 533, 191, 550 ], [ 201, 533, 308, 550 ], [ 313, 533, 678, 550 ], [ 147, 565, 191, 586 ], [ 201, 565, 248, 586 ], [ 253, 565, 313, 586 ], [ 318, 565, 341, 586 ], [ 346, 565, 403, 586 ], [ 408, 565, 463, 586 ], [ 468, 565, 494, 586 ], [ 499, 565, 536, 586 ], [ 735, 565, 781, 586 ], [ 541, 568, 680, 585 ], [ 147, 600, 191, 621 ], [ 201, 600, 248, 621 ], [ 253, 600, 326, 621 ], [ 331, 600, 354, 621 ], [ 359, 600, 400, 621 ], [ 405, 600, 453, 621 ], [ 735, 600, 781, 621 ], [ 458, 603, 679, 620 ] ]
[ [ 448, 95, 551, 115 ], [ 398, 130, 488, 150 ], [ 492, 130, 517, 150 ], [ 527, 130, 601, 150 ], [ 147, 182, 265, 202 ], [ 725, 182, 776, 202 ], [ 147, 219, 191, 236 ], [ 201, 219, 256, 236 ], [ 261, 219, 287, 236 ], [ 292, 219, 329, 236 ], [ 334, 219, 684, 236 ], [ 735, 217, 771, 237 ], [ 147, 254, 191, 271 ], [ 201, 254, 280, 271 ], [ 285, 254, 308, 271 ], [ 312, 254, 361, 271 ], [ 365, 254, 674, 271 ], [ 735, 252, 771, 272 ], [ 147, 287, 191, 307 ], [ 201, 287, 248, 307 ], [ 253, 289, 322, 306 ], [ 327, 289, 677, 306 ], [ 735, 287, 771, 307 ], [ 147, 321, 191, 342 ], [ 201, 321, 282, 342 ], [ 287, 321, 335, 342 ], [ 340, 321, 383, 342 ], [ 388, 321, 411, 342 ], [ 416, 324, 444, 341 ], [ 449, 324, 671, 341 ], [ 735, 321, 781, 342 ], [ 147, 356, 191, 377 ], [ 201, 356, 229, 377 ], [ 234, 359, 324, 376 ], [ 329, 359, 378, 376 ], [ 383, 359, 398, 376 ], [ 403, 359, 677, 376 ], [ 735, 356, 781, 377 ], [ 147, 391, 191, 411 ], [ 201, 391, 229, 411 ], [ 234, 391, 315, 411 ], [ 320, 391, 368, 411 ], [ 373, 394, 672, 410 ], [ 735, 391, 781, 411 ], [ 147, 426, 191, 446 ], [ 201, 426, 245, 446 ], [ 250, 426, 310, 446 ], [ 315, 426, 432, 446 ], [ 437, 426, 457, 446 ], [ 462, 426, 510, 446 ], [ 515, 428, 676, 445 ], [ 735, 426, 781, 446 ], [ 147, 461, 191, 481 ], [ 201, 461, 257, 481 ], [ 262, 461, 277, 481 ], [ 282, 463, 673, 480 ], [ 735, 461, 781, 481 ], [ 147, 496, 191, 516 ], [ 201, 496, 266, 516 ], [ 271, 496, 341, 516 ], [ 346, 496, 394, 516 ], [ 399, 498, 674, 515 ], [ 735, 496, 781, 516 ], [ 147, 533, 191, 550 ], [ 201, 533, 308, 550 ], [ 313, 533, 678, 550 ], [ 735, 531, 781, 551 ], [ 147, 565, 191, 586 ], [ 201, 565, 248, 586 ], [ 253, 565, 313, 586 ], [ 318, 565, 341, 586 ], [ 346, 565, 403, 586 ], [ 408, 565, 463, 586 ], [ 468, 565, 494, 586 ], [ 499, 565, 536, 586 ], [ 541, 568, 680, 585 ], [ 735, 565, 781, 586 ], [ 147, 600, 191, 621 ], [ 201, 600, 248, 621 ], [ 253, 600, 326, 621 ], [ 331, 600, 354, 621 ], [ 359, 600, 400, 621 ], [ 405, 600, 453, 621 ], [ 458, 603, 679, 620 ], [ 735, 600, 781, 621 ] ]
CONTENTS CHAPTER 12. QUITCLAIM DEEDS PARAGRAPH PAGE 12-2 12.01 Quitclaim Deeds……………………………………………. 12.02 Requesting a Quitclaim 12-2 Deed………………………......…... 12.03 Executing a Quitclaim 12-3 Deed……………………..…….........
CONTENTS CHAPTER 12. QUITCLAIM DEEDS PARAGRAPH PAGE 12.01 Quitclaim Deeds……………………………………………. 12-2 12.02 Requesting a Quitclaim Deed………………………......…... 12-2 12.03 Executing a Quitclaim Deed……………………..……......... 12-3
0.5491
[ 0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 7, 11, 12, 13, 14, 16, 15, 17, 18, 19, 20, 22, 21 ]
M26-3Chapter12QuitclaimDeeds.docx
task-1431-872
0
[ [ 448, 88, 551, 108 ], [ 346, 123, 436, 143 ], [ 441, 123, 465, 143 ], [ 475, 123, 584, 143 ], [ 590, 123, 653, 143 ], [ 147, 175, 265, 195 ], [ 725, 175, 776, 195 ], [ 735, 210, 771, 230 ], [ 147, 213, 191, 229 ], [ 201, 213, 279, 229 ], [ 284, 213, 671, 229 ], [ 147, 245, 191, 265 ], [ 201, 245, 289, 265 ], [ 293, 245, 302, 265 ], [ 307, 245, 386, 265 ], [ 735, 245, 771, 265 ], [ 391, 247, 672, 264 ], [ 147, 280, 191, 300 ], [ 201, 280, 280, 300 ], [ 285, 280, 294, 300 ], [ 298, 280, 377, 300 ], [ 735, 280, 771, 300 ], [ 382, 282, 673, 299 ] ]
[ [ 448, 88, 551, 108 ], [ 346, 123, 436, 143 ], [ 441, 123, 465, 143 ], [ 475, 123, 584, 143 ], [ 590, 123, 653, 143 ], [ 147, 175, 265, 195 ], [ 725, 175, 776, 195 ], [ 147, 213, 191, 229 ], [ 201, 213, 279, 229 ], [ 284, 213, 671, 229 ], [ 735, 210, 771, 230 ], [ 147, 245, 191, 265 ], [ 201, 245, 289, 265 ], [ 293, 245, 302, 265 ], [ 307, 245, 386, 265 ], [ 391, 247, 672, 264 ], [ 735, 245, 771, 265 ], [ 147, 280, 191, 300 ], [ 201, 280, 280, 300 ], [ 285, 280, 294, 300 ], [ 298, 280, 377, 300 ], [ 382, 282, 673, 299 ], [ 735, 280, 771, 300 ] ]
Wisconsin Judicial - Yes Holder Date of 330 510 No Not Owner Convey – Applicable Occupied Transfer of Ratification Custody of Sale Retain or 3rd Party – Confirmed Sale Date with No Transfer of Custody Wisconsin Judicial - Yes Holder Date of 240 510 No Not Tenant Convey – Applicable Occupied Transfer of Ratification Custody of Sale Retain or 3rd Party – Confirmed Sale Date with No Transfer of Custody Wisconsin Non-Judicial Yes Holder Date of 330 510 No Not Convey – Applicable Transfer of Ratification Custody of Sale Retain or 3rd Party – Confirmed Sale Date with No Transfer of Custody
Wisconsin Judicial - Owner Occupied Yes Holder Convey – Transfer of Custody Retain or 3rd Party – Confirmed Sale Date with No Transfer of Custody Date of Ratification of Sale 330 510 No Not Applicable Wisconsin Judicial - Tenant Occupied Yes Holder Convey – Transfer of Custody Retain or 3rd Party – Confirmed Sale Date with No Transfer of Custody Date of Ratification of Sale 240 510 No Not Applicable Wisconsin Non-Judicial Yes Holder Convey – Transfer of Custody Retain or 3rd Party – Confirmed Sale Date with No Transfer of Custody Date of Ratification of Sale 330 510 No Not Applicable
0.563586
[ 0, 1, 2, 11, 15, 3, 4, 12, 13, 16, 17, 19, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 5, 6, 18, 20, 21, 7, 8, 9, 10, 14, 35, 36, 37, 46, 50, 38, 39, 47, 48, 51, 52, 54, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 40, 41, 53, 55, 56, 42, 43, 44, 45, 49, 70, 71, 72, 73, 80, 81, 83, 84, 86, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 74, 75, 85, 87, 88, 76, 77, 78, 79, 82 ]
M26-4%20Appendix%20G%20-%205-%202017.docx
task-1431-877
15
[ [ 90, 265, 137, 280 ], [ 177, 265, 210, 280 ], [ 213, 265, 216, 280 ], [ 393, 265, 408, 280 ], [ 478, 265, 509, 280 ], [ 552, 265, 574, 280 ], [ 576, 265, 586, 280 ], [ 630, 265, 647, 280 ], [ 700, 265, 717, 280 ], [ 769, 265, 782, 280 ], [ 842, 265, 859, 280 ], [ 177, 283, 208, 298 ], [ 478, 283, 512, 298 ], [ 514, 283, 520, 298 ], [ 842, 283, 890, 298 ], [ 177, 301, 220, 316 ], [ 478, 301, 516, 316 ], [ 519, 301, 528, 316 ], [ 559, 301, 612, 316 ], [ 478, 319, 515, 334 ], [ 552, 319, 561, 334 ], [ 564, 319, 583, 334 ], [ 478, 337, 507, 352 ], [ 510, 337, 520, 352 ], [ 478, 355, 494, 370 ], [ 496, 355, 520, 370 ], [ 523, 355, 529, 370 ], [ 478, 373, 527, 388 ], [ 478, 391, 497, 406 ], [ 499, 391, 521, 406 ], [ 478, 409, 498, 424 ], [ 501, 409, 514, 424 ], [ 478, 427, 516, 442 ], [ 519, 427, 528, 442 ], [ 478, 445, 515, 460 ], [ 90, 464, 137, 478 ], [ 177, 464, 210, 478 ], [ 213, 464, 216, 478 ], [ 393, 464, 408, 478 ], [ 478, 464, 509, 478 ], [ 552, 464, 574, 478 ], [ 576, 464, 586, 478 ], [ 630, 464, 647, 478 ], [ 700, 464, 717, 478 ], [ 769, 464, 782, 478 ], [ 842, 464, 859, 478 ], [ 177, 482, 209, 496 ], [ 478, 482, 512, 496 ], [ 514, 482, 520, 496 ], [ 842, 482, 890, 496 ], [ 177, 500, 220, 514 ], [ 478, 500, 516, 514 ], [ 519, 500, 528, 514 ], [ 559, 500, 612, 514 ], [ 478, 518, 515, 532 ], [ 552, 518, 561, 532 ], [ 564, 518, 583, 532 ], [ 478, 535, 507, 550 ], [ 510, 535, 520, 550 ], [ 478, 553, 494, 568 ], [ 496, 553, 520, 568 ], [ 523, 553, 529, 568 ], [ 478, 571, 527, 586 ], [ 478, 589, 497, 604 ], [ 499, 589, 521, 604 ], [ 478, 607, 498, 622 ], [ 501, 607, 514, 622 ], [ 478, 625, 516, 640 ], [ 519, 625, 528, 640 ], [ 478, 643, 515, 658 ], [ 90, 662, 137, 677 ], [ 177, 662, 233, 677 ], [ 393, 662, 408, 677 ], [ 478, 662, 509, 677 ], [ 552, 662, 574, 677 ], [ 576, 662, 586, 677 ], [ 630, 662, 647, 677 ], [ 700, 662, 717, 677 ], [ 769, 662, 782, 677 ], [ 842, 662, 859, 677 ], [ 478, 680, 512, 695 ], [ 514, 680, 520, 695 ], [ 842, 680, 890, 695 ], [ 478, 698, 516, 713 ], [ 519, 698, 528, 713 ], [ 559, 698, 612, 713 ], [ 478, 716, 515, 731 ], [ 552, 716, 561, 731 ], [ 564, 716, 583, 731 ], [ 478, 734, 507, 748 ], [ 510, 734, 520, 748 ], [ 478, 752, 494, 766 ], [ 496, 752, 520, 766 ], [ 523, 752, 529, 766 ], [ 478, 770, 527, 785 ], [ 478, 788, 497, 802 ], [ 499, 788, 521, 802 ], [ 478, 806, 498, 820 ], [ 501, 806, 514, 820 ], [ 478, 824, 516, 838 ], [ 519, 824, 528, 838 ], [ 478, 842, 515, 856 ] ]
[ [ 90, 265, 137, 280 ], [ 177, 265, 210, 280 ], [ 213, 265, 216, 280 ], [ 177, 283, 208, 298 ], [ 177, 301, 220, 316 ], [ 393, 265, 408, 280 ], [ 478, 265, 509, 280 ], [ 478, 283, 512, 298 ], [ 514, 283, 520, 298 ], [ 478, 301, 516, 316 ], [ 519, 301, 528, 316 ], [ 478, 319, 515, 334 ], [ 478, 337, 507, 352 ], [ 510, 337, 520, 352 ], [ 478, 355, 494, 370 ], [ 496, 355, 520, 370 ], [ 523, 355, 529, 370 ], [ 478, 373, 527, 388 ], [ 478, 391, 497, 406 ], [ 499, 391, 521, 406 ], [ 478, 409, 498, 424 ], [ 501, 409, 514, 424 ], [ 478, 427, 516, 442 ], [ 519, 427, 528, 442 ], [ 478, 445, 515, 460 ], [ 552, 265, 574, 280 ], [ 576, 265, 586, 280 ], [ 559, 301, 612, 316 ], [ 552, 319, 561, 334 ], [ 564, 319, 583, 334 ], [ 630, 265, 647, 280 ], [ 700, 265, 717, 280 ], [ 769, 265, 782, 280 ], [ 842, 265, 859, 280 ], [ 842, 283, 890, 298 ], [ 90, 464, 137, 478 ], [ 177, 464, 210, 478 ], [ 213, 464, 216, 478 ], [ 177, 482, 209, 496 ], [ 177, 500, 220, 514 ], [ 393, 464, 408, 478 ], [ 478, 464, 509, 478 ], [ 478, 482, 512, 496 ], [ 514, 482, 520, 496 ], [ 478, 500, 516, 514 ], [ 519, 500, 528, 514 ], [ 478, 518, 515, 532 ], [ 478, 535, 507, 550 ], [ 510, 535, 520, 550 ], [ 478, 553, 494, 568 ], [ 496, 553, 520, 568 ], [ 523, 553, 529, 568 ], [ 478, 571, 527, 586 ], [ 478, 589, 497, 604 ], [ 499, 589, 521, 604 ], [ 478, 607, 498, 622 ], [ 501, 607, 514, 622 ], [ 478, 625, 516, 640 ], [ 519, 625, 528, 640 ], [ 478, 643, 515, 658 ], [ 552, 464, 574, 478 ], [ 576, 464, 586, 478 ], [ 559, 500, 612, 514 ], [ 552, 518, 561, 532 ], [ 564, 518, 583, 532 ], [ 630, 464, 647, 478 ], [ 700, 464, 717, 478 ], [ 769, 464, 782, 478 ], [ 842, 464, 859, 478 ], [ 842, 482, 890, 496 ], [ 90, 662, 137, 677 ], [ 177, 662, 233, 677 ], [ 393, 662, 408, 677 ], [ 478, 662, 509, 677 ], [ 478, 680, 512, 695 ], [ 514, 680, 520, 695 ], [ 478, 698, 516, 713 ], [ 519, 698, 528, 713 ], [ 478, 716, 515, 731 ], [ 478, 734, 507, 748 ], [ 510, 734, 520, 748 ], [ 478, 752, 494, 766 ], [ 496, 752, 520, 766 ], [ 523, 752, 529, 766 ], [ 478, 770, 527, 785 ], [ 478, 788, 497, 802 ], [ 499, 788, 521, 802 ], [ 478, 806, 498, 820 ], [ 501, 806, 514, 820 ], [ 478, 824, 516, 838 ], [ 519, 824, 528, 838 ], [ 478, 842, 515, 856 ], [ 552, 662, 574, 677 ], [ 576, 662, 586, 677 ], [ 559, 698, 612, 713 ], [ 552, 716, 561, 731 ], [ 564, 716, 583, 731 ], [ 630, 662, 647, 677 ], [ 700, 662, 717, 677 ], [ 769, 662, 782, 677 ], [ 842, 662, 859, 677 ], [ 842, 680, 890, 695 ] ]
- ELEMENTS OF General Program of Requirements indicating the square footage and number of all program spaces Project’s LEED registration with GBCI LEED point checklist indicating which points the owner and and design team has selected as “yes”, “possible”, “no” Minutes of the Eco-Charrette Printout of EPA Target Finder Data Sheet Narrative summary explaining how the additional project funding (3 percent) will contribute to the Energy Credits - ELEMENTS OF SCHEMATIC DESIGN General LEED checklist indicating which points the owner and design team have identified and as “yes”, “possible”, “no” Printout of any changes to EPA Target Finder Data Sheet Evidence of the most recent parametric modeling of energy consumption Most recent Monthly Energy Consumption by fuel by end use, from Energy Model Most recent Annual Energy Consumption by fuel by end use, from Energy Model Monthly Peak Demand by fuel by end use, from Energy Model Annual Peak Demand by fuel by end use, from Energy Model Narrative summary explaining how the additional project funding (3 percent) will contributed to the Energy Credits Architectural Singleline drawings showing complete building layout, identifying the various major areas, core areas and their relationships Exterior wall section indicating location of openings, and overall thermal transfer value for each element of the exterior wall/envelope Plan and Section views, indicating the design approach to day lighting Identify roof system, deck, membrane flashing and drainage technique and indicate overall combined heat transfer coefficient value for exterior wall/envelope Show exterior building elevations identifying proposed shell finishes (include all exterior surfaces, doors, and windows) Site plan with building located and overall grading plan with preliminary contours Preliminary site development such as access road paving, walls and outside support buildings, and paved parking lots landscaping, geothermal wellfields, bio-swales, constructed wetlands, composting facilities, natural areas, site utilities (existing and new) should be shown Gross and net area calculations separated to show conformance with Program of Requirements Each space to be annotated with net square footage Building Code type and occupancy information
- ELEMENTS OF General Program of Requirements indicating the square footage and number of all program spaces Project’s LEED registration with GBCI LEED point checklist indicating which points the owner and design team has selected as “yes”, “possible”, and “no” Minutes of the Eco-Charrette Printout of EPA Target Finder Data Sheet Narrative summary explaining how the additional project funding (3 percent) will contribute to the Energy Credits - ELEMENTS OF SCHEMATIC DESIGN General LEED checklist indicating which points the owner and design team have identified as “yes”, “possible”, and “no” Printout of any changes to EPA Target Finder Data Sheet Evidence of the most recent parametric modeling of energy consumption Most recent Monthly Energy Consumption by fuel by end use, from Energy Model Most recent Annual Energy Consumption by fuel by end use, from Energy Model Monthly Peak Demand by fuel by end use, from Energy Model Annual Peak Demand by fuel by end use, from Energy Model Narrative summary explaining how the additional project funding (3 percent) will contributed to the Energy Credits Architectural Singleline drawings showing complete building layout, identifying the various major areas, core areas and their relationships Exterior wall section indicating location of openings, and overall thermal transfer value for each element of the exterior wall/envelope Plan and Section views, indicating the design approach to day lighting Identify roof system, deck, membrane flashing and drainage technique and indicate overall combined heat transfer coefficient value for exterior wall/envelope Show exterior building elevations identifying proposed shell finishes (include all exterior surfaces, doors, and windows) Site plan with building located and overall grading plan with preliminary contours Preliminary site development such as access road paving, walls and outside support buildings, and paved parking lots landscaping, geothermal wellfields, bio-swales, constructed wetlands, composting facilities, natural areas, site utilities (existing and new) should be shown Gross and net area calculations separated to show conformance with Program of Requirements Each space to be annotated with net square footage Building Code type and occupancy information
0.979355
[ 0, 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, 32, 33, 34, 35, 36, 37, 38, 31, 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, 86, 87, 88, 85, 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 ]
M110-05.K12-Minimum_Stage_Submission.docx
task-1431-88
0
[ [ 271, 121, 277, 140 ], [ 282, 121, 380, 140 ], [ 385, 121, 410, 140 ], [ 115, 148, 176, 166 ], [ 154, 171, 210, 187 ], [ 214, 171, 228, 187 ], [ 232, 171, 323, 187 ], [ 327, 171, 392, 187 ], [ 396, 171, 416, 187 ], [ 420, 171, 463, 187 ], [ 467, 171, 516, 187 ], [ 520, 171, 543, 187 ], [ 547, 171, 597, 187 ], [ 602, 171, 615, 187 ], [ 619, 171, 636, 187 ], [ 640, 171, 695, 187 ], [ 699, 171, 742, 187 ], [ 154, 195, 212, 209 ], [ 216, 195, 258, 209 ], [ 262, 195, 336, 209 ], [ 340, 195, 369, 209 ], [ 373, 195, 412, 209 ], [ 154, 215, 196, 232 ], [ 200, 215, 233, 232 ], [ 237, 215, 295, 232 ], [ 300, 215, 365, 232 ], [ 369, 215, 409, 232 ], [ 413, 215, 453, 232 ], [ 457, 215, 477, 232 ], [ 481, 215, 522, 232 ], [ 526, 215, 550, 232 ], [ 858, 215, 881, 232 ], [ 554, 217, 597, 231 ], [ 601, 217, 632, 231 ], [ 636, 217, 658, 231 ], [ 662, 217, 715, 231 ], [ 719, 217, 732, 231 ], [ 737, 217, 777, 231 ], [ 781, 217, 853, 231 ], [ 117, 232, 148, 245 ], [ 154, 251, 207, 268 ], [ 211, 251, 225, 268 ], [ 229, 251, 249, 268 ], [ 253, 251, 345, 268 ], [ 154, 274, 207, 290 ], [ 211, 274, 224, 290 ], [ 228, 274, 259, 290 ], [ 263, 274, 306, 290 ], [ 310, 274, 352, 290 ], [ 357, 274, 388, 290 ], [ 392, 274, 428, 290 ], [ 154, 296, 216, 312 ], [ 220, 296, 281, 312 ], [ 284, 296, 353, 312 ], [ 358, 296, 386, 312 ], [ 390, 296, 410, 312 ], [ 414, 296, 479, 312 ], [ 483, 296, 529, 312 ], [ 533, 296, 584, 312 ], [ 588, 296, 601, 312 ], [ 605, 296, 659, 312 ], [ 663, 296, 688, 312 ], [ 693, 296, 759, 312 ], [ 763, 296, 776, 312 ], [ 780, 296, 800, 312 ], [ 804, 296, 851, 312 ], [ 855, 296, 902, 312 ], [ 293, 333, 299, 352 ], [ 304, 333, 402, 352 ], [ 407, 333, 432, 352 ], [ 437, 333, 544, 352 ], [ 549, 333, 618, 352 ], [ 115, 360, 176, 378 ], [ 154, 382, 196, 399 ], [ 200, 382, 258, 399 ], [ 262, 382, 327, 399 ], [ 332, 382, 371, 399 ], [ 375, 382, 415, 399 ], [ 419, 382, 439, 399 ], [ 444, 382, 484, 399 ], [ 488, 382, 512, 399 ], [ 516, 382, 559, 399 ], [ 563, 382, 595, 399 ], [ 599, 382, 630, 399 ], [ 634, 382, 696, 399 ], [ 839, 382, 862, 399 ], [ 700, 384, 714, 398 ], [ 718, 384, 759, 398 ], [ 763, 384, 835, 398 ], [ 867, 384, 897, 398 ], [ 154, 405, 207, 421 ], [ 211, 405, 224, 421 ], [ 228, 405, 252, 421 ], [ 256, 405, 309, 421 ], [ 313, 405, 325, 421 ], [ 329, 405, 360, 421 ], [ 364, 405, 407, 421 ], [ 411, 405, 454, 421 ], [ 458, 405, 489, 421 ], [ 493, 405, 529, 421 ], [ 154, 427, 215, 443 ], [ 219, 427, 232, 443 ], [ 236, 427, 256, 443 ], [ 261, 427, 292, 443 ], [ 296, 427, 336, 443 ], [ 340, 427, 410, 443 ], [ 415, 427, 476, 443 ], [ 480, 427, 494, 443 ], [ 498, 427, 542, 443 ], [ 547, 427, 631, 443 ], [ 154, 449, 188, 466 ], [ 192, 449, 231, 466 ], [ 236, 449, 292, 466 ], [ 296, 449, 343, 466 ], [ 347, 449, 435, 466 ], [ 439, 449, 456, 466 ], [ 460, 449, 485, 466 ], [ 489, 449, 506, 466 ], [ 510, 449, 533, 466 ], [ 538, 449, 563, 466 ], [ 568, 449, 599, 466 ], [ 603, 449, 651, 466 ], [ 655, 449, 697, 466 ], [ 154, 471, 188, 487 ], [ 192, 471, 231, 487 ], [ 236, 471, 284, 487 ], [ 288, 471, 335, 487 ], [ 339, 471, 427, 487 ], [ 431, 471, 448, 487 ], [ 452, 471, 477, 487 ], [ 481, 471, 498, 487 ], [ 502, 471, 525, 487 ], [ 529, 471, 555, 487 ], [ 559, 471, 591, 487 ], [ 595, 471, 642, 487 ], [ 646, 471, 689, 487 ], [ 154, 493, 210, 510 ], [ 214, 493, 246, 510 ], [ 250, 493, 305, 510 ], [ 310, 493, 326, 510 ], [ 330, 493, 356, 510 ], [ 360, 493, 376, 510 ], [ 380, 493, 404, 510 ], [ 408, 493, 433, 510 ], [ 438, 493, 470, 510 ], [ 474, 493, 521, 510 ], [ 525, 493, 568, 510 ], [ 154, 515, 202, 532 ], [ 206, 515, 238, 532 ], [ 242, 515, 297, 532 ], [ 301, 515, 318, 532 ], [ 322, 515, 347, 532 ], [ 352, 515, 368, 532 ], [ 372, 515, 395, 532 ], [ 400, 515, 425, 532 ], [ 430, 515, 461, 532 ], [ 465, 515, 513, 532 ], [ 517, 515, 559, 532 ], [ 154, 537, 216, 554 ], [ 220, 537, 281, 554 ], [ 284, 537, 353, 554 ], [ 358, 537, 386, 554 ], [ 390, 537, 410, 554 ], [ 414, 537, 479, 554 ], [ 483, 537, 529, 554 ], [ 533, 537, 584, 554 ], [ 588, 537, 601, 554 ], [ 605, 537, 659, 554 ], [ 663, 537, 688, 554 ], [ 693, 537, 767, 554 ], [ 771, 537, 784, 554 ], [ 788, 537, 808, 554 ], [ 812, 537, 859, 554 ], [ 863, 537, 911, 554 ], [ 115, 563, 216, 580 ], [ 154, 585, 220, 602 ], [ 224, 585, 284, 602 ], [ 288, 585, 344, 602 ], [ 348, 585, 407, 602 ], [ 411, 585, 466, 602 ], [ 470, 585, 515, 602 ], [ 519, 585, 591, 602 ], [ 595, 585, 615, 602 ], [ 619, 585, 667, 602 ], [ 671, 585, 709, 602 ], [ 714, 585, 751, 602 ], [ 755, 585, 783, 602 ], [ 787, 585, 821, 602 ], [ 825, 585, 849, 602 ], [ 853, 585, 883, 602 ], [ 117, 600, 201, 616 ], [ 154, 622, 207, 638 ], [ 212, 622, 239, 638 ], [ 244, 622, 290, 638 ], [ 294, 622, 360, 638 ], [ 364, 622, 416, 638 ], [ 420, 622, 434, 638 ], [ 438, 622, 501, 638 ], [ 505, 622, 529, 638 ], [ 533, 622, 578, 638 ], [ 582, 622, 632, 638 ], [ 636, 622, 686, 638 ], [ 690, 622, 725, 638 ], [ 730, 622, 749, 638 ], [ 753, 622, 783, 638 ], [ 787, 622, 838, 638 ], [ 843, 622, 856, 638 ], [ 860, 622, 880, 638 ], [ 117, 636, 168, 653 ], [ 172, 636, 263, 653 ], [ 154, 658, 183, 675 ], [ 187, 658, 211, 675 ], [ 215, 658, 264, 675 ], [ 268, 658, 310, 675 ], [ 314, 658, 380, 675 ], [ 384, 658, 403, 675 ], [ 408, 658, 450, 675 ], [ 454, 658, 515, 675 ], [ 519, 658, 531, 675 ], [ 535, 658, 559, 675 ], [ 563, 658, 614, 675 ], [ 154, 680, 206, 697 ], [ 210, 680, 237, 697 ], [ 241, 680, 290, 697 ], [ 294, 680, 329, 697 ], [ 334, 680, 402, 697 ], [ 406, 680, 459, 697 ], [ 463, 680, 487, 697 ], [ 491, 680, 547, 697 ], [ 551, 680, 615, 697 ], [ 619, 680, 642, 697 ], [ 647, 680, 698, 697 ], [ 703, 680, 748, 697 ], [ 752, 680, 816, 697 ], [ 821, 680, 848, 697 ], [ 852, 680, 902, 697 ], [ 117, 695, 187, 712 ], [ 191, 695, 226, 712 ], [ 230, 695, 249, 712 ], [ 254, 695, 304, 712 ], [ 308, 695, 400, 712 ], [ 154, 717, 191, 734 ], [ 195, 717, 246, 734 ], [ 250, 717, 304, 734 ], [ 309, 717, 375, 734 ], [ 379, 717, 451, 734 ], [ 455, 717, 515, 734 ], [ 519, 717, 549, 734 ], [ 554, 717, 604, 734 ], [ 608, 717, 662, 734 ], [ 666, 717, 683, 734 ], [ 687, 717, 738, 734 ], [ 742, 717, 799, 734 ], [ 803, 717, 844, 734 ], [ 848, 717, 872, 734 ], [ 117, 732, 181, 748 ], [ 154, 754, 179, 770 ], [ 183, 754, 212, 770 ], [ 216, 754, 245, 770 ], [ 249, 754, 303, 770 ], [ 307, 754, 354, 770 ], [ 359, 754, 382, 770 ], [ 386, 754, 432, 770 ], [ 436, 754, 486, 770 ], [ 490, 754, 518, 770 ], [ 522, 754, 551, 770 ], [ 555, 754, 631, 770 ], [ 635, 754, 692, 770 ], [ 196, 773, 273, 790 ], [ 277, 773, 299, 790 ], [ 303, 773, 388, 790 ], [ 392, 773, 422, 790 ], [ 426, 773, 440, 790 ], [ 444, 773, 485, 790 ], [ 490, 773, 519, 790 ], [ 523, 773, 571, 790 ], [ 575, 773, 610, 790 ], [ 614, 773, 637, 790 ], [ 642, 773, 689, 790 ], [ 693, 773, 742, 790 ], [ 746, 773, 811, 790 ], [ 815, 773, 839, 790 ], [ 843, 773, 882, 790 ], [ 147, 788, 196, 805 ], [ 200, 788, 224, 805 ], [ 228, 788, 310, 805 ], [ 314, 788, 388, 805 ], [ 392, 788, 460, 805 ], [ 464, 788, 539, 805 ], [ 543, 788, 618, 805 ], [ 622, 788, 684, 805 ], [ 688, 788, 765, 805 ], [ 769, 788, 829, 805 ], [ 833, 788, 878, 805 ], [ 147, 802, 184, 819 ], [ 188, 802, 211, 819 ], [ 215, 802, 264, 819 ], [ 268, 802, 325, 819 ], [ 329, 802, 353, 819 ], [ 357, 802, 390, 819 ], [ 394, 802, 437, 819 ], [ 441, 802, 457, 819 ], [ 461, 802, 503, 819 ], [ 154, 824, 192, 841 ], [ 196, 824, 220, 841 ], [ 224, 824, 244, 841 ], [ 248, 824, 275, 841 ], [ 279, 824, 357, 841 ], [ 361, 824, 423, 841 ], [ 427, 824, 440, 841 ], [ 444, 824, 479, 841 ], [ 482, 824, 568, 841 ], [ 572, 824, 601, 841 ], [ 605, 824, 661, 841 ], [ 665, 824, 679, 841 ], [ 683, 824, 774, 841 ], [ 196, 844, 228, 861 ], [ 232, 844, 268, 861 ], [ 273, 844, 285, 861 ], [ 290, 844, 305, 861 ], [ 309, 844, 372, 861 ], [ 377, 844, 406, 861 ], [ 410, 844, 430, 861 ], [ 434, 844, 476, 861 ], [ 481, 844, 529, 861 ], [ 154, 866, 211, 883 ], [ 215, 866, 250, 883 ], [ 254, 866, 282, 883 ], [ 286, 866, 309, 883 ], [ 314, 866, 384, 883 ], [ 388, 866, 465, 883 ] ]
[ [ 271, 121, 277, 140 ], [ 282, 121, 380, 140 ], [ 385, 121, 410, 140 ], [ 115, 148, 176, 166 ], [ 154, 171, 210, 187 ], [ 214, 171, 228, 187 ], [ 232, 171, 323, 187 ], [ 327, 171, 392, 187 ], [ 396, 171, 416, 187 ], [ 420, 171, 463, 187 ], [ 467, 171, 516, 187 ], [ 520, 171, 543, 187 ], [ 547, 171, 597, 187 ], [ 602, 171, 615, 187 ], [ 619, 171, 636, 187 ], [ 640, 171, 695, 187 ], [ 699, 171, 742, 187 ], [ 154, 195, 212, 209 ], [ 216, 195, 258, 209 ], [ 262, 195, 336, 209 ], [ 340, 195, 369, 209 ], [ 373, 195, 412, 209 ], [ 154, 215, 196, 232 ], [ 200, 215, 233, 232 ], [ 237, 215, 295, 232 ], [ 300, 215, 365, 232 ], [ 369, 215, 409, 232 ], [ 413, 215, 453, 232 ], [ 457, 215, 477, 232 ], [ 481, 215, 522, 232 ], [ 526, 215, 550, 232 ], [ 554, 217, 597, 231 ], [ 601, 217, 632, 231 ], [ 636, 217, 658, 231 ], [ 662, 217, 715, 231 ], [ 719, 217, 732, 231 ], [ 737, 217, 777, 231 ], [ 781, 217, 853, 231 ], [ 858, 215, 881, 232 ], [ 117, 232, 148, 245 ], [ 154, 251, 207, 268 ], [ 211, 251, 225, 268 ], [ 229, 251, 249, 268 ], [ 253, 251, 345, 268 ], [ 154, 274, 207, 290 ], [ 211, 274, 224, 290 ], [ 228, 274, 259, 290 ], [ 263, 274, 306, 290 ], [ 310, 274, 352, 290 ], [ 357, 274, 388, 290 ], [ 392, 274, 428, 290 ], [ 154, 296, 216, 312 ], [ 220, 296, 281, 312 ], [ 284, 296, 353, 312 ], [ 358, 296, 386, 312 ], [ 390, 296, 410, 312 ], [ 414, 296, 479, 312 ], [ 483, 296, 529, 312 ], [ 533, 296, 584, 312 ], [ 588, 296, 601, 312 ], [ 605, 296, 659, 312 ], [ 663, 296, 688, 312 ], [ 693, 296, 759, 312 ], [ 763, 296, 776, 312 ], [ 780, 296, 800, 312 ], [ 804, 296, 851, 312 ], [ 855, 296, 902, 312 ], [ 293, 333, 299, 352 ], [ 304, 333, 402, 352 ], [ 407, 333, 432, 352 ], [ 437, 333, 544, 352 ], [ 549, 333, 618, 352 ], [ 115, 360, 176, 378 ], [ 154, 382, 196, 399 ], [ 200, 382, 258, 399 ], [ 262, 382, 327, 399 ], [ 332, 382, 371, 399 ], [ 375, 382, 415, 399 ], [ 419, 382, 439, 399 ], [ 444, 382, 484, 399 ], [ 488, 382, 512, 399 ], [ 516, 382, 559, 399 ], [ 563, 382, 595, 399 ], [ 599, 382, 630, 399 ], [ 634, 382, 696, 399 ], [ 700, 384, 714, 398 ], [ 718, 384, 759, 398 ], [ 763, 384, 835, 398 ], [ 839, 382, 862, 399 ], [ 867, 384, 897, 398 ], [ 154, 405, 207, 421 ], [ 211, 405, 224, 421 ], [ 228, 405, 252, 421 ], [ 256, 405, 309, 421 ], [ 313, 405, 325, 421 ], [ 329, 405, 360, 421 ], [ 364, 405, 407, 421 ], [ 411, 405, 454, 421 ], [ 458, 405, 489, 421 ], [ 493, 405, 529, 421 ], [ 154, 427, 215, 443 ], [ 219, 427, 232, 443 ], [ 236, 427, 256, 443 ], [ 261, 427, 292, 443 ], [ 296, 427, 336, 443 ], [ 340, 427, 410, 443 ], [ 415, 427, 476, 443 ], [ 480, 427, 494, 443 ], [ 498, 427, 542, 443 ], [ 547, 427, 631, 443 ], [ 154, 449, 188, 466 ], [ 192, 449, 231, 466 ], [ 236, 449, 292, 466 ], [ 296, 449, 343, 466 ], [ 347, 449, 435, 466 ], [ 439, 449, 456, 466 ], [ 460, 449, 485, 466 ], [ 489, 449, 506, 466 ], [ 510, 449, 533, 466 ], [ 538, 449, 563, 466 ], [ 568, 449, 599, 466 ], [ 603, 449, 651, 466 ], [ 655, 449, 697, 466 ], [ 154, 471, 188, 487 ], [ 192, 471, 231, 487 ], [ 236, 471, 284, 487 ], [ 288, 471, 335, 487 ], [ 339, 471, 427, 487 ], [ 431, 471, 448, 487 ], [ 452, 471, 477, 487 ], [ 481, 471, 498, 487 ], [ 502, 471, 525, 487 ], [ 529, 471, 555, 487 ], [ 559, 471, 591, 487 ], [ 595, 471, 642, 487 ], [ 646, 471, 689, 487 ], [ 154, 493, 210, 510 ], [ 214, 493, 246, 510 ], [ 250, 493, 305, 510 ], [ 310, 493, 326, 510 ], [ 330, 493, 356, 510 ], [ 360, 493, 376, 510 ], [ 380, 493, 404, 510 ], [ 408, 493, 433, 510 ], [ 438, 493, 470, 510 ], [ 474, 493, 521, 510 ], [ 525, 493, 568, 510 ], [ 154, 515, 202, 532 ], [ 206, 515, 238, 532 ], [ 242, 515, 297, 532 ], [ 301, 515, 318, 532 ], [ 322, 515, 347, 532 ], [ 352, 515, 368, 532 ], [ 372, 515, 395, 532 ], [ 400, 515, 425, 532 ], [ 430, 515, 461, 532 ], [ 465, 515, 513, 532 ], [ 517, 515, 559, 532 ], [ 154, 537, 216, 554 ], [ 220, 537, 281, 554 ], [ 284, 537, 353, 554 ], [ 358, 537, 386, 554 ], [ 390, 537, 410, 554 ], [ 414, 537, 479, 554 ], [ 483, 537, 529, 554 ], [ 533, 537, 584, 554 ], [ 588, 537, 601, 554 ], [ 605, 537, 659, 554 ], [ 663, 537, 688, 554 ], [ 693, 537, 767, 554 ], [ 771, 537, 784, 554 ], [ 788, 537, 808, 554 ], [ 812, 537, 859, 554 ], [ 863, 537, 911, 554 ], [ 115, 563, 216, 580 ], [ 154, 585, 220, 602 ], [ 224, 585, 284, 602 ], [ 288, 585, 344, 602 ], [ 348, 585, 407, 602 ], [ 411, 585, 466, 602 ], [ 470, 585, 515, 602 ], [ 519, 585, 591, 602 ], [ 595, 585, 615, 602 ], [ 619, 585, 667, 602 ], [ 671, 585, 709, 602 ], [ 714, 585, 751, 602 ], [ 755, 585, 783, 602 ], [ 787, 585, 821, 602 ], [ 825, 585, 849, 602 ], [ 853, 585, 883, 602 ], [ 117, 600, 201, 616 ], [ 154, 622, 207, 638 ], [ 212, 622, 239, 638 ], [ 244, 622, 290, 638 ], [ 294, 622, 360, 638 ], [ 364, 622, 416, 638 ], [ 420, 622, 434, 638 ], [ 438, 622, 501, 638 ], [ 505, 622, 529, 638 ], [ 533, 622, 578, 638 ], [ 582, 622, 632, 638 ], [ 636, 622, 686, 638 ], [ 690, 622, 725, 638 ], [ 730, 622, 749, 638 ], [ 753, 622, 783, 638 ], [ 787, 622, 838, 638 ], [ 843, 622, 856, 638 ], [ 860, 622, 880, 638 ], [ 117, 636, 168, 653 ], [ 172, 636, 263, 653 ], [ 154, 658, 183, 675 ], [ 187, 658, 211, 675 ], [ 215, 658, 264, 675 ], [ 268, 658, 310, 675 ], [ 314, 658, 380, 675 ], [ 384, 658, 403, 675 ], [ 408, 658, 450, 675 ], [ 454, 658, 515, 675 ], [ 519, 658, 531, 675 ], [ 535, 658, 559, 675 ], [ 563, 658, 614, 675 ], [ 154, 680, 206, 697 ], [ 210, 680, 237, 697 ], [ 241, 680, 290, 697 ], [ 294, 680, 329, 697 ], [ 334, 680, 402, 697 ], [ 406, 680, 459, 697 ], [ 463, 680, 487, 697 ], [ 491, 680, 547, 697 ], [ 551, 680, 615, 697 ], [ 619, 680, 642, 697 ], [ 647, 680, 698, 697 ], [ 703, 680, 748, 697 ], [ 752, 680, 816, 697 ], [ 821, 680, 848, 697 ], [ 852, 680, 902, 697 ], [ 117, 695, 187, 712 ], [ 191, 695, 226, 712 ], [ 230, 695, 249, 712 ], [ 254, 695, 304, 712 ], [ 308, 695, 400, 712 ], [ 154, 717, 191, 734 ], [ 195, 717, 246, 734 ], [ 250, 717, 304, 734 ], [ 309, 717, 375, 734 ], [ 379, 717, 451, 734 ], [ 455, 717, 515, 734 ], [ 519, 717, 549, 734 ], [ 554, 717, 604, 734 ], [ 608, 717, 662, 734 ], [ 666, 717, 683, 734 ], [ 687, 717, 738, 734 ], [ 742, 717, 799, 734 ], [ 803, 717, 844, 734 ], [ 848, 717, 872, 734 ], [ 117, 732, 181, 748 ], [ 154, 754, 179, 770 ], [ 183, 754, 212, 770 ], [ 216, 754, 245, 770 ], [ 249, 754, 303, 770 ], [ 307, 754, 354, 770 ], [ 359, 754, 382, 770 ], [ 386, 754, 432, 770 ], [ 436, 754, 486, 770 ], [ 490, 754, 518, 770 ], [ 522, 754, 551, 770 ], [ 555, 754, 631, 770 ], [ 635, 754, 692, 770 ], [ 196, 773, 273, 790 ], [ 277, 773, 299, 790 ], [ 303, 773, 388, 790 ], [ 392, 773, 422, 790 ], [ 426, 773, 440, 790 ], [ 444, 773, 485, 790 ], [ 490, 773, 519, 790 ], [ 523, 773, 571, 790 ], [ 575, 773, 610, 790 ], [ 614, 773, 637, 790 ], [ 642, 773, 689, 790 ], [ 693, 773, 742, 790 ], [ 746, 773, 811, 790 ], [ 815, 773, 839, 790 ], [ 843, 773, 882, 790 ], [ 147, 788, 196, 805 ], [ 200, 788, 224, 805 ], [ 228, 788, 310, 805 ], [ 314, 788, 388, 805 ], [ 392, 788, 460, 805 ], [ 464, 788, 539, 805 ], [ 543, 788, 618, 805 ], [ 622, 788, 684, 805 ], [ 688, 788, 765, 805 ], [ 769, 788, 829, 805 ], [ 833, 788, 878, 805 ], [ 147, 802, 184, 819 ], [ 188, 802, 211, 819 ], [ 215, 802, 264, 819 ], [ 268, 802, 325, 819 ], [ 329, 802, 353, 819 ], [ 357, 802, 390, 819 ], [ 394, 802, 437, 819 ], [ 441, 802, 457, 819 ], [ 461, 802, 503, 819 ], [ 154, 824, 192, 841 ], [ 196, 824, 220, 841 ], [ 224, 824, 244, 841 ], [ 248, 824, 275, 841 ], [ 279, 824, 357, 841 ], [ 361, 824, 423, 841 ], [ 427, 824, 440, 841 ], [ 444, 824, 479, 841 ], [ 482, 824, 568, 841 ], [ 572, 824, 601, 841 ], [ 605, 824, 661, 841 ], [ 665, 824, 679, 841 ], [ 683, 824, 774, 841 ], [ 196, 844, 228, 861 ], [ 232, 844, 268, 861 ], [ 273, 844, 285, 861 ], [ 290, 844, 305, 861 ], [ 309, 844, 372, 861 ], [ 377, 844, 406, 861 ], [ 410, 844, 430, 861 ], [ 434, 844, 476, 861 ], [ 481, 844, 529, 861 ], [ 154, 866, 211, 883 ], [ 215, 866, 250, 883 ], [ 254, 866, 282, 883 ], [ 286, 866, 309, 883 ], [ 314, 866, 384, 883 ], [ 388, 866, 465, 883 ] ]
b. In addition, original title documentation must be forwarded to the VA-assigned technician by the settlement date provided in approval letter. The following is considered acceptable VA’s title documentation: 1. Original mortgage or DOT, or a copy certified by a local authority, with all assignments and any subordination agreements. 2. Original mortgage note from origination endorsed to the Secretary of Veterans Affairs. 3. Original title insurance policy, naming the Secretary of Veterans Affairs as a mortgagee’s co-insured, and an updated policy or endorsement naming the Secretary as insured as of the date of the recorded assignment. 4. Recorded assignment of mortgage to the Secretary of Veterans Affairs. c. Upon receipt of all title documentation, VA will submit the documents to the appropriate Loan Guaranty National Practice Group (NPG) for review. VA does not certify claim payment until the title has been approved by the NPG. If the title is not acceptable, VA may reassign the loan back to the servicer and deny refunding of the loan.
b. In addition, original title documentation must be forwarded to the VA-assigned technician by the settlement date provided in VA’s approval letter. The following is considered acceptable title documentation: 1. Original mortgage or DOT, or a copy certified by a local authority, with all assignments and any subordination agreements. 2. Original mortgage note from origination endorsed to the Secretary of Veterans Affairs. 3. Original mortgagee’s title insurance policy, naming the Secretary of Veterans Affairs as a co-insured, and an updated policy or endorsement naming the Secretary as insured as of the date of the recorded assignment. 4. Recorded assignment of mortgage to the Secretary of Veterans Affairs. c. Upon receipt of all title documentation, VA will submit the documents to the appropriate Loan Guaranty National Practice Group (NPG) for review. VA does not certify claim payment until the title has been approved by the NPG. If the title is not acceptable, VA may reassign the loan back to the servicer and deny refunding of the loan.
0.953668
[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 26, 19, 20, 21, 22, 23, 24, 25, 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, 75, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 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 ]
M26-4%20Chapter%209%20Refunds%20-%20November%202016.docx
task-1431-894
3
[ [ 132, 88, 147, 108 ], [ 157, 88, 172, 108 ], [ 178, 88, 247, 108 ], [ 252, 88, 312, 108 ], [ 318, 88, 348, 108 ], [ 353, 88, 470, 108 ], [ 474, 88, 513, 108 ], [ 517, 88, 536, 108 ], [ 541, 88, 621, 108 ], [ 626, 88, 641, 108 ], [ 646, 88, 670, 108 ], [ 675, 88, 777, 108 ], [ 782, 88, 863, 108 ], [ 117, 106, 137, 126 ], [ 142, 106, 165, 126 ], [ 170, 106, 251, 126 ], [ 256, 106, 289, 126 ], [ 293, 106, 363, 126 ], [ 368, 106, 384, 126 ], [ 436, 106, 504, 126 ], [ 509, 106, 554, 126 ], [ 564, 106, 595, 126 ], [ 600, 106, 676, 126 ], [ 681, 106, 694, 126 ], [ 699, 106, 784, 126 ], [ 789, 106, 871, 126 ], [ 388, 108, 431, 125 ], [ 117, 123, 148, 143 ], [ 153, 123, 275, 143 ], [ 132, 158, 147, 178 ], [ 156, 158, 222, 178 ], [ 227, 158, 301, 178 ], [ 305, 158, 322, 178 ], [ 327, 158, 372, 178 ], [ 377, 158, 393, 178 ], [ 398, 158, 407, 178 ], [ 412, 158, 450, 178 ], [ 455, 158, 520, 178 ], [ 525, 158, 545, 178 ], [ 549, 158, 558, 178 ], [ 563, 158, 601, 178 ], [ 606, 158, 682, 178 ], [ 687, 158, 722, 178 ], [ 727, 158, 746, 178 ], [ 751, 158, 847, 178 ], [ 852, 158, 880, 178 ], [ 117, 175, 146, 195 ], [ 150, 175, 258, 195 ], [ 263, 175, 357, 195 ], [ 132, 210, 147, 230 ], [ 156, 210, 222, 230 ], [ 227, 210, 301, 230 ], [ 305, 210, 339, 230 ], [ 344, 210, 382, 230 ], [ 387, 210, 473, 230 ], [ 478, 210, 549, 230 ], [ 554, 210, 569, 230 ], [ 574, 210, 598, 230 ], [ 603, 210, 677, 230 ], [ 682, 210, 698, 230 ], [ 703, 210, 773, 230 ], [ 778, 210, 838, 230 ], [ 132, 245, 147, 265 ], [ 156, 245, 222, 265 ], [ 329, 245, 359, 265 ], [ 364, 245, 439, 265 ], [ 444, 245, 498, 265 ], [ 503, 245, 562, 265 ], [ 566, 245, 590, 265 ], [ 595, 245, 670, 265 ], [ 674, 245, 691, 265 ], [ 695, 245, 765, 265 ], [ 770, 245, 826, 265 ], [ 831, 245, 847, 265 ], [ 852, 245, 861, 265 ], [ 227, 247, 324, 264 ], [ 117, 262, 205, 283 ], [ 210, 262, 238, 283 ], [ 243, 262, 261, 283 ], [ 266, 262, 328, 283 ], [ 333, 262, 382, 283 ], [ 387, 262, 404, 283 ], [ 408, 262, 509, 283 ], [ 514, 262, 573, 283 ], [ 577, 262, 601, 283 ], [ 606, 262, 681, 283 ], [ 685, 262, 701, 283 ], [ 706, 262, 764, 283 ], [ 769, 262, 785, 283 ], [ 790, 262, 807, 283 ], [ 811, 262, 835, 283 ], [ 840, 262, 873, 283 ], [ 117, 280, 134, 300 ], [ 138, 280, 162, 300 ], [ 167, 280, 236, 300 ], [ 241, 280, 334, 300 ], [ 132, 315, 147, 335 ], [ 156, 315, 231, 335 ], [ 236, 315, 325, 335 ], [ 330, 315, 346, 335 ], [ 351, 315, 425, 335 ], [ 430, 315, 445, 335 ], [ 450, 315, 474, 335 ], [ 479, 315, 553, 335 ], [ 557, 315, 574, 335 ], [ 579, 315, 648, 335 ], [ 653, 315, 714, 335 ], [ 132, 350, 145, 370 ], [ 155, 350, 199, 370 ], [ 204, 350, 257, 370 ], [ 262, 350, 278, 370 ], [ 283, 350, 303, 370 ], [ 308, 350, 338, 370 ], [ 343, 350, 465, 370 ], [ 470, 350, 498, 370 ], [ 503, 350, 533, 370 ], [ 538, 350, 592, 370 ], [ 597, 350, 621, 370 ], [ 626, 350, 710, 370 ], [ 715, 350, 731, 370 ], [ 735, 350, 759, 370 ], [ 764, 350, 853, 370 ], [ 117, 367, 157, 387 ], [ 162, 367, 236, 387 ], [ 240, 367, 307, 387 ], [ 313, 367, 376, 387 ], [ 380, 367, 431, 387 ], [ 436, 367, 488, 387 ], [ 493, 367, 516, 387 ], [ 521, 367, 579, 387 ], [ 589, 367, 617, 387 ], [ 622, 367, 658, 387 ], [ 663, 367, 688, 387 ], [ 693, 367, 744, 387 ], [ 749, 367, 792, 387 ], [ 797, 367, 865, 387 ], [ 117, 384, 153, 405 ], [ 158, 384, 182, 405 ], [ 187, 384, 218, 405 ], [ 222, 384, 249, 405 ], [ 253, 384, 290, 405 ], [ 295, 384, 368, 405 ], [ 373, 384, 393, 405 ], [ 398, 384, 422, 405 ], [ 426, 384, 471, 405 ], [ 481, 384, 493, 405 ], [ 498, 384, 522, 405 ], [ 527, 384, 558, 405 ], [ 563, 384, 576, 405 ], [ 581, 384, 606, 405 ], [ 611, 384, 698, 405 ], [ 703, 384, 731, 405 ], [ 736, 384, 770, 405 ], [ 775, 384, 839, 405 ], [ 844, 384, 868, 405 ], [ 117, 402, 151, 422 ], [ 156, 402, 193, 422 ], [ 198, 402, 213, 422 ], [ 218, 402, 242, 422 ], [ 247, 402, 309, 422 ], [ 314, 402, 342, 422 ], [ 347, 402, 385, 422 ], [ 390, 402, 466, 422 ], [ 471, 402, 487, 422 ], [ 492, 402, 516, 422 ], [ 521, 402, 560, 422 ] ]
[ [ 132, 88, 147, 108 ], [ 157, 88, 172, 108 ], [ 178, 88, 247, 108 ], [ 252, 88, 312, 108 ], [ 318, 88, 348, 108 ], [ 353, 88, 470, 108 ], [ 474, 88, 513, 108 ], [ 517, 88, 536, 108 ], [ 541, 88, 621, 108 ], [ 626, 88, 641, 108 ], [ 646, 88, 670, 108 ], [ 675, 88, 777, 108 ], [ 782, 88, 863, 108 ], [ 117, 106, 137, 126 ], [ 142, 106, 165, 126 ], [ 170, 106, 251, 126 ], [ 256, 106, 289, 126 ], [ 293, 106, 363, 126 ], [ 368, 106, 384, 126 ], [ 388, 108, 431, 125 ], [ 436, 106, 504, 126 ], [ 509, 106, 554, 126 ], [ 564, 106, 595, 126 ], [ 600, 106, 676, 126 ], [ 681, 106, 694, 126 ], [ 699, 106, 784, 126 ], [ 789, 106, 871, 126 ], [ 117, 123, 148, 143 ], [ 153, 123, 275, 143 ], [ 132, 158, 147, 178 ], [ 156, 158, 222, 178 ], [ 227, 158, 301, 178 ], [ 305, 158, 322, 178 ], [ 327, 158, 372, 178 ], [ 377, 158, 393, 178 ], [ 398, 158, 407, 178 ], [ 412, 158, 450, 178 ], [ 455, 158, 520, 178 ], [ 525, 158, 545, 178 ], [ 549, 158, 558, 178 ], [ 563, 158, 601, 178 ], [ 606, 158, 682, 178 ], [ 687, 158, 722, 178 ], [ 727, 158, 746, 178 ], [ 751, 158, 847, 178 ], [ 852, 158, 880, 178 ], [ 117, 175, 146, 195 ], [ 150, 175, 258, 195 ], [ 263, 175, 357, 195 ], [ 132, 210, 147, 230 ], [ 156, 210, 222, 230 ], [ 227, 210, 301, 230 ], [ 305, 210, 339, 230 ], [ 344, 210, 382, 230 ], [ 387, 210, 473, 230 ], [ 478, 210, 549, 230 ], [ 554, 210, 569, 230 ], [ 574, 210, 598, 230 ], [ 603, 210, 677, 230 ], [ 682, 210, 698, 230 ], [ 703, 210, 773, 230 ], [ 778, 210, 838, 230 ], [ 132, 245, 147, 265 ], [ 156, 245, 222, 265 ], [ 227, 247, 324, 264 ], [ 329, 245, 359, 265 ], [ 364, 245, 439, 265 ], [ 444, 245, 498, 265 ], [ 503, 245, 562, 265 ], [ 566, 245, 590, 265 ], [ 595, 245, 670, 265 ], [ 674, 245, 691, 265 ], [ 695, 245, 765, 265 ], [ 770, 245, 826, 265 ], [ 831, 245, 847, 265 ], [ 852, 245, 861, 265 ], [ 117, 262, 205, 283 ], [ 210, 262, 238, 283 ], [ 243, 262, 261, 283 ], [ 266, 262, 328, 283 ], [ 333, 262, 382, 283 ], [ 387, 262, 404, 283 ], [ 408, 262, 509, 283 ], [ 514, 262, 573, 283 ], [ 577, 262, 601, 283 ], [ 606, 262, 681, 283 ], [ 685, 262, 701, 283 ], [ 706, 262, 764, 283 ], [ 769, 262, 785, 283 ], [ 790, 262, 807, 283 ], [ 811, 262, 835, 283 ], [ 840, 262, 873, 283 ], [ 117, 280, 134, 300 ], [ 138, 280, 162, 300 ], [ 167, 280, 236, 300 ], [ 241, 280, 334, 300 ], [ 132, 315, 147, 335 ], [ 156, 315, 231, 335 ], [ 236, 315, 325, 335 ], [ 330, 315, 346, 335 ], [ 351, 315, 425, 335 ], [ 430, 315, 445, 335 ], [ 450, 315, 474, 335 ], [ 479, 315, 553, 335 ], [ 557, 315, 574, 335 ], [ 579, 315, 648, 335 ], [ 653, 315, 714, 335 ], [ 132, 350, 145, 370 ], [ 155, 350, 199, 370 ], [ 204, 350, 257, 370 ], [ 262, 350, 278, 370 ], [ 283, 350, 303, 370 ], [ 308, 350, 338, 370 ], [ 343, 350, 465, 370 ], [ 470, 350, 498, 370 ], [ 503, 350, 533, 370 ], [ 538, 350, 592, 370 ], [ 597, 350, 621, 370 ], [ 626, 350, 710, 370 ], [ 715, 350, 731, 370 ], [ 735, 350, 759, 370 ], [ 764, 350, 853, 370 ], [ 117, 367, 157, 387 ], [ 162, 367, 236, 387 ], [ 240, 367, 307, 387 ], [ 313, 367, 376, 387 ], [ 380, 367, 431, 387 ], [ 436, 367, 488, 387 ], [ 493, 367, 516, 387 ], [ 521, 367, 579, 387 ], [ 589, 367, 617, 387 ], [ 622, 367, 658, 387 ], [ 663, 367, 688, 387 ], [ 693, 367, 744, 387 ], [ 749, 367, 792, 387 ], [ 797, 367, 865, 387 ], [ 117, 384, 153, 405 ], [ 158, 384, 182, 405 ], [ 187, 384, 218, 405 ], [ 222, 384, 249, 405 ], [ 253, 384, 290, 405 ], [ 295, 384, 368, 405 ], [ 373, 384, 393, 405 ], [ 398, 384, 422, 405 ], [ 426, 384, 471, 405 ], [ 481, 384, 493, 405 ], [ 498, 384, 522, 405 ], [ 527, 384, 558, 405 ], [ 563, 384, 576, 405 ], [ 581, 384, 606, 405 ], [ 611, 384, 698, 405 ], [ 703, 384, 731, 405 ], [ 736, 384, 770, 405 ], [ 775, 384, 839, 405 ], [ 844, 384, 868, 405 ], [ 117, 402, 151, 422 ], [ 156, 402, 193, 422 ], [ 198, 402, 213, 422 ], [ 218, 402, 242, 422 ], [ 247, 402, 309, 422 ], [ 314, 402, 342, 422 ], [ 347, 402, 385, 422 ], [ 390, 402, 466, 422 ], [ 471, 402, 487, 422 ], [ 492, 402, 516, 422 ], [ 521, 402, 560, 422 ] ]
People with disabilities are individuals, no matter how they acquired their disability, what sort of disability they have or how severe their disability is. People with disabilities have the right to be respected and treated with dignity. People with disabilities have the same human rights and responsibilities as any member of the Australian community. People with disabilities have the same rights as any member of the Australian community to realise their potential for intellectual, physical, social, emotional, sexual and spiritual development. People with disabilities have the same rights as any member of the Australian community to make their own decisions about their lifestyle. People with disabilities have a right to be protected from neglect, abuse, intimidation and exploitation. People with disabilities have the same rights as any member of the Australian community to access the assistance and support that will enable them to exercise their rights, discharge their responsibilities and attain a reasonable quality of life. The Disability Discrimination Act (1992) Guide Dogs SA/NT recognises the definition of “disability” provided in the Disability Discrimination Act 1992. People who have a disability might have: total or partial loss of the person’s bodily or mental functions total or partial loss of a part of the body the presence in the body of organisms causing disease or illness the presence in the body of organisms capable of causing disease or illness the malfunction, malformation or disfigurement of a part of the person’s body a disorder or malfunction that results in the person learning differently from a person without the disorder or malfunction a disorder, illness or disease that affects a person’s thought processes, perception of reality, emotions or judgment or that results in disturbed behaviour. It includes a disability that: presently exists previously existed but no longer exists may exist in the future is imputed to a person. Guide Dogs SA/NT will conduct its business in a way that: Promotes an increased awareness of the rights, needs, and contribution by people with disabilities as valued members of the community. Supports access and equity for all South Australians with disabilities and prevents discrimination on the basis of age, gender, sexuality, race, ethnicity, religion, language and culture.
People with disabilities are individuals, no matter how they acquired their disability, what sort of disability they have or how severe their disability is. People with disabilities have the right to be respected and treated with dignity. People with disabilities have the same human rights and responsibilities as any member of the Australian community. People with disabilities have the same rights as any member of the Australian community to realise their potential for intellectual, physical, social, emotional, sexual and spiritual development. People with disabilities have the same rights as any member of the Australian community to make their own decisions about their lifestyle. People with disabilities have a right to be protected from neglect, abuse, intimidation and exploitation. People with disabilities have the same rights as any member of the Australian community to access the assistance and support that will enable them to exercise their rights, discharge their responsibilities and attain a reasonable quality of life. The Disability Discrimination Act (1992) Guide Dogs SA/NT recognises the definition of “disability” provided in the Disability Discrimination Act 1992. People who have a disability might have: total or partial loss of the person’s bodily or mental functions total or partial loss of a part of the body the presence in the body of organisms causing disease or illness the presence in the body of organisms capable of causing disease or illness the malfunction, malformation or disfigurement of a part of the person’s body a disorder or malfunction that results in the person learning differently from a person without the disorder or malfunction a disorder, illness or disease that affects a person’s thought processes, perception of reality, emotions or judgment or that results in disturbed behaviour. It includes a disability that: presently exists previously existed but no longer exists may exist in the future is imputed to a person. Guide Dogs SA/NT will conduct its business in a way that: Promotes an increased awareness of the rights, needs, and contribution by people with disabilities as valued members of the community. Supports access and equity for all South Australians with disabilities and prevents discrimination on the basis of age, gender, sexuality, race, ethnicity, religion, language and culture.
1
[ 0, 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 ]
M366%20Disability%20Action%20%26%20%20Inclusion%20Plan%202015-2017%20v2.0.docx
task-1432-230
3
[ [ 145, 83, 206, 100 ], [ 214, 83, 252, 100 ], [ 260, 83, 356, 100 ], [ 364, 83, 394, 100 ], [ 402, 83, 505, 100 ], [ 512, 83, 535, 100 ], [ 542, 83, 604, 100 ], [ 611, 83, 649, 100 ], [ 657, 83, 697, 100 ], [ 705, 83, 784, 100 ], [ 791, 83, 833, 100 ], [ 841, 83, 928, 100 ], [ 143, 100, 188, 117 ], [ 194, 100, 229, 117 ], [ 235, 100, 252, 117 ], [ 258, 100, 340, 117 ], [ 345, 100, 386, 117 ], [ 391, 100, 436, 117 ], [ 442, 100, 460, 117 ], [ 466, 100, 504, 117 ], [ 510, 100, 570, 117 ], [ 576, 100, 618, 117 ], [ 624, 100, 706, 117 ], [ 712, 100, 732, 117 ], [ 145, 118, 206, 135 ], [ 212, 118, 250, 135 ], [ 256, 118, 353, 135 ], [ 359, 118, 403, 135 ], [ 409, 118, 439, 135 ], [ 445, 118, 487, 135 ], [ 493, 118, 511, 135 ], [ 517, 118, 540, 135 ], [ 545, 118, 636, 135 ], [ 642, 118, 676, 135 ], [ 682, 118, 748, 135 ], [ 754, 118, 793, 135 ], [ 799, 118, 867, 135 ], [ 145, 136, 206, 152 ], [ 217, 136, 256, 152 ], [ 267, 136, 364, 152 ], [ 375, 136, 419, 152 ], [ 431, 136, 461, 152 ], [ 472, 136, 521, 152 ], [ 532, 136, 596, 152 ], [ 607, 136, 659, 152 ], [ 671, 136, 705, 152 ], [ 716, 136, 852, 152 ], [ 863, 136, 884, 152 ], [ 895, 136, 929, 152 ], [ 143, 152, 220, 169 ], [ 270, 152, 288, 169 ], [ 294, 152, 323, 169 ], [ 329, 152, 421, 169 ], [ 427, 152, 535, 169 ], [ 145, 170, 206, 187 ], [ 218, 170, 257, 187 ], [ 268, 170, 365, 187 ], [ 377, 170, 421, 187 ], [ 433, 170, 463, 187 ], [ 475, 170, 524, 187 ], [ 536, 170, 588, 187 ], [ 600, 170, 621, 187 ], [ 633, 170, 666, 187 ], [ 678, 170, 754, 187 ], [ 766, 170, 784, 187 ], [ 796, 170, 825, 187 ], [ 837, 170, 929, 187 ], [ 145, 187, 248, 203 ], [ 260, 187, 278, 203 ], [ 291, 187, 352, 203 ], [ 364, 187, 406, 203 ], [ 419, 187, 500, 203 ], [ 512, 187, 537, 203 ], [ 550, 187, 656, 203 ], [ 669, 187, 749, 203 ], [ 762, 187, 819, 203 ], [ 832, 187, 929, 203 ], [ 143, 203, 202, 220 ], [ 270, 203, 304, 220 ], [ 310, 203, 383, 220 ], [ 389, 203, 515, 220 ], [ 145, 221, 206, 238 ], [ 218, 221, 257, 238 ], [ 268, 221, 365, 238 ], [ 377, 221, 421, 238 ], [ 433, 221, 463, 238 ], [ 475, 221, 524, 238 ], [ 536, 221, 588, 238 ], [ 600, 221, 621, 238 ], [ 633, 221, 666, 238 ], [ 678, 221, 754, 238 ], [ 766, 221, 784, 238 ], [ 796, 221, 825, 238 ], [ 837, 221, 929, 238 ], [ 145, 238, 248, 254 ], [ 253, 238, 272, 254 ], [ 277, 238, 328, 254 ], [ 334, 238, 376, 254 ], [ 382, 238, 419, 254 ], [ 425, 238, 509, 254 ], [ 515, 238, 567, 254 ], [ 573, 238, 615, 254 ], [ 621, 238, 698, 254 ], [ 145, 255, 206, 272 ], [ 212, 255, 251, 272 ], [ 257, 255, 354, 272 ], [ 360, 255, 405, 272 ], [ 411, 255, 422, 272 ], [ 428, 255, 471, 272 ], [ 477, 255, 495, 272 ], [ 501, 255, 524, 272 ], [ 530, 255, 618, 272 ], [ 625, 255, 667, 272 ], [ 674, 255, 747, 272 ], [ 753, 255, 814, 272 ], [ 820, 255, 929, 272 ], [ 145, 272, 179, 289 ], [ 185, 272, 298, 289 ], [ 145, 290, 206, 306 ], [ 218, 290, 257, 306 ], [ 268, 290, 365, 306 ], [ 377, 290, 421, 306 ], [ 433, 290, 463, 306 ], [ 475, 290, 524, 306 ], [ 536, 290, 588, 306 ], [ 600, 290, 621, 306 ], [ 633, 290, 666, 306 ], [ 678, 290, 754, 306 ], [ 766, 290, 784, 306 ], [ 796, 290, 825, 306 ], [ 837, 290, 929, 306 ], [ 145, 306, 248, 323 ], [ 256, 306, 274, 323 ], [ 283, 306, 344, 323 ], [ 353, 306, 382, 323 ], [ 391, 306, 486, 323 ], [ 495, 306, 529, 323 ], [ 538, 306, 607, 323 ], [ 616, 306, 653, 323 ], [ 661, 306, 691, 323 ], [ 700, 306, 761, 323 ], [ 770, 306, 817, 323 ], [ 826, 306, 844, 323 ], [ 853, 306, 929, 323 ], [ 143, 323, 185, 340 ], [ 208, 323, 265, 340 ], [ 271, 323, 360, 340 ], [ 366, 323, 408, 340 ], [ 414, 323, 550, 340 ], [ 556, 323, 590, 340 ], [ 596, 323, 649, 340 ], [ 655, 323, 666, 340 ], [ 671, 323, 772, 340 ], [ 778, 323, 840, 340 ], [ 846, 323, 863, 340 ], [ 869, 323, 903, 340 ], [ 83, 424, 117, 440 ], [ 122, 424, 206, 440 ], [ 212, 424, 343, 440 ], [ 349, 424, 379, 440 ], [ 384, 424, 445, 440 ], [ 83, 457, 136, 473 ], [ 142, 457, 188, 473 ], [ 194, 457, 248, 473 ], [ 254, 457, 352, 473 ], [ 358, 457, 388, 473 ], [ 393, 457, 479, 473 ], [ 484, 457, 502, 473 ], [ 508, 457, 608, 473 ], [ 614, 457, 694, 473 ], [ 700, 457, 716, 473 ], [ 722, 457, 752, 473 ], [ 758, 457, 842, 473 ], [ 83, 474, 214, 490 ], [ 220, 474, 249, 490 ], [ 255, 474, 307, 490 ], [ 83, 507, 144, 523 ], [ 149, 507, 187, 523 ], [ 193, 507, 237, 523 ], [ 243, 507, 254, 523 ], [ 260, 507, 341, 523 ], [ 347, 507, 400, 523 ], [ 406, 507, 456, 523 ], [ 143, 524, 185, 541 ], [ 191, 524, 209, 541 ], [ 215, 524, 273, 541 ], [ 279, 524, 314, 541 ], [ 320, 524, 338, 541 ], [ 343, 524, 373, 541 ], [ 379, 524, 456, 541 ], [ 462, 524, 517, 541 ], [ 523, 524, 541, 541 ], [ 547, 524, 611, 541 ], [ 616, 524, 700, 541 ], [ 143, 542, 185, 559 ], [ 191, 542, 209, 559 ], [ 215, 542, 273, 559 ], [ 279, 542, 314, 559 ], [ 320, 542, 338, 559 ], [ 343, 542, 354, 559 ], [ 360, 542, 397, 559 ], [ 403, 542, 421, 559 ], [ 427, 542, 456, 559 ], [ 462, 542, 507, 559 ], [ 143, 560, 173, 576 ], [ 179, 560, 262, 576 ], [ 268, 560, 285, 576 ], [ 290, 560, 320, 576 ], [ 326, 560, 371, 576 ], [ 377, 560, 394, 576 ], [ 400, 560, 494, 576 ], [ 500, 560, 570, 576 ], [ 576, 560, 645, 576 ], [ 650, 560, 669, 576 ], [ 675, 560, 732, 576 ], [ 143, 577, 173, 594 ], [ 179, 577, 262, 594 ], [ 268, 577, 285, 594 ], [ 290, 577, 320, 594 ], [ 326, 577, 371, 594 ], [ 377, 577, 394, 594 ], [ 400, 577, 494, 594 ], [ 500, 577, 571, 594 ], [ 577, 577, 595, 594 ], [ 600, 577, 670, 594 ], [ 676, 577, 745, 594 ], [ 751, 577, 770, 594 ], [ 775, 577, 832, 594 ], [ 143, 595, 173, 612 ], [ 179, 595, 292, 612 ], [ 298, 595, 421, 612 ], [ 427, 595, 445, 612 ], [ 451, 595, 577, 612 ], [ 583, 595, 601, 612 ], [ 607, 595, 618, 612 ], [ 623, 595, 661, 612 ], [ 666, 595, 684, 612 ], [ 690, 595, 719, 612 ], [ 725, 595, 803, 612 ], [ 808, 595, 853, 612 ], [ 143, 613, 154, 629 ], [ 160, 613, 235, 629 ], [ 241, 613, 259, 629 ], [ 265, 613, 373, 629 ], [ 379, 613, 416, 629 ], [ 422, 613, 483, 629 ], [ 488, 613, 505, 629 ], [ 511, 613, 541, 629 ], [ 546, 613, 609, 629 ], [ 614, 613, 689, 629 ], [ 694, 613, 788, 629 ], [ 794, 613, 836, 629 ], [ 842, 613, 853, 629 ], [ 859, 613, 921, 629 ], [ 143, 629, 212, 646 ], [ 217, 629, 247, 646 ], [ 253, 629, 327, 646 ], [ 333, 629, 352, 646 ], [ 358, 629, 466, 646 ], [ 143, 647, 154, 664 ], [ 160, 647, 241, 664 ], [ 247, 647, 303, 664 ], [ 309, 647, 328, 664 ], [ 334, 647, 402, 664 ], [ 408, 647, 445, 664 ], [ 451, 647, 512, 664 ], [ 518, 647, 529, 664 ], [ 535, 647, 612, 664 ], [ 618, 647, 689, 664 ], [ 695, 647, 792, 664 ], [ 798, 647, 895, 664 ], [ 901, 647, 918, 664 ], [ 143, 664, 207, 680 ], [ 213, 664, 297, 680 ], [ 303, 664, 321, 680 ], [ 327, 664, 414, 680 ], [ 420, 664, 438, 680 ], [ 444, 664, 481, 680 ], [ 487, 664, 548, 680 ], [ 554, 664, 570, 680 ], [ 576, 664, 662, 680 ], [ 668, 664, 765, 681 ], [ 83, 697, 95, 714 ], [ 101, 697, 176, 714 ], [ 182, 697, 193, 714 ], [ 199, 697, 281, 714 ], [ 286, 697, 329, 714 ], [ 143, 715, 228, 731 ], [ 234, 715, 287, 731 ], [ 143, 732, 237, 749 ], [ 243, 732, 309, 749 ], [ 315, 732, 345, 749 ], [ 351, 732, 374, 749 ], [ 379, 732, 437, 749 ], [ 443, 732, 496, 749 ], [ 143, 750, 183, 767 ], [ 189, 750, 232, 767 ], [ 238, 750, 254, 767 ], [ 260, 750, 290, 767 ], [ 296, 750, 351, 767 ], [ 143, 768, 158, 785 ], [ 164, 768, 239, 785 ], [ 245, 768, 263, 785 ], [ 269, 768, 280, 785 ], [ 286, 768, 354, 785 ], [ 83, 801, 136, 818 ], [ 142, 801, 188, 818 ], [ 194, 801, 248, 818 ], [ 254, 801, 284, 818 ], [ 290, 801, 362, 818 ], [ 368, 801, 390, 818 ], [ 396, 801, 475, 818 ], [ 481, 801, 497, 818 ], [ 503, 801, 514, 818 ], [ 520, 801, 557, 818 ], [ 563, 801, 605, 818 ], [ 143, 819, 229, 835 ], [ 238, 819, 261, 835 ], [ 270, 819, 358, 835 ], [ 367, 819, 464, 835 ], [ 473, 819, 491, 835 ], [ 500, 819, 529, 835 ], [ 538, 819, 596, 835 ], [ 605, 819, 665, 835 ], [ 674, 819, 708, 835 ], [ 717, 819, 827, 835 ], [ 836, 819, 858, 835 ], [ 867, 819, 929, 835 ], [ 143, 835, 182, 852 ], [ 188, 835, 284, 852 ], [ 290, 835, 311, 852 ], [ 316, 835, 377, 852 ], [ 383, 835, 469, 852 ], [ 475, 835, 493, 852 ], [ 499, 835, 528, 852 ], [ 534, 835, 642, 852 ], [ 143, 853, 224, 870 ], [ 234, 853, 295, 870 ], [ 304, 853, 338, 870 ], [ 348, 853, 405, 870 ], [ 414, 853, 439, 870 ], [ 449, 853, 470, 870 ], [ 479, 853, 532, 870 ], [ 541, 853, 642, 870 ], [ 651, 853, 690, 870 ], [ 699, 853, 796, 870 ], [ 805, 853, 839, 870 ], [ 849, 853, 929, 870 ], [ 143, 870, 272, 886 ], [ 286, 870, 308, 886 ], [ 322, 870, 352, 886 ], [ 366, 870, 413, 886 ], [ 427, 870, 444, 886 ], [ 458, 870, 497, 886 ], [ 511, 870, 581, 886 ], [ 595, 870, 683, 886 ], [ 697, 870, 742, 886 ], [ 756, 870, 841, 886 ], [ 855, 870, 928, 886 ], [ 143, 886, 228, 903 ], [ 233, 886, 268, 903 ], [ 273, 886, 343, 903 ] ]
[ [ 145, 83, 206, 100 ], [ 214, 83, 252, 100 ], [ 260, 83, 356, 100 ], [ 364, 83, 394, 100 ], [ 402, 83, 505, 100 ], [ 512, 83, 535, 100 ], [ 542, 83, 604, 100 ], [ 611, 83, 649, 100 ], [ 657, 83, 697, 100 ], [ 705, 83, 784, 100 ], [ 791, 83, 833, 100 ], [ 841, 83, 928, 100 ], [ 143, 100, 188, 117 ], [ 194, 100, 229, 117 ], [ 235, 100, 252, 117 ], [ 258, 100, 340, 117 ], [ 345, 100, 386, 117 ], [ 391, 100, 436, 117 ], [ 442, 100, 460, 117 ], [ 466, 100, 504, 117 ], [ 510, 100, 570, 117 ], [ 576, 100, 618, 117 ], [ 624, 100, 706, 117 ], [ 712, 100, 732, 117 ], [ 145, 118, 206, 135 ], [ 212, 118, 250, 135 ], [ 256, 118, 353, 135 ], [ 359, 118, 403, 135 ], [ 409, 118, 439, 135 ], [ 445, 118, 487, 135 ], [ 493, 118, 511, 135 ], [ 517, 118, 540, 135 ], [ 545, 118, 636, 135 ], [ 642, 118, 676, 135 ], [ 682, 118, 748, 135 ], [ 754, 118, 793, 135 ], [ 799, 118, 867, 135 ], [ 145, 136, 206, 152 ], [ 217, 136, 256, 152 ], [ 267, 136, 364, 152 ], [ 375, 136, 419, 152 ], [ 431, 136, 461, 152 ], [ 472, 136, 521, 152 ], [ 532, 136, 596, 152 ], [ 607, 136, 659, 152 ], [ 671, 136, 705, 152 ], [ 716, 136, 852, 152 ], [ 863, 136, 884, 152 ], [ 895, 136, 929, 152 ], [ 143, 152, 220, 169 ], [ 270, 152, 288, 169 ], [ 294, 152, 323, 169 ], [ 329, 152, 421, 169 ], [ 427, 152, 535, 169 ], [ 145, 170, 206, 187 ], [ 218, 170, 257, 187 ], [ 268, 170, 365, 187 ], [ 377, 170, 421, 187 ], [ 433, 170, 463, 187 ], [ 475, 170, 524, 187 ], [ 536, 170, 588, 187 ], [ 600, 170, 621, 187 ], [ 633, 170, 666, 187 ], [ 678, 170, 754, 187 ], [ 766, 170, 784, 187 ], [ 796, 170, 825, 187 ], [ 837, 170, 929, 187 ], [ 145, 187, 248, 203 ], [ 260, 187, 278, 203 ], [ 291, 187, 352, 203 ], [ 364, 187, 406, 203 ], [ 419, 187, 500, 203 ], [ 512, 187, 537, 203 ], [ 550, 187, 656, 203 ], [ 669, 187, 749, 203 ], [ 762, 187, 819, 203 ], [ 832, 187, 929, 203 ], [ 143, 203, 202, 220 ], [ 270, 203, 304, 220 ], [ 310, 203, 383, 220 ], [ 389, 203, 515, 220 ], [ 145, 221, 206, 238 ], [ 218, 221, 257, 238 ], [ 268, 221, 365, 238 ], [ 377, 221, 421, 238 ], [ 433, 221, 463, 238 ], [ 475, 221, 524, 238 ], [ 536, 221, 588, 238 ], [ 600, 221, 621, 238 ], [ 633, 221, 666, 238 ], [ 678, 221, 754, 238 ], [ 766, 221, 784, 238 ], [ 796, 221, 825, 238 ], [ 837, 221, 929, 238 ], [ 145, 238, 248, 254 ], [ 253, 238, 272, 254 ], [ 277, 238, 328, 254 ], [ 334, 238, 376, 254 ], [ 382, 238, 419, 254 ], [ 425, 238, 509, 254 ], [ 515, 238, 567, 254 ], [ 573, 238, 615, 254 ], [ 621, 238, 698, 254 ], [ 145, 255, 206, 272 ], [ 212, 255, 251, 272 ], [ 257, 255, 354, 272 ], [ 360, 255, 405, 272 ], [ 411, 255, 422, 272 ], [ 428, 255, 471, 272 ], [ 477, 255, 495, 272 ], [ 501, 255, 524, 272 ], [ 530, 255, 618, 272 ], [ 625, 255, 667, 272 ], [ 674, 255, 747, 272 ], [ 753, 255, 814, 272 ], [ 820, 255, 929, 272 ], [ 145, 272, 179, 289 ], [ 185, 272, 298, 289 ], [ 145, 290, 206, 306 ], [ 218, 290, 257, 306 ], [ 268, 290, 365, 306 ], [ 377, 290, 421, 306 ], [ 433, 290, 463, 306 ], [ 475, 290, 524, 306 ], [ 536, 290, 588, 306 ], [ 600, 290, 621, 306 ], [ 633, 290, 666, 306 ], [ 678, 290, 754, 306 ], [ 766, 290, 784, 306 ], [ 796, 290, 825, 306 ], [ 837, 290, 929, 306 ], [ 145, 306, 248, 323 ], [ 256, 306, 274, 323 ], [ 283, 306, 344, 323 ], [ 353, 306, 382, 323 ], [ 391, 306, 486, 323 ], [ 495, 306, 529, 323 ], [ 538, 306, 607, 323 ], [ 616, 306, 653, 323 ], [ 661, 306, 691, 323 ], [ 700, 306, 761, 323 ], [ 770, 306, 817, 323 ], [ 826, 306, 844, 323 ], [ 853, 306, 929, 323 ], [ 143, 323, 185, 340 ], [ 208, 323, 265, 340 ], [ 271, 323, 360, 340 ], [ 366, 323, 408, 340 ], [ 414, 323, 550, 340 ], [ 556, 323, 590, 340 ], [ 596, 323, 649, 340 ], [ 655, 323, 666, 340 ], [ 671, 323, 772, 340 ], [ 778, 323, 840, 340 ], [ 846, 323, 863, 340 ], [ 869, 323, 903, 340 ], [ 83, 424, 117, 440 ], [ 122, 424, 206, 440 ], [ 212, 424, 343, 440 ], [ 349, 424, 379, 440 ], [ 384, 424, 445, 440 ], [ 83, 457, 136, 473 ], [ 142, 457, 188, 473 ], [ 194, 457, 248, 473 ], [ 254, 457, 352, 473 ], [ 358, 457, 388, 473 ], [ 393, 457, 479, 473 ], [ 484, 457, 502, 473 ], [ 508, 457, 608, 473 ], [ 614, 457, 694, 473 ], [ 700, 457, 716, 473 ], [ 722, 457, 752, 473 ], [ 758, 457, 842, 473 ], [ 83, 474, 214, 490 ], [ 220, 474, 249, 490 ], [ 255, 474, 307, 490 ], [ 83, 507, 144, 523 ], [ 149, 507, 187, 523 ], [ 193, 507, 237, 523 ], [ 243, 507, 254, 523 ], [ 260, 507, 341, 523 ], [ 347, 507, 400, 523 ], [ 406, 507, 456, 523 ], [ 143, 524, 185, 541 ], [ 191, 524, 209, 541 ], [ 215, 524, 273, 541 ], [ 279, 524, 314, 541 ], [ 320, 524, 338, 541 ], [ 343, 524, 373, 541 ], [ 379, 524, 456, 541 ], [ 462, 524, 517, 541 ], [ 523, 524, 541, 541 ], [ 547, 524, 611, 541 ], [ 616, 524, 700, 541 ], [ 143, 542, 185, 559 ], [ 191, 542, 209, 559 ], [ 215, 542, 273, 559 ], [ 279, 542, 314, 559 ], [ 320, 542, 338, 559 ], [ 343, 542, 354, 559 ], [ 360, 542, 397, 559 ], [ 403, 542, 421, 559 ], [ 427, 542, 456, 559 ], [ 462, 542, 507, 559 ], [ 143, 560, 173, 576 ], [ 179, 560, 262, 576 ], [ 268, 560, 285, 576 ], [ 290, 560, 320, 576 ], [ 326, 560, 371, 576 ], [ 377, 560, 394, 576 ], [ 400, 560, 494, 576 ], [ 500, 560, 570, 576 ], [ 576, 560, 645, 576 ], [ 650, 560, 669, 576 ], [ 675, 560, 732, 576 ], [ 143, 577, 173, 594 ], [ 179, 577, 262, 594 ], [ 268, 577, 285, 594 ], [ 290, 577, 320, 594 ], [ 326, 577, 371, 594 ], [ 377, 577, 394, 594 ], [ 400, 577, 494, 594 ], [ 500, 577, 571, 594 ], [ 577, 577, 595, 594 ], [ 600, 577, 670, 594 ], [ 676, 577, 745, 594 ], [ 751, 577, 770, 594 ], [ 775, 577, 832, 594 ], [ 143, 595, 173, 612 ], [ 179, 595, 292, 612 ], [ 298, 595, 421, 612 ], [ 427, 595, 445, 612 ], [ 451, 595, 577, 612 ], [ 583, 595, 601, 612 ], [ 607, 595, 618, 612 ], [ 623, 595, 661, 612 ], [ 666, 595, 684, 612 ], [ 690, 595, 719, 612 ], [ 725, 595, 803, 612 ], [ 808, 595, 853, 612 ], [ 143, 613, 154, 629 ], [ 160, 613, 235, 629 ], [ 241, 613, 259, 629 ], [ 265, 613, 373, 629 ], [ 379, 613, 416, 629 ], [ 422, 613, 483, 629 ], [ 488, 613, 505, 629 ], [ 511, 613, 541, 629 ], [ 546, 613, 609, 629 ], [ 614, 613, 689, 629 ], [ 694, 613, 788, 629 ], [ 794, 613, 836, 629 ], [ 842, 613, 853, 629 ], [ 859, 613, 921, 629 ], [ 143, 629, 212, 646 ], [ 217, 629, 247, 646 ], [ 253, 629, 327, 646 ], [ 333, 629, 352, 646 ], [ 358, 629, 466, 646 ], [ 143, 647, 154, 664 ], [ 160, 647, 241, 664 ], [ 247, 647, 303, 664 ], [ 309, 647, 328, 664 ], [ 334, 647, 402, 664 ], [ 408, 647, 445, 664 ], [ 451, 647, 512, 664 ], [ 518, 647, 529, 664 ], [ 535, 647, 612, 664 ], [ 618, 647, 689, 664 ], [ 695, 647, 792, 664 ], [ 798, 647, 895, 664 ], [ 901, 647, 918, 664 ], [ 143, 664, 207, 680 ], [ 213, 664, 297, 680 ], [ 303, 664, 321, 680 ], [ 327, 664, 414, 680 ], [ 420, 664, 438, 680 ], [ 444, 664, 481, 680 ], [ 487, 664, 548, 680 ], [ 554, 664, 570, 680 ], [ 576, 664, 662, 680 ], [ 668, 664, 765, 681 ], [ 83, 697, 95, 714 ], [ 101, 697, 176, 714 ], [ 182, 697, 193, 714 ], [ 199, 697, 281, 714 ], [ 286, 697, 329, 714 ], [ 143, 715, 228, 731 ], [ 234, 715, 287, 731 ], [ 143, 732, 237, 749 ], [ 243, 732, 309, 749 ], [ 315, 732, 345, 749 ], [ 351, 732, 374, 749 ], [ 379, 732, 437, 749 ], [ 443, 732, 496, 749 ], [ 143, 750, 183, 767 ], [ 189, 750, 232, 767 ], [ 238, 750, 254, 767 ], [ 260, 750, 290, 767 ], [ 296, 750, 351, 767 ], [ 143, 768, 158, 785 ], [ 164, 768, 239, 785 ], [ 245, 768, 263, 785 ], [ 269, 768, 280, 785 ], [ 286, 768, 354, 785 ], [ 83, 801, 136, 818 ], [ 142, 801, 188, 818 ], [ 194, 801, 248, 818 ], [ 254, 801, 284, 818 ], [ 290, 801, 362, 818 ], [ 368, 801, 390, 818 ], [ 396, 801, 475, 818 ], [ 481, 801, 497, 818 ], [ 503, 801, 514, 818 ], [ 520, 801, 557, 818 ], [ 563, 801, 605, 818 ], [ 143, 819, 229, 835 ], [ 238, 819, 261, 835 ], [ 270, 819, 358, 835 ], [ 367, 819, 464, 835 ], [ 473, 819, 491, 835 ], [ 500, 819, 529, 835 ], [ 538, 819, 596, 835 ], [ 605, 819, 665, 835 ], [ 674, 819, 708, 835 ], [ 717, 819, 827, 835 ], [ 836, 819, 858, 835 ], [ 867, 819, 929, 835 ], [ 143, 835, 182, 852 ], [ 188, 835, 284, 852 ], [ 290, 835, 311, 852 ], [ 316, 835, 377, 852 ], [ 383, 835, 469, 852 ], [ 475, 835, 493, 852 ], [ 499, 835, 528, 852 ], [ 534, 835, 642, 852 ], [ 143, 853, 224, 870 ], [ 234, 853, 295, 870 ], [ 304, 853, 338, 870 ], [ 348, 853, 405, 870 ], [ 414, 853, 439, 870 ], [ 449, 853, 470, 870 ], [ 479, 853, 532, 870 ], [ 541, 853, 642, 870 ], [ 651, 853, 690, 870 ], [ 699, 853, 796, 870 ], [ 805, 853, 839, 870 ], [ 849, 853, 929, 870 ], [ 143, 870, 272, 886 ], [ 286, 870, 308, 886 ], [ 322, 870, 352, 886 ], [ 366, 870, 413, 886 ], [ 427, 870, 444, 886 ], [ 458, 870, 497, 886 ], [ 511, 870, 581, 886 ], [ 595, 870, 683, 886 ], [ 697, 870, 742, 886 ], [ 756, 870, 841, 886 ], [ 855, 870, 928, 886 ], [ 143, 886, 228, 903 ], [ 233, 886, 268, 903 ], [ 273, 886, 343, 903 ] ]
December 8.2.9 Include a standard line on every relevant Manager 2016 official Guide Dogs SA/NT publication to Marketing and advise the reader the material is Communications available in alternative formats (or can be provided upon request). In place – 8.2.10 Develop a clear procedure for all staff on EM Client Services continuous how to convert print to various EM Mobility and Dog improvement alternative formats. Services required. December 2016 In place – 8.2.11 Ensure newly recruited client services EM Client Services continuous staff and existing staff are appropriately EM Mobility and Dog improvement trained and updated on the use of Services assistive equipment, as well as the role required. June 2017 and operation of communication aids and translating and interpreting services. Improvement to 8.2.12 Ensure the Guide Dogs SA/NT website Manager the website meets international access standards – Marketing and access has been i.e. meets the World Wide Web Communications undertaken. Consortium (W3C) Web Content Further work Accessibility Guidelines (WCAG2.0). needs to be undertaken to reach full compliance with (WCAG2.0)June 2017 8.2.13 Undertake regular maintenance of the Manager Ongoing Guide Dogs SA/NT website to ensure it Marketing and meets evolving international standards. Communications In Place 8.2.14 Ensure the (DAIP) is accessible through EM S Client Services Ongoing the Guide Dogs SA/NT website and EM Mobility and Dog June 2016 available in alternative formats such as Services large print, Braille and audio upon Manager request. Provide the (DAIP) in various Marketing and community languages on a needs basis. Communications December 8.2.15 Promote the use and awareness of EM Client Services 2016 adaptive technology devices (kits) to the broader community to promote safety, Independence and inclusion for people with sensory loss in specialised environments, e.g. Hospitals, hotels resorts, nursing homes etc.
8.2.9 Include a standard line on every relevant official Guide Dogs SA/NT publication to advise the reader the material is available in alternative formats (or can be provided upon request). Manager Marketing and Communications December 2016 8.2.10 Develop a clear procedure for all staff on how to convert print to various alternative formats. EM Client Services EM Mobility and Dog Services In place – continuous improvement required. December 2016 8.2.11 Ensure newly recruited client services staff and existing staff are appropriately trained and updated on the use of assistive equipment, as well as the role and operation of communication aids and translating and interpreting services. EM Client Services EM Mobility and Dog Services In place – continuous improvement required. June 2017 8.2.12 Ensure the Guide Dogs SA/NT website meets international access standards – i.e. meets the World Wide Web Consortium (W3C) Web Content Accessibility Guidelines (WCAG2.0). Manager Marketing and Communications Improvement to the website access has been undertaken. Further work needs to be undertaken to reach full compliance with (WCAG2.0)June 2017 8.2.13 Undertake regular maintenance of the Guide Dogs SA/NT website to ensure it meets evolving international standards. Manager Marketing and Communications Ongoing 8.2.14 Ensure the (DAIP) is accessible through the Guide Dogs SA/NT website and available in alternative formats such as large print, Braille and audio upon request. Provide the (DAIP) in various community languages on a needs basis. EM S Client Services EM Mobility and Dog Services Manager Marketing and Communications In Place Ongoing June 2016 8.2.15 Promote the use and awareness of adaptive technology devices (kits) to the broader community to promote safety, Independence and inclusion for people with sensory loss in specialised environments, e.g. Hospitals, hotels resorts, nursing homes etc. EM Client Services December 2016
0.67648
[ 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 15, 16, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 9, 17, 18, 25, 0, 10, 39, 40, 41, 42, 43, 44, 45, 46, 47, 52, 53, 54, 55, 56, 57, 63, 64, 48, 49, 50, 58, 59, 60, 61, 65, 36, 37, 38, 51, 62, 66, 67, 68, 72, 73, 74, 75, 76, 77, 82, 83, 84, 85, 86, 87, 93, 94, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 78, 79, 80, 88, 89, 90, 91, 100, 69, 70, 71, 81, 92, 108, 109, 110, 123, 124, 125, 126, 127, 128, 129, 133, 134, 135, 136, 137, 143, 144, 145, 146, 147, 148, 151, 152, 153, 154, 157, 158, 159, 130, 138, 139, 149, 121, 122, 131, 132, 140, 141, 142, 150, 155, 156, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 179, 180, 181, 182, 183, 184, 185, 188, 189, 190, 191, 177, 186, 187, 192, 178, 195, 196, 197, 198, 199, 200, 201, 207, 208, 209, 210, 211, 212, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 241, 242, 243, 244, 245, 246, 202, 203, 204, 205, 213, 214, 215, 216, 225, 232, 239, 240, 247, 193, 194, 206, 217, 218, 249, 250, 251, 252, 253, 254, 255, 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, 256, 257, 258, 248, 259 ]
m366-disability-action-inclusion-plan-2015-2017-v2-0.docx
task-1432-231
10
[ [ 771, 109, 865, 125 ], [ 94, 110, 139, 130 ], [ 156, 110, 221, 130 ], [ 227, 110, 238, 130 ], [ 244, 110, 322, 130 ], [ 328, 110, 359, 130 ], [ 365, 110, 387, 130 ], [ 393, 110, 442, 130 ], [ 447, 110, 519, 130 ], [ 545, 112, 624, 129 ], [ 771, 125, 817, 142 ], [ 161, 126, 218, 146 ], [ 224, 126, 278, 146 ], [ 283, 126, 330, 146 ], [ 336, 126, 396, 146 ], [ 401, 126, 498, 146 ], [ 503, 126, 520, 146 ], [ 545, 129, 636, 145 ], [ 642, 129, 676, 145 ], [ 161, 143, 219, 162 ], [ 225, 143, 253, 162 ], [ 259, 143, 317, 162 ], [ 323, 143, 351, 162 ], [ 356, 143, 428, 162 ], [ 434, 143, 448, 162 ], [ 545, 145, 697, 162 ], [ 161, 159, 241, 179 ], [ 246, 159, 262, 179 ], [ 268, 159, 361, 179 ], [ 366, 159, 434, 179 ], [ 439, 159, 464, 179 ], [ 470, 159, 502, 179 ], [ 161, 176, 184, 195 ], [ 189, 176, 267, 195 ], [ 272, 176, 317, 195 ], [ 323, 176, 402, 195 ], [ 771, 195, 788, 211 ], [ 794, 195, 842, 211 ], [ 848, 195, 857, 211 ], [ 94, 196, 150, 216 ], [ 156, 196, 230, 216 ], [ 236, 196, 247, 216 ], [ 253, 196, 296, 216 ], [ 302, 196, 393, 216 ], [ 398, 196, 422, 216 ], [ 428, 196, 448, 216 ], [ 453, 196, 491, 216 ], [ 497, 196, 520, 216 ], [ 545, 198, 572, 215 ], [ 578, 198, 630, 215 ], [ 636, 198, 712, 215 ], [ 771, 211, 871, 228 ], [ 161, 213, 198, 232 ], [ 204, 213, 221, 232 ], [ 226, 213, 292, 232 ], [ 298, 213, 337, 232 ], [ 343, 213, 360, 232 ], [ 365, 213, 430, 232 ], [ 545, 227, 572, 243 ], [ 578, 227, 649, 243 ], [ 655, 227, 689, 243 ], [ 695, 227, 731, 243 ], [ 771, 228, 893, 244 ], [ 161, 229, 254, 249 ], [ 260, 229, 333, 249 ], [ 545, 243, 621, 260 ], [ 771, 244, 853, 261 ], [ 771, 268, 865, 285 ], [ 771, 285, 817, 301 ], [ 771, 302, 788, 318 ], [ 794, 302, 842, 318 ], [ 848, 302, 857, 318 ], [ 95, 303, 151, 323 ], [ 157, 303, 221, 323 ], [ 226, 303, 277, 323 ], [ 283, 303, 362, 323 ], [ 367, 303, 414, 323 ], [ 420, 303, 494, 323 ], [ 545, 305, 572, 322 ], [ 578, 305, 630, 322 ], [ 636, 305, 712, 322 ], [ 771, 319, 871, 335 ], [ 162, 320, 200, 339 ], [ 205, 320, 239, 339 ], [ 245, 320, 313, 339 ], [ 318, 320, 357, 339 ], [ 362, 320, 391, 339 ], [ 397, 320, 514, 339 ], [ 545, 329, 572, 346 ], [ 578, 329, 649, 346 ], [ 655, 329, 689, 346 ], [ 695, 329, 731, 346 ], [ 771, 335, 893, 352 ], [ 162, 336, 223, 356 ], [ 229, 336, 262, 356 ], [ 268, 336, 341, 356 ], [ 347, 336, 369, 356 ], [ 375, 336, 403, 356 ], [ 408, 336, 441, 356 ], [ 447, 336, 463, 356 ], [ 545, 346, 621, 362 ], [ 162, 352, 239, 372 ], [ 244, 352, 344, 372 ], [ 350, 352, 371, 372 ], [ 377, 352, 411, 372 ], [ 417, 352, 438, 372 ], [ 444, 352, 472, 372 ], [ 478, 352, 511, 372 ], [ 771, 352, 853, 368 ], [ 771, 368, 811, 385 ], [ 816, 368, 862, 385 ], [ 162, 369, 195, 388 ], [ 201, 369, 285, 388 ], [ 291, 369, 307, 388 ], [ 313, 369, 449, 388 ], [ 454, 369, 491, 388 ], [ 162, 385, 195, 405 ], [ 201, 385, 294, 405 ], [ 300, 385, 333, 405 ], [ 339, 385, 440, 405 ], [ 445, 385, 525, 405 ], [ 771, 406, 873, 419 ], [ 878, 406, 893, 419 ], [ 95, 407, 151, 427 ], [ 157, 407, 221, 427 ], [ 226, 407, 254, 427 ], [ 260, 407, 313, 427 ], [ 319, 407, 366, 427 ], [ 372, 407, 431, 427 ], [ 437, 407, 505, 427 ], [ 545, 413, 624, 429 ], [ 771, 420, 796, 433 ], [ 800, 420, 859, 433 ], [ 162, 423, 216, 443 ], [ 222, 423, 332, 443 ], [ 338, 423, 400, 443 ], [ 406, 423, 495, 443 ], [ 500, 426, 511, 442 ], [ 545, 429, 636, 446 ], [ 642, 429, 676, 446 ], [ 771, 433, 822, 447 ], [ 827, 433, 853, 447 ], [ 858, 433, 896, 447 ], [ 162, 440, 188, 459 ], [ 194, 440, 249, 459 ], [ 255, 440, 283, 459 ], [ 288, 440, 341, 459 ], [ 346, 440, 392, 459 ], [ 398, 440, 439, 459 ], [ 545, 446, 697, 463 ], [ 771, 447, 863, 461 ], [ 162, 456, 265, 476 ], [ 270, 456, 329, 476 ], [ 334, 456, 376, 476 ], [ 381, 456, 452, 476 ], [ 771, 461, 826, 475 ], [ 831, 461, 868, 475 ], [ 162, 473, 271, 492 ], [ 277, 473, 372, 492 ], [ 378, 473, 488, 492 ], [ 771, 475, 816, 489 ], [ 821, 475, 836, 489 ], [ 841, 475, 860, 489 ], [ 771, 489, 858, 502 ], [ 863, 489, 878, 502 ], [ 771, 502, 814, 516 ], [ 818, 502, 841, 516 ], [ 771, 516, 857, 530 ], [ 862, 516, 894, 530 ], [ 771, 530, 887, 544 ], [ 771, 544, 810, 558 ], [ 94, 575, 150, 595 ], [ 156, 575, 249, 595 ], [ 255, 575, 317, 595 ], [ 323, 575, 438, 595 ], [ 444, 575, 461, 595 ], [ 467, 575, 495, 595 ], [ 545, 577, 624, 594 ], [ 771, 577, 847, 594 ], [ 161, 591, 215, 611 ], [ 221, 591, 267, 611 ], [ 273, 591, 332, 611 ], [ 338, 591, 406, 611 ], [ 412, 591, 429, 611 ], [ 435, 591, 496, 611 ], [ 502, 591, 512, 611 ], [ 545, 594, 636, 610 ], [ 642, 594, 676, 610 ], [ 161, 608, 216, 627 ], [ 222, 608, 295, 627 ], [ 301, 608, 411, 627 ], [ 417, 608, 511, 627 ], [ 545, 610, 697, 627 ], [ 771, 630, 788, 647 ], [ 794, 630, 842, 647 ], [ 94, 632, 150, 651 ], [ 156, 632, 220, 651 ], [ 226, 632, 254, 651 ], [ 259, 632, 320, 651 ], [ 325, 632, 340, 651 ], [ 345, 632, 440, 651 ], [ 445, 632, 514, 651 ], [ 545, 634, 572, 651 ], [ 578, 634, 589, 651 ], [ 595, 634, 648, 651 ], [ 654, 634, 730, 651 ], [ 771, 647, 847, 663 ], [ 161, 648, 189, 668 ], [ 195, 648, 248, 668 ], [ 254, 648, 301, 668 ], [ 307, 648, 366, 668 ], [ 372, 648, 440, 668 ], [ 446, 648, 480, 668 ], [ 545, 658, 572, 674 ], [ 578, 658, 649, 674 ], [ 655, 658, 689, 674 ], [ 695, 658, 731, 674 ], [ 771, 664, 811, 680 ], [ 816, 664, 862, 680 ], [ 161, 665, 240, 684 ], [ 246, 665, 262, 684 ], [ 268, 665, 360, 684 ], [ 366, 665, 433, 684 ], [ 439, 665, 482, 684 ], [ 487, 665, 509, 684 ], [ 545, 674, 621, 691 ], [ 161, 681, 206, 701 ], [ 211, 681, 256, 701 ], [ 262, 681, 318, 701 ], [ 324, 681, 357, 701 ], [ 363, 681, 412, 701 ], [ 418, 681, 463, 701 ], [ 545, 694, 624, 711 ], [ 161, 697, 234, 717 ], [ 239, 697, 308, 717 ], [ 314, 697, 342, 717 ], [ 347, 697, 408, 717 ], [ 413, 697, 429, 717 ], [ 435, 697, 500, 717 ], [ 545, 711, 636, 728 ], [ 642, 711, 676, 728 ], [ 161, 714, 258, 734 ], [ 264, 714, 357, 734 ], [ 363, 714, 385, 734 ], [ 391, 714, 402, 734 ], [ 408, 714, 463, 734 ], [ 468, 714, 521, 734 ], [ 545, 728, 697, 744 ], [ 771, 748, 865, 765 ], [ 94, 750, 150, 769 ], [ 156, 750, 232, 769 ], [ 238, 750, 266, 769 ], [ 272, 750, 304, 769 ], [ 310, 750, 343, 769 ], [ 349, 750, 447, 769 ], [ 452, 750, 469, 769 ], [ 545, 752, 572, 768 ], [ 578, 752, 630, 768 ], [ 636, 752, 712, 768 ], [ 771, 765, 817, 782 ], [ 161, 766, 237, 786 ], [ 243, 766, 340, 786 ], [ 346, 766, 414, 786 ], [ 420, 766, 464, 786 ], [ 469, 766, 486, 786 ], [ 497, 766, 526, 786 ], [ 161, 783, 230, 802 ], [ 236, 783, 334, 802 ], [ 339, 783, 356, 802 ], [ 362, 783, 436, 802 ], [ 441, 783, 500, 802 ], [ 161, 799, 289, 818 ], [ 294, 799, 328, 818 ], [ 334, 799, 412, 818 ], [ 418, 799, 441, 818 ], [ 447, 799, 508, 818 ], [ 161, 815, 197, 835 ], [ 202, 815, 273, 835 ], [ 278, 815, 314, 835 ], [ 320, 815, 336, 835 ], [ 341, 815, 441, 835 ], [ 161, 832, 288, 851 ], [ 293, 832, 327, 851 ], [ 332, 832, 421, 851 ], [ 426, 832, 480, 851 ], [ 161, 848, 228, 868 ], [ 234, 848, 300, 868 ], [ 305, 848, 366, 868 ], [ 372, 848, 404, 868 ] ]
[ [ 94, 110, 139, 130 ], [ 156, 110, 221, 130 ], [ 227, 110, 238, 130 ], [ 244, 110, 322, 130 ], [ 328, 110, 359, 130 ], [ 365, 110, 387, 130 ], [ 393, 110, 442, 130 ], [ 447, 110, 519, 130 ], [ 161, 126, 218, 146 ], [ 224, 126, 278, 146 ], [ 283, 126, 330, 146 ], [ 336, 126, 396, 146 ], [ 401, 126, 498, 146 ], [ 503, 126, 520, 146 ], [ 161, 143, 219, 162 ], [ 225, 143, 253, 162 ], [ 259, 143, 317, 162 ], [ 323, 143, 351, 162 ], [ 356, 143, 428, 162 ], [ 434, 143, 448, 162 ], [ 161, 159, 241, 179 ], [ 246, 159, 262, 179 ], [ 268, 159, 361, 179 ], [ 366, 159, 434, 179 ], [ 439, 159, 464, 179 ], [ 470, 159, 502, 179 ], [ 161, 176, 184, 195 ], [ 189, 176, 267, 195 ], [ 272, 176, 317, 195 ], [ 323, 176, 402, 195 ], [ 545, 112, 624, 129 ], [ 545, 129, 636, 145 ], [ 642, 129, 676, 145 ], [ 545, 145, 697, 162 ], [ 771, 109, 865, 125 ], [ 771, 125, 817, 142 ], [ 94, 196, 150, 216 ], [ 156, 196, 230, 216 ], [ 236, 196, 247, 216 ], [ 253, 196, 296, 216 ], [ 302, 196, 393, 216 ], [ 398, 196, 422, 216 ], [ 428, 196, 448, 216 ], [ 453, 196, 491, 216 ], [ 497, 196, 520, 216 ], [ 161, 213, 198, 232 ], [ 204, 213, 221, 232 ], [ 226, 213, 292, 232 ], [ 298, 213, 337, 232 ], [ 343, 213, 360, 232 ], [ 365, 213, 430, 232 ], [ 161, 229, 254, 249 ], [ 260, 229, 333, 249 ], [ 545, 198, 572, 215 ], [ 578, 198, 630, 215 ], [ 636, 198, 712, 215 ], [ 545, 227, 572, 243 ], [ 578, 227, 649, 243 ], [ 655, 227, 689, 243 ], [ 695, 227, 731, 243 ], [ 545, 243, 621, 260 ], [ 771, 195, 788, 211 ], [ 794, 195, 842, 211 ], [ 848, 195, 857, 211 ], [ 771, 211, 871, 228 ], [ 771, 228, 893, 244 ], [ 771, 244, 853, 261 ], [ 771, 268, 865, 285 ], [ 771, 285, 817, 301 ], [ 95, 303, 151, 323 ], [ 157, 303, 221, 323 ], [ 226, 303, 277, 323 ], [ 283, 303, 362, 323 ], [ 367, 303, 414, 323 ], [ 420, 303, 494, 323 ], [ 162, 320, 200, 339 ], [ 205, 320, 239, 339 ], [ 245, 320, 313, 339 ], [ 318, 320, 357, 339 ], [ 362, 320, 391, 339 ], [ 397, 320, 514, 339 ], [ 162, 336, 223, 356 ], [ 229, 336, 262, 356 ], [ 268, 336, 341, 356 ], [ 347, 336, 369, 356 ], [ 375, 336, 403, 356 ], [ 408, 336, 441, 356 ], [ 447, 336, 463, 356 ], [ 162, 352, 239, 372 ], [ 244, 352, 344, 372 ], [ 350, 352, 371, 372 ], [ 377, 352, 411, 372 ], [ 417, 352, 438, 372 ], [ 444, 352, 472, 372 ], [ 478, 352, 511, 372 ], [ 162, 369, 195, 388 ], [ 201, 369, 285, 388 ], [ 291, 369, 307, 388 ], [ 313, 369, 449, 388 ], [ 454, 369, 491, 388 ], [ 162, 385, 195, 405 ], [ 201, 385, 294, 405 ], [ 300, 385, 333, 405 ], [ 339, 385, 440, 405 ], [ 445, 385, 525, 405 ], [ 545, 305, 572, 322 ], [ 578, 305, 630, 322 ], [ 636, 305, 712, 322 ], [ 545, 329, 572, 346 ], [ 578, 329, 649, 346 ], [ 655, 329, 689, 346 ], [ 695, 329, 731, 346 ], [ 545, 346, 621, 362 ], [ 771, 302, 788, 318 ], [ 794, 302, 842, 318 ], [ 848, 302, 857, 318 ], [ 771, 319, 871, 335 ], [ 771, 335, 893, 352 ], [ 771, 352, 853, 368 ], [ 771, 368, 811, 385 ], [ 816, 368, 862, 385 ], [ 95, 407, 151, 427 ], [ 157, 407, 221, 427 ], [ 226, 407, 254, 427 ], [ 260, 407, 313, 427 ], [ 319, 407, 366, 427 ], [ 372, 407, 431, 427 ], [ 437, 407, 505, 427 ], [ 162, 423, 216, 443 ], [ 222, 423, 332, 443 ], [ 338, 423, 400, 443 ], [ 406, 423, 495, 443 ], [ 500, 426, 511, 442 ], [ 162, 440, 188, 459 ], [ 194, 440, 249, 459 ], [ 255, 440, 283, 459 ], [ 288, 440, 341, 459 ], [ 346, 440, 392, 459 ], [ 398, 440, 439, 459 ], [ 162, 456, 265, 476 ], [ 270, 456, 329, 476 ], [ 334, 456, 376, 476 ], [ 381, 456, 452, 476 ], [ 162, 473, 271, 492 ], [ 277, 473, 372, 492 ], [ 378, 473, 488, 492 ], [ 545, 413, 624, 429 ], [ 545, 429, 636, 446 ], [ 642, 429, 676, 446 ], [ 545, 446, 697, 463 ], [ 771, 406, 873, 419 ], [ 878, 406, 893, 419 ], [ 771, 420, 796, 433 ], [ 800, 420, 859, 433 ], [ 771, 433, 822, 447 ], [ 827, 433, 853, 447 ], [ 858, 433, 896, 447 ], [ 771, 447, 863, 461 ], [ 771, 461, 826, 475 ], [ 831, 461, 868, 475 ], [ 771, 475, 816, 489 ], [ 821, 475, 836, 489 ], [ 841, 475, 860, 489 ], [ 771, 489, 858, 502 ], [ 863, 489, 878, 502 ], [ 771, 502, 814, 516 ], [ 818, 502, 841, 516 ], [ 771, 516, 857, 530 ], [ 862, 516, 894, 530 ], [ 771, 530, 887, 544 ], [ 771, 544, 810, 558 ], [ 94, 575, 150, 595 ], [ 156, 575, 249, 595 ], [ 255, 575, 317, 595 ], [ 323, 575, 438, 595 ], [ 444, 575, 461, 595 ], [ 467, 575, 495, 595 ], [ 161, 591, 215, 611 ], [ 221, 591, 267, 611 ], [ 273, 591, 332, 611 ], [ 338, 591, 406, 611 ], [ 412, 591, 429, 611 ], [ 435, 591, 496, 611 ], [ 502, 591, 512, 611 ], [ 161, 608, 216, 627 ], [ 222, 608, 295, 627 ], [ 301, 608, 411, 627 ], [ 417, 608, 511, 627 ], [ 545, 577, 624, 594 ], [ 545, 594, 636, 610 ], [ 642, 594, 676, 610 ], [ 545, 610, 697, 627 ], [ 771, 577, 847, 594 ], [ 94, 632, 150, 651 ], [ 156, 632, 220, 651 ], [ 226, 632, 254, 651 ], [ 259, 632, 320, 651 ], [ 325, 632, 340, 651 ], [ 345, 632, 440, 651 ], [ 445, 632, 514, 651 ], [ 161, 648, 189, 668 ], [ 195, 648, 248, 668 ], [ 254, 648, 301, 668 ], [ 307, 648, 366, 668 ], [ 372, 648, 440, 668 ], [ 446, 648, 480, 668 ], [ 161, 665, 240, 684 ], [ 246, 665, 262, 684 ], [ 268, 665, 360, 684 ], [ 366, 665, 433, 684 ], [ 439, 665, 482, 684 ], [ 487, 665, 509, 684 ], [ 161, 681, 206, 701 ], [ 211, 681, 256, 701 ], [ 262, 681, 318, 701 ], [ 324, 681, 357, 701 ], [ 363, 681, 412, 701 ], [ 418, 681, 463, 701 ], [ 161, 697, 234, 717 ], [ 239, 697, 308, 717 ], [ 314, 697, 342, 717 ], [ 347, 697, 408, 717 ], [ 413, 697, 429, 717 ], [ 435, 697, 500, 717 ], [ 161, 714, 258, 734 ], [ 264, 714, 357, 734 ], [ 363, 714, 385, 734 ], [ 391, 714, 402, 734 ], [ 408, 714, 463, 734 ], [ 468, 714, 521, 734 ], [ 545, 634, 572, 651 ], [ 578, 634, 589, 651 ], [ 595, 634, 648, 651 ], [ 654, 634, 730, 651 ], [ 545, 658, 572, 674 ], [ 578, 658, 649, 674 ], [ 655, 658, 689, 674 ], [ 695, 658, 731, 674 ], [ 545, 674, 621, 691 ], [ 545, 694, 624, 711 ], [ 545, 711, 636, 728 ], [ 642, 711, 676, 728 ], [ 545, 728, 697, 744 ], [ 771, 630, 788, 647 ], [ 794, 630, 842, 647 ], [ 771, 647, 847, 663 ], [ 771, 664, 811, 680 ], [ 816, 664, 862, 680 ], [ 94, 750, 150, 769 ], [ 156, 750, 232, 769 ], [ 238, 750, 266, 769 ], [ 272, 750, 304, 769 ], [ 310, 750, 343, 769 ], [ 349, 750, 447, 769 ], [ 452, 750, 469, 769 ], [ 161, 766, 237, 786 ], [ 243, 766, 340, 786 ], [ 346, 766, 414, 786 ], [ 420, 766, 464, 786 ], [ 469, 766, 486, 786 ], [ 497, 766, 526, 786 ], [ 161, 783, 230, 802 ], [ 236, 783, 334, 802 ], [ 339, 783, 356, 802 ], [ 362, 783, 436, 802 ], [ 441, 783, 500, 802 ], [ 161, 799, 289, 818 ], [ 294, 799, 328, 818 ], [ 334, 799, 412, 818 ], [ 418, 799, 441, 818 ], [ 447, 799, 508, 818 ], [ 161, 815, 197, 835 ], [ 202, 815, 273, 835 ], [ 278, 815, 314, 835 ], [ 320, 815, 336, 835 ], [ 341, 815, 441, 835 ], [ 161, 832, 288, 851 ], [ 293, 832, 327, 851 ], [ 332, 832, 421, 851 ], [ 426, 832, 480, 851 ], [ 161, 848, 228, 868 ], [ 234, 848, 300, 868 ], [ 305, 848, 366, 868 ], [ 372, 848, 404, 868 ], [ 545, 752, 572, 768 ], [ 578, 752, 630, 768 ], [ 636, 752, 712, 768 ], [ 771, 748, 865, 765 ], [ 771, 765, 817, 782 ] ]
behavior; Technology and industry; Economic development and land use; International travel and commerce; Microbial adaptation and change; and Breakdown of public health measures. There have been other groupings of causative factors proposed related to re-emerging infections and in some instances we do not yet have a clue as to how new agents have appeared in animal and human populations. The problem of emerging infections is well exemplified by the many examples of new and emerging infectious diseases that have impacted upon localized populations and/or geographical areas over the past several decades. Human immunodeficiency virus (HIV)/AIDS, first identified in 1981, portrays the significant impact that an infectious disease can have on the world. Presently HIV/AIDS is the fourth leading cause of death in the world and it remains the leading cause of death in Africa. The economic havoc it has created worldwide is frightening and its impact upon all peoples will remain embedded on mankind for decades. More geographically localized, but still creating worldwide concern, have been the haemorrhagic fevers, Nipah virus, and monkeypox. And more recently sudden acute respiratory syndrome (SARS) exemplifies how the occurrence of a new and dangerous infectious disease can monopolize governmental activities, cause fear and hysteria, have a significant impact on the economy throughout the world and on the freedom of movement of people. We are bold in our attempts to control infectious diseases. We have eradicated one disease (smallpox) and two other diseases are in the final stages of eradication (poliomyelitis and dracunculiasis). These eradication programmes demonstrate how international collaboration and co-operation can significantly benefit the world. However, our goals must be realistic, that is, initiation of an eradication programme must be limited to the few diseases for which this is a valid goal. Control and prevention should be our main
behavior; Technology and industry; Economic development and land use; International travel and commerce; Microbial adaptation and change; and Breakdown of public health measures. There have been other groupings of causative factors proposed related to re-emerging infections and in some instances we do not yet have a clue as to how new agents have appeared in animal and human populations. The problem of emerging infections is well exemplified by the many examples of new and emerging infectious diseases that have impacted upon localized populations and/or geographical areas over the past several decades. Human immunodeficiency virus (HIV)/AIDS, first identified in 1981, portrays the significant impact that an infectious disease can have on the world. Presently HIV/AIDS is the fourth leading cause of death in the world and it remains the leading cause of death in Africa. The economic havoc it has created worldwide is frightening and its impact upon all peoples will remain embedded on mankind for decades. More geographically localized, but still creating worldwide concern, have been the haemorrhagic fevers, Nipah virus, and monkeypox. And more recently sudden acute respiratory syndrome (SARS) exemplifies how the occurrence of a new and dangerous infectious disease can monopolize governmental activities, cause fear and hysteria, have a significant impact on the economy throughout the world and on the freedom of movement of people. We are bold in our attempts to control infectious diseases. We have eradicated one disease (smallpox) and two other diseases are in the final stages of eradication (poliomyelitis and dracunculiasis). These eradication programmes demonstrate how international collaboration and co-operation can significantly benefit the world. However, our goals must be realistic, that is, initiation of an eradication programme must be limited to the few diseases for which this is a valid goal. Control and prevention should be our main
1
[ 0, 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 ]
m3727.docx
task-1432-235
21
[ [ 101, 68, 208, 95 ], [ 216, 68, 353, 95 ], [ 361, 68, 402, 95 ], [ 411, 68, 512, 95 ], [ 520, 68, 636, 95 ], [ 644, 68, 791, 95 ], [ 800, 68, 841, 95 ], [ 849, 68, 899, 95 ], [ 101, 95, 147, 122 ], [ 161, 95, 306, 122 ], [ 321, 95, 386, 122 ], [ 401, 95, 442, 122 ], [ 456, 95, 582, 122 ], [ 597, 95, 710, 122 ], [ 724, 95, 843, 122 ], [ 857, 95, 899, 122 ], [ 101, 121, 189, 148 ], [ 196, 121, 237, 148 ], [ 245, 121, 376, 148 ], [ 383, 121, 407, 148 ], [ 414, 121, 485, 148 ], [ 492, 121, 562, 148 ], [ 569, 121, 683, 148 ], [ 134, 148, 201, 175 ], [ 214, 148, 268, 175 ], [ 281, 148, 334, 175 ], [ 348, 148, 407, 175 ], [ 420, 148, 533, 175 ], [ 547, 148, 571, 175 ], [ 584, 148, 690, 175 ], [ 703, 148, 780, 175 ], [ 794, 148, 898, 175 ], [ 101, 175, 178, 202 ], [ 186, 175, 208, 202 ], [ 216, 175, 355, 202 ], [ 363, 175, 475, 202 ], [ 483, 175, 524, 202 ], [ 532, 175, 554, 202 ], [ 562, 175, 622, 202 ], [ 630, 175, 734, 202 ], [ 742, 175, 776, 202 ], [ 783, 175, 812, 202 ], [ 819, 175, 856, 202 ], [ 864, 175, 898, 202 ], [ 101, 201, 154, 228 ], [ 161, 201, 174, 228 ], [ 181, 201, 229, 228 ], [ 236, 201, 260, 228 ], [ 267, 201, 289, 228 ], [ 296, 201, 345, 228 ], [ 353, 201, 400, 228 ], [ 408, 201, 480, 228 ], [ 487, 201, 541, 228 ], [ 548, 201, 651, 228 ], [ 658, 201, 681, 228 ], [ 688, 201, 766, 228 ], [ 773, 201, 814, 228 ], [ 821, 201, 899, 228 ], [ 101, 228, 241, 255 ], [ 250, 228, 294, 255 ], [ 303, 228, 398, 255 ], [ 407, 228, 430, 255 ], [ 439, 228, 547, 255 ], [ 555, 228, 668, 255 ], [ 677, 228, 696, 255 ], [ 705, 228, 754, 255 ], [ 763, 228, 899, 255 ], [ 101, 255, 129, 282 ], [ 138, 255, 173, 282 ], [ 183, 255, 247, 282 ], [ 256, 255, 363, 282 ], [ 373, 255, 397, 282 ], [ 406, 255, 453, 282 ], [ 463, 255, 504, 282 ], [ 514, 255, 622, 282 ], [ 631, 255, 744, 282 ], [ 753, 255, 846, 282 ], [ 856, 255, 899, 282 ], [ 101, 281, 154, 308 ], [ 164, 281, 268, 308 ], [ 278, 281, 335, 308 ], [ 345, 281, 448, 308 ], [ 458, 281, 591, 308 ], [ 601, 281, 674, 308 ], [ 683, 281, 830, 308 ], [ 840, 281, 898, 308 ], [ 101, 308, 151, 335 ], [ 170, 308, 205, 335 ], [ 224, 308, 270, 335 ], [ 289, 308, 370, 335 ], [ 389, 308, 486, 335 ], [ 506, 308, 589, 335 ], [ 609, 308, 823, 335 ], [ 841, 308, 898, 335 ], [ 101, 335, 252, 362 ], [ 262, 335, 308, 362 ], [ 318, 335, 427, 362 ], [ 437, 335, 459, 362 ], [ 469, 335, 533, 362 ], [ 543, 335, 636, 362 ], [ 646, 335, 681, 362 ], [ 691, 335, 811, 362 ], [ 821, 335, 898, 362 ], [ 101, 361, 143, 388 ], [ 151, 361, 177, 388 ], [ 185, 361, 297, 388 ], [ 304, 361, 386, 388 ], [ 394, 361, 433, 388 ], [ 440, 361, 494, 388 ], [ 501, 361, 530, 388 ], [ 537, 361, 572, 388 ], [ 579, 361, 653, 388 ], [ 660, 361, 767, 388 ], [ 773, 361, 898, 388 ], [ 101, 388, 120, 415 ], [ 130, 388, 165, 415 ], [ 176, 388, 245, 415 ], [ 256, 388, 340, 415 ], [ 350, 388, 413, 415 ], [ 424, 388, 448, 415 ], [ 458, 388, 520, 415 ], [ 530, 388, 552, 415 ], [ 563, 388, 598, 415 ], [ 608, 388, 675, 415 ], [ 685, 388, 726, 415 ], [ 737, 388, 753, 415 ], [ 763, 388, 853, 415 ], [ 864, 388, 899, 415 ], [ 101, 415, 184, 442 ], [ 194, 415, 257, 442 ], [ 267, 415, 290, 442 ], [ 300, 415, 361, 442 ], [ 371, 415, 393, 442 ], [ 403, 415, 482, 442 ], [ 492, 415, 536, 442 ], [ 546, 415, 657, 442 ], [ 666, 415, 734, 442 ], [ 743, 415, 759, 442 ], [ 769, 415, 807, 442 ], [ 816, 415, 898, 442 ], [ 101, 441, 222, 468 ], [ 231, 441, 250, 468 ], [ 259, 441, 386, 468 ], [ 395, 441, 436, 468 ], [ 445, 441, 472, 468 ], [ 481, 441, 558, 468 ], [ 567, 441, 624, 468 ], [ 633, 441, 661, 468 ], [ 670, 441, 757, 468 ], [ 766, 441, 811, 468 ], [ 820, 441, 899, 468 ], [ 101, 468, 218, 495 ], [ 229, 468, 258, 495 ], [ 269, 468, 369, 495 ], [ 381, 468, 414, 495 ], [ 426, 468, 523, 495 ], [ 534, 468, 596, 495 ], [ 608, 468, 777, 495 ], [ 788, 468, 898, 495 ], [ 101, 495, 137, 521 ], [ 151, 495, 194, 521 ], [ 207, 495, 299, 521 ], [ 312, 495, 434, 521 ], [ 448, 495, 545, 521 ], [ 559, 495, 613, 521 ], [ 626, 495, 680, 521 ], [ 694, 495, 729, 521 ], [ 742, 495, 899, 521 ], [ 101, 521, 177, 548 ], [ 193, 521, 262, 548 ], [ 278, 521, 342, 548 ], [ 358, 521, 399, 548 ], [ 414, 521, 556, 548 ], [ 572, 521, 621, 548 ], [ 636, 521, 695, 548 ], [ 710, 521, 803, 548 ], [ 818, 521, 898, 548 ], [ 101, 548, 161, 575 ], [ 171, 548, 295, 575 ], [ 304, 548, 417, 575 ], [ 426, 548, 517, 575 ], [ 527, 548, 660, 575 ], [ 670, 548, 719, 575 ], [ 729, 548, 764, 575 ], [ 774, 548, 899, 575 ], [ 101, 575, 124, 602 ], [ 148, 575, 160, 602 ], [ 184, 575, 231, 602 ], [ 254, 575, 295, 602 ], [ 319, 575, 436, 602 ], [ 460, 575, 572, 602 ], [ 595, 575, 678, 602 ], [ 701, 575, 741, 602 ], [ 764, 575, 899, 602 ], [ 101, 601, 257, 628 ], [ 269, 601, 380, 628 ], [ 392, 601, 455, 628 ], [ 467, 601, 512, 628 ], [ 524, 601, 565, 628 ], [ 577, 601, 675, 628 ], [ 688, 601, 741, 628 ], [ 753, 601, 766, 628 ], [ 778, 601, 899, 628 ], [ 101, 628, 178, 655 ], [ 188, 628, 216, 655 ], [ 226, 628, 260, 655 ], [ 270, 628, 374, 655 ], [ 383, 628, 508, 655 ], [ 518, 628, 553, 655 ], [ 562, 628, 628, 655 ], [ 638, 628, 679, 655 ], [ 689, 628, 717, 655 ], [ 727, 628, 761, 655 ], [ 771, 628, 865, 655 ], [ 875, 628, 899, 655 ], [ 101, 655, 221, 682 ], [ 228, 655, 252, 682 ], [ 259, 655, 342, 682 ], [ 134, 681, 174, 708 ], [ 187, 681, 222, 708 ], [ 234, 681, 285, 708 ], [ 298, 681, 320, 708 ], [ 333, 681, 371, 708 ], [ 383, 681, 480, 708 ], [ 493, 681, 515, 708 ], [ 528, 681, 608, 708 ], [ 621, 681, 733, 708 ], [ 746, 681, 847, 708 ], [ 859, 681, 899, 708 ], [ 101, 708, 154, 735 ], [ 163, 708, 280, 735 ], [ 289, 708, 330, 735 ], [ 339, 708, 421, 735 ], [ 430, 708, 554, 735 ], [ 563, 708, 604, 735 ], [ 613, 708, 655, 735 ], [ 664, 708, 722, 735 ], [ 731, 708, 824, 735 ], [ 833, 708, 868, 735 ], [ 877, 708, 899, 735 ], [ 101, 735, 136, 762 ], [ 151, 735, 203, 762 ], [ 219, 735, 289, 762 ], [ 304, 735, 328, 762 ], [ 344, 735, 471, 762 ], [ 486, 735, 646, 762 ], [ 662, 735, 703, 762 ], [ 719, 735, 898, 762 ], [ 101, 761, 169, 788 ], [ 194, 761, 321, 788 ], [ 346, 761, 489, 788 ], [ 515, 761, 654, 788 ], [ 680, 761, 729, 788 ], [ 755, 761, 898, 788 ], [ 101, 788, 251, 815 ], [ 264, 788, 305, 815 ], [ 319, 788, 463, 815 ], [ 476, 788, 516, 815 ], [ 529, 788, 672, 815 ], [ 685, 788, 763, 815 ], [ 777, 788, 812, 815 ], [ 825, 788, 899, 815 ], [ 101, 815, 212, 841 ], [ 231, 815, 269, 841 ], [ 287, 815, 347, 841 ], [ 366, 815, 422, 841 ], [ 440, 815, 467, 841 ], [ 486, 815, 583, 841 ], [ 602, 815, 644, 841 ], [ 663, 815, 689, 841 ], [ 708, 815, 811, 841 ], [ 830, 815, 853, 841 ], [ 872, 815, 899, 841 ], [ 101, 841, 227, 868 ], [ 235, 841, 367, 868 ], [ 375, 841, 430, 868 ], [ 439, 841, 466, 868 ], [ 473, 841, 554, 868 ], [ 562, 841, 585, 868 ], [ 593, 841, 627, 868 ], [ 635, 841, 678, 868 ], [ 686, 841, 779, 868 ], [ 788, 841, 821, 868 ], [ 829, 841, 899, 868 ], [ 101, 868, 142, 895 ], [ 157, 868, 176, 895 ], [ 191, 868, 203, 895 ], [ 218, 868, 275, 895 ], [ 290, 868, 346, 895 ], [ 361, 868, 448, 895 ], [ 463, 868, 504, 895 ], [ 519, 868, 641, 895 ], [ 656, 868, 732, 895 ], [ 747, 868, 774, 895 ], [ 789, 868, 827, 895 ], [ 841, 868, 899, 895 ] ]
[ [ 101, 68, 208, 95 ], [ 216, 68, 353, 95 ], [ 361, 68, 402, 95 ], [ 411, 68, 512, 95 ], [ 520, 68, 636, 95 ], [ 644, 68, 791, 95 ], [ 800, 68, 841, 95 ], [ 849, 68, 899, 95 ], [ 101, 95, 147, 122 ], [ 161, 95, 306, 122 ], [ 321, 95, 386, 122 ], [ 401, 95, 442, 122 ], [ 456, 95, 582, 122 ], [ 597, 95, 710, 122 ], [ 724, 95, 843, 122 ], [ 857, 95, 899, 122 ], [ 101, 121, 189, 148 ], [ 196, 121, 237, 148 ], [ 245, 121, 376, 148 ], [ 383, 121, 407, 148 ], [ 414, 121, 485, 148 ], [ 492, 121, 562, 148 ], [ 569, 121, 683, 148 ], [ 134, 148, 201, 175 ], [ 214, 148, 268, 175 ], [ 281, 148, 334, 175 ], [ 348, 148, 407, 175 ], [ 420, 148, 533, 175 ], [ 547, 148, 571, 175 ], [ 584, 148, 690, 175 ], [ 703, 148, 780, 175 ], [ 794, 148, 898, 175 ], [ 101, 175, 178, 202 ], [ 186, 175, 208, 202 ], [ 216, 175, 355, 202 ], [ 363, 175, 475, 202 ], [ 483, 175, 524, 202 ], [ 532, 175, 554, 202 ], [ 562, 175, 622, 202 ], [ 630, 175, 734, 202 ], [ 742, 175, 776, 202 ], [ 783, 175, 812, 202 ], [ 819, 175, 856, 202 ], [ 864, 175, 898, 202 ], [ 101, 201, 154, 228 ], [ 161, 201, 174, 228 ], [ 181, 201, 229, 228 ], [ 236, 201, 260, 228 ], [ 267, 201, 289, 228 ], [ 296, 201, 345, 228 ], [ 353, 201, 400, 228 ], [ 408, 201, 480, 228 ], [ 487, 201, 541, 228 ], [ 548, 201, 651, 228 ], [ 658, 201, 681, 228 ], [ 688, 201, 766, 228 ], [ 773, 201, 814, 228 ], [ 821, 201, 899, 228 ], [ 101, 228, 241, 255 ], [ 250, 228, 294, 255 ], [ 303, 228, 398, 255 ], [ 407, 228, 430, 255 ], [ 439, 228, 547, 255 ], [ 555, 228, 668, 255 ], [ 677, 228, 696, 255 ], [ 705, 228, 754, 255 ], [ 763, 228, 899, 255 ], [ 101, 255, 129, 282 ], [ 138, 255, 173, 282 ], [ 183, 255, 247, 282 ], [ 256, 255, 363, 282 ], [ 373, 255, 397, 282 ], [ 406, 255, 453, 282 ], [ 463, 255, 504, 282 ], [ 514, 255, 622, 282 ], [ 631, 255, 744, 282 ], [ 753, 255, 846, 282 ], [ 856, 255, 899, 282 ], [ 101, 281, 154, 308 ], [ 164, 281, 268, 308 ], [ 278, 281, 335, 308 ], [ 345, 281, 448, 308 ], [ 458, 281, 591, 308 ], [ 601, 281, 674, 308 ], [ 683, 281, 830, 308 ], [ 840, 281, 898, 308 ], [ 101, 308, 151, 335 ], [ 170, 308, 205, 335 ], [ 224, 308, 270, 335 ], [ 289, 308, 370, 335 ], [ 389, 308, 486, 335 ], [ 506, 308, 589, 335 ], [ 609, 308, 823, 335 ], [ 841, 308, 898, 335 ], [ 101, 335, 252, 362 ], [ 262, 335, 308, 362 ], [ 318, 335, 427, 362 ], [ 437, 335, 459, 362 ], [ 469, 335, 533, 362 ], [ 543, 335, 636, 362 ], [ 646, 335, 681, 362 ], [ 691, 335, 811, 362 ], [ 821, 335, 898, 362 ], [ 101, 361, 143, 388 ], [ 151, 361, 177, 388 ], [ 185, 361, 297, 388 ], [ 304, 361, 386, 388 ], [ 394, 361, 433, 388 ], [ 440, 361, 494, 388 ], [ 501, 361, 530, 388 ], [ 537, 361, 572, 388 ], [ 579, 361, 653, 388 ], [ 660, 361, 767, 388 ], [ 773, 361, 898, 388 ], [ 101, 388, 120, 415 ], [ 130, 388, 165, 415 ], [ 176, 388, 245, 415 ], [ 256, 388, 340, 415 ], [ 350, 388, 413, 415 ], [ 424, 388, 448, 415 ], [ 458, 388, 520, 415 ], [ 530, 388, 552, 415 ], [ 563, 388, 598, 415 ], [ 608, 388, 675, 415 ], [ 685, 388, 726, 415 ], [ 737, 388, 753, 415 ], [ 763, 388, 853, 415 ], [ 864, 388, 899, 415 ], [ 101, 415, 184, 442 ], [ 194, 415, 257, 442 ], [ 267, 415, 290, 442 ], [ 300, 415, 361, 442 ], [ 371, 415, 393, 442 ], [ 403, 415, 482, 442 ], [ 492, 415, 536, 442 ], [ 546, 415, 657, 442 ], [ 666, 415, 734, 442 ], [ 743, 415, 759, 442 ], [ 769, 415, 807, 442 ], [ 816, 415, 898, 442 ], [ 101, 441, 222, 468 ], [ 231, 441, 250, 468 ], [ 259, 441, 386, 468 ], [ 395, 441, 436, 468 ], [ 445, 441, 472, 468 ], [ 481, 441, 558, 468 ], [ 567, 441, 624, 468 ], [ 633, 441, 661, 468 ], [ 670, 441, 757, 468 ], [ 766, 441, 811, 468 ], [ 820, 441, 899, 468 ], [ 101, 468, 218, 495 ], [ 229, 468, 258, 495 ], [ 269, 468, 369, 495 ], [ 381, 468, 414, 495 ], [ 426, 468, 523, 495 ], [ 534, 468, 596, 495 ], [ 608, 468, 777, 495 ], [ 788, 468, 898, 495 ], [ 101, 495, 137, 521 ], [ 151, 495, 194, 521 ], [ 207, 495, 299, 521 ], [ 312, 495, 434, 521 ], [ 448, 495, 545, 521 ], [ 559, 495, 613, 521 ], [ 626, 495, 680, 521 ], [ 694, 495, 729, 521 ], [ 742, 495, 899, 521 ], [ 101, 521, 177, 548 ], [ 193, 521, 262, 548 ], [ 278, 521, 342, 548 ], [ 358, 521, 399, 548 ], [ 414, 521, 556, 548 ], [ 572, 521, 621, 548 ], [ 636, 521, 695, 548 ], [ 710, 521, 803, 548 ], [ 818, 521, 898, 548 ], [ 101, 548, 161, 575 ], [ 171, 548, 295, 575 ], [ 304, 548, 417, 575 ], [ 426, 548, 517, 575 ], [ 527, 548, 660, 575 ], [ 670, 548, 719, 575 ], [ 729, 548, 764, 575 ], [ 774, 548, 899, 575 ], [ 101, 575, 124, 602 ], [ 148, 575, 160, 602 ], [ 184, 575, 231, 602 ], [ 254, 575, 295, 602 ], [ 319, 575, 436, 602 ], [ 460, 575, 572, 602 ], [ 595, 575, 678, 602 ], [ 701, 575, 741, 602 ], [ 764, 575, 899, 602 ], [ 101, 601, 257, 628 ], [ 269, 601, 380, 628 ], [ 392, 601, 455, 628 ], [ 467, 601, 512, 628 ], [ 524, 601, 565, 628 ], [ 577, 601, 675, 628 ], [ 688, 601, 741, 628 ], [ 753, 601, 766, 628 ], [ 778, 601, 899, 628 ], [ 101, 628, 178, 655 ], [ 188, 628, 216, 655 ], [ 226, 628, 260, 655 ], [ 270, 628, 374, 655 ], [ 383, 628, 508, 655 ], [ 518, 628, 553, 655 ], [ 562, 628, 628, 655 ], [ 638, 628, 679, 655 ], [ 689, 628, 717, 655 ], [ 727, 628, 761, 655 ], [ 771, 628, 865, 655 ], [ 875, 628, 899, 655 ], [ 101, 655, 221, 682 ], [ 228, 655, 252, 682 ], [ 259, 655, 342, 682 ], [ 134, 681, 174, 708 ], [ 187, 681, 222, 708 ], [ 234, 681, 285, 708 ], [ 298, 681, 320, 708 ], [ 333, 681, 371, 708 ], [ 383, 681, 480, 708 ], [ 493, 681, 515, 708 ], [ 528, 681, 608, 708 ], [ 621, 681, 733, 708 ], [ 746, 681, 847, 708 ], [ 859, 681, 899, 708 ], [ 101, 708, 154, 735 ], [ 163, 708, 280, 735 ], [ 289, 708, 330, 735 ], [ 339, 708, 421, 735 ], [ 430, 708, 554, 735 ], [ 563, 708, 604, 735 ], [ 613, 708, 655, 735 ], [ 664, 708, 722, 735 ], [ 731, 708, 824, 735 ], [ 833, 708, 868, 735 ], [ 877, 708, 899, 735 ], [ 101, 735, 136, 762 ], [ 151, 735, 203, 762 ], [ 219, 735, 289, 762 ], [ 304, 735, 328, 762 ], [ 344, 735, 471, 762 ], [ 486, 735, 646, 762 ], [ 662, 735, 703, 762 ], [ 719, 735, 898, 762 ], [ 101, 761, 169, 788 ], [ 194, 761, 321, 788 ], [ 346, 761, 489, 788 ], [ 515, 761, 654, 788 ], [ 680, 761, 729, 788 ], [ 755, 761, 898, 788 ], [ 101, 788, 251, 815 ], [ 264, 788, 305, 815 ], [ 319, 788, 463, 815 ], [ 476, 788, 516, 815 ], [ 529, 788, 672, 815 ], [ 685, 788, 763, 815 ], [ 777, 788, 812, 815 ], [ 825, 788, 899, 815 ], [ 101, 815, 212, 841 ], [ 231, 815, 269, 841 ], [ 287, 815, 347, 841 ], [ 366, 815, 422, 841 ], [ 440, 815, 467, 841 ], [ 486, 815, 583, 841 ], [ 602, 815, 644, 841 ], [ 663, 815, 689, 841 ], [ 708, 815, 811, 841 ], [ 830, 815, 853, 841 ], [ 872, 815, 899, 841 ], [ 101, 841, 227, 868 ], [ 235, 841, 367, 868 ], [ 375, 841, 430, 868 ], [ 439, 841, 466, 868 ], [ 473, 841, 554, 868 ], [ 562, 841, 585, 868 ], [ 593, 841, 627, 868 ], [ 635, 841, 678, 868 ], [ 686, 841, 779, 868 ], [ 788, 841, 821, 868 ], [ 829, 841, 899, 868 ], [ 101, 868, 142, 895 ], [ 157, 868, 176, 895 ], [ 191, 868, 203, 895 ], [ 218, 868, 275, 895 ], [ 290, 868, 346, 895 ], [ 361, 868, 448, 895 ], [ 463, 868, 504, 895 ], [ 519, 868, 641, 895 ], [ 656, 868, 732, 895 ], [ 747, 868, 774, 895 ], [ 789, 868, 827, 895 ], [ 841, 868, 899, 895 ] ]
Facilitator hands out the Advice Letter Worksheet Writing Youth are allowed fifteen minutes to write. Facilitator moves from group to group, giving (15 min) advice. Reading/clearing up of Facilitator asks several youth to read their letters, and clears up any misconceptions in misconceptions the letters. (3 min) Give each reader a round of applause. CELEBRATE (5 min) Youth celebrate their Cookie Party! learning. Handout cookies (or other treats) and congratulate youth on a job well done. Developed by Thrive Foundation for Youth. Creative Commons Attribution-Noncommerial-Share Alike 3.0. U.S. License. 2010. This document can be shared and adapted by users for educational, non-commercial purposes.
Writing (15 min) Reading/clearing up of misconceptions (3 min) Facilitator hands out the Advice Letter Worksheet Youth are allowed fifteen minutes to write. Facilitator moves from group to group, giving advice. Facilitator asks several youth to read their letters, and clears up any misconceptions in the letters. Give each reader a round of applause. CELEBRATE (5 min) Youth celebrate their learning. Cookie Party! Handout cookies (or other treats) and congratulate youth on a job well done. Developed by Thrive Foundation for Youth. Creative Commons Attribution-Noncommerial-Share Alike 3.0. U.S. License. 2010. This document can be shared and adapted by users for educational, non-commercial purposes.
0.840146
[ 7, 22, 23, 25, 26, 27, 42, 45, 46, 0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 62, 60, 61, 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 ]
m3_what_the_growth_mindset_means_to_you.docx
task-1432-341
4
[ [ 385, 79, 453, 106 ], [ 457, 79, 496, 106 ], [ 500, 79, 521, 106 ], [ 525, 79, 545, 106 ], [ 548, 79, 593, 106 ], [ 597, 79, 637, 106 ], [ 641, 79, 712, 106 ], [ 221, 101, 269, 127 ], [ 385, 101, 426, 129 ], [ 429, 101, 450, 129 ], [ 454, 101, 504, 129 ], [ 508, 101, 549, 129 ], [ 553, 101, 604, 129 ], [ 608, 101, 620, 129 ], [ 624, 101, 661, 129 ], [ 669, 101, 731, 127 ], [ 735, 101, 775, 127 ], [ 779, 101, 808, 127 ], [ 812, 101, 847, 127 ], [ 851, 101, 863, 127 ], [ 867, 101, 906, 127 ], [ 909, 101, 948, 127 ], [ 221, 124, 242, 150 ], [ 245, 124, 274, 150 ], [ 385, 124, 428, 150 ], [ 221, 169, 325, 195 ], [ 329, 169, 344, 195 ], [ 347, 169, 360, 195 ], [ 385, 169, 453, 196 ], [ 457, 169, 485, 196 ], [ 489, 169, 534, 196 ], [ 538, 169, 575, 196 ], [ 579, 169, 591, 196 ], [ 595, 169, 625, 196 ], [ 628, 169, 659, 196 ], [ 663, 169, 707, 196 ], [ 711, 169, 736, 196 ], [ 740, 169, 777, 196 ], [ 781, 169, 798, 196 ], [ 802, 169, 826, 196 ], [ 829, 169, 928, 196 ], [ 931, 169, 943, 195 ], [ 221, 191, 316, 218 ], [ 385, 191, 404, 218 ], [ 407, 191, 448, 218 ], [ 221, 214, 234, 240 ], [ 238, 214, 266, 240 ], [ 385, 237, 415, 263 ], [ 418, 237, 446, 263 ], [ 450, 237, 488, 263 ], [ 492, 237, 498, 263 ], [ 502, 237, 537, 263 ], [ 541, 237, 554, 263 ], [ 558, 237, 614, 263 ], [ 85, 283, 179, 310 ], [ 85, 305, 98, 331 ], [ 101, 305, 130, 331 ], [ 221, 305, 259, 331 ], [ 263, 305, 318, 331 ], [ 321, 305, 349, 331 ], [ 385, 306, 431, 333 ], [ 434, 306, 476, 333 ], [ 221, 328, 275, 354 ], [ 385, 328, 437, 354 ], [ 441, 328, 487, 354 ], [ 491, 328, 509, 354 ], [ 513, 328, 544, 354 ], [ 548, 328, 585, 354 ], [ 589, 328, 611, 354 ], [ 615, 328, 690, 354 ], [ 694, 328, 728, 354 ], [ 732, 328, 747, 354 ], [ 751, 328, 758, 354 ], [ 761, 328, 781, 354 ], [ 784, 328, 811, 354 ], [ 814, 328, 848, 354 ], [ 87, 753, 142, 775 ], [ 145, 753, 158, 775 ], [ 161, 753, 194, 775 ], [ 197, 753, 255, 775 ], [ 258, 753, 273, 775 ], [ 276, 753, 311, 775 ], [ 314, 753, 357, 775 ], [ 360, 753, 412, 775 ], [ 415, 753, 584, 775 ], [ 587, 753, 615, 775 ], [ 618, 753, 637, 775 ], [ 641, 753, 663, 775 ], [ 666, 753, 708, 775 ], [ 712, 753, 740, 775 ], [ 743, 753, 766, 775 ], [ 769, 753, 819, 775 ], [ 822, 753, 839, 775 ], [ 843, 753, 855, 775 ], [ 858, 753, 891, 775 ], [ 894, 753, 912, 775 ], [ 348, 772, 387, 793 ], [ 390, 772, 403, 793 ], [ 406, 772, 432, 793 ], [ 435, 772, 450, 793 ], [ 453, 772, 514, 793 ], [ 517, 772, 600, 793 ], [ 603, 772, 651, 793 ] ]
[ [ 221, 101, 269, 127 ], [ 221, 124, 242, 150 ], [ 245, 124, 274, 150 ], [ 221, 169, 325, 195 ], [ 329, 169, 344, 195 ], [ 347, 169, 360, 195 ], [ 221, 191, 316, 218 ], [ 221, 214, 234, 240 ], [ 238, 214, 266, 240 ], [ 385, 79, 453, 106 ], [ 457, 79, 496, 106 ], [ 500, 79, 521, 106 ], [ 525, 79, 545, 106 ], [ 548, 79, 593, 106 ], [ 597, 79, 637, 106 ], [ 641, 79, 712, 106 ], [ 385, 101, 426, 129 ], [ 429, 101, 450, 129 ], [ 454, 101, 504, 129 ], [ 508, 101, 549, 129 ], [ 553, 101, 604, 129 ], [ 608, 101, 620, 129 ], [ 624, 101, 661, 129 ], [ 669, 101, 731, 127 ], [ 735, 101, 775, 127 ], [ 779, 101, 808, 127 ], [ 812, 101, 847, 127 ], [ 851, 101, 863, 127 ], [ 867, 101, 906, 127 ], [ 909, 101, 948, 127 ], [ 385, 124, 428, 150 ], [ 385, 169, 453, 196 ], [ 457, 169, 485, 196 ], [ 489, 169, 534, 196 ], [ 538, 169, 575, 196 ], [ 579, 169, 591, 196 ], [ 595, 169, 625, 196 ], [ 628, 169, 659, 196 ], [ 663, 169, 707, 196 ], [ 711, 169, 736, 196 ], [ 740, 169, 777, 196 ], [ 781, 169, 798, 196 ], [ 802, 169, 826, 196 ], [ 829, 169, 928, 196 ], [ 931, 169, 943, 195 ], [ 385, 191, 404, 218 ], [ 407, 191, 448, 218 ], [ 385, 237, 415, 263 ], [ 418, 237, 446, 263 ], [ 450, 237, 488, 263 ], [ 492, 237, 498, 263 ], [ 502, 237, 537, 263 ], [ 541, 237, 554, 263 ], [ 558, 237, 614, 263 ], [ 85, 283, 179, 310 ], [ 85, 305, 98, 331 ], [ 101, 305, 130, 331 ], [ 221, 305, 259, 331 ], [ 263, 305, 318, 331 ], [ 321, 305, 349, 331 ], [ 221, 328, 275, 354 ], [ 385, 306, 431, 333 ], [ 434, 306, 476, 333 ], [ 385, 328, 437, 354 ], [ 441, 328, 487, 354 ], [ 491, 328, 509, 354 ], [ 513, 328, 544, 354 ], [ 548, 328, 585, 354 ], [ 589, 328, 611, 354 ], [ 615, 328, 690, 354 ], [ 694, 328, 728, 354 ], [ 732, 328, 747, 354 ], [ 751, 328, 758, 354 ], [ 761, 328, 781, 354 ], [ 784, 328, 811, 354 ], [ 814, 328, 848, 354 ], [ 87, 753, 142, 775 ], [ 145, 753, 158, 775 ], [ 161, 753, 194, 775 ], [ 197, 753, 255, 775 ], [ 258, 753, 273, 775 ], [ 276, 753, 311, 775 ], [ 314, 753, 357, 775 ], [ 360, 753, 412, 775 ], [ 415, 753, 584, 775 ], [ 587, 753, 615, 775 ], [ 618, 753, 637, 775 ], [ 641, 753, 663, 775 ], [ 666, 753, 708, 775 ], [ 712, 753, 740, 775 ], [ 743, 753, 766, 775 ], [ 769, 753, 819, 775 ], [ 822, 753, 839, 775 ], [ 843, 753, 855, 775 ], [ 858, 753, 891, 775 ], [ 894, 753, 912, 775 ], [ 348, 772, 387, 793 ], [ 390, 772, 403, 793 ], [ 406, 772, 432, 793 ], [ 435, 772, 450, 793 ], [ 453, 772, 514, 793 ], [ 517, 772, 600, 793 ], [ 603, 772, 651, 793 ] ]
there. “Advanced.” Deviation 0 -1 0 Though some of the errors in work shown are below the overall volume of Identified Issues N/A errors is not significant N/A enough to place this response in the “Below Proficient” category. Calibration Training-Student Sample #2 Anchored Advanced Performance Level Panelist Panelist 1 Panelist 2 Panelist 3 Performance Level Advanced Advanced Advanced Assigned Very few errors in the SR and The overall score and student’s The work shown CR sections. The one incorrect the quality of work shown is Performance Level is easy to follow CR answer was off by less higher than what I have seen Rationale and mostly than 1 degree, indicating a from most of the 9th graders I correct. minor miscalculation. have worked with. Deviation 0 0 0 Identified Issues N/A N/A N/A Calibration Training-Student Sample #3 Anchored Below Proficient Performance Level Panelist Panelist 1 Panelist 2 Panelist 3 Performance Level Below Proficient Below Proficient Below Proficient Assigned Even if the CR answers Student did not follow The student missed Performance Level were correct, there is directions for many CR items. and/or skipped well Rationale still little to no work Most answers are labeled with over half of the items shown to justify them. incorrect units of measure. on the assessment. Deviation 0 0 0 Identified Issues N/A N/A N/A Build Phase-Meeting 2 Meeting Date: May 8, 2014 Panelists/Qualifications: P. Lopez (District Department Chair), D. Freeman (High School Instructional Coach), N. Bryant (High School Instructional Coach) Subject/Grade Level of Assessment/Task: Mathematics Grade 9 End of Course (EOC) Exam Performance Levels and Descriptors-Draft Set (from Meeting 1) Advanced Proficient Below Proficient Students at this level consistently Students at this level frequently, Students at this level inconsistently, and effectively demonstrate accurately, and satisfactorily inadequately, and partially
“Advanced.” there. Deviation 0 -1 0 Identified Issues N/A Though some of the errors in work shown are below the overall volume of errors is not significant enough to place this response in the “Below Proficient” category. N/A Calibration Training-Student Sample #2 Anchored Performance Level Advanced Panelist Panelist 1 Panelist 2 Panelist 3 Performance Level Assigned Advanced Advanced Advanced Performance Level Rationale The work shown is easy to follow and mostly correct. Very few errors in the SR and CR sections. The one incorrect CR answer was off by less than 1 degree, indicating a minor miscalculation. The student’s overall score and the quality of work shown is higher than what I have seen from most of the 9th graders I have worked with. Deviation 0 0 0 Identified Issues N/A N/A N/A Calibration Training-Student Sample #3 Anchored Performance Level Below Proficient Panelist Panelist 1 Panelist 2 Panelist 3 Performance Level Assigned Below Proficient Below Proficient Below Proficient Performance Level Rationale Even if the CR answers were correct, there is still little to no work shown to justify them. Student did not follow directions for many CR items. Most answers are labeled with incorrect units of measure. The student missed and/or skipped well over half of the items on the assessment. Deviation 0 0 0 Identified Issues N/A N/A N/A Build Phase-Meeting 2 Meeting Date: May 8, 2014 Panelists/Qualifications: P. Lopez (District Department Chair), D. Freeman (High School Instructional Coach), N. Bryant (High School Instructional Coach) Subject/Grade Level of Assessment/Task: Mathematics Grade 9 End of Course (EOC) Exam Performance Levels and Descriptors-Draft Set (from Meeting 1) Advanced Proficient Below Proficient Students at this level consistently and effectively demonstrate Students at this level frequently, accurately, and satisfactorily Students at this level inconsistently, inadequately, and partially
0.742346
[ 1, 0, 2, 3, 4, 5, 20, 21, 22, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 27, 38, 39, 40, 41, 42, 44, 45, 43, 46, 47, 48, 49, 50, 51, 52, 53, 54, 58, 55, 56, 57, 85, 86, 103, 71, 72, 73, 87, 88, 89, 90, 104, 105, 118, 59, 60, 61, 62, 63, 64, 65, 74, 75, 76, 77, 78, 91, 92, 93, 94, 95, 96, 106, 107, 108, 109, 110, 119, 120, 66, 70, 67, 68, 69, 79, 80, 81, 82, 83, 84, 97, 98, 99, 100, 101, 102, 111, 112, 113, 114, 115, 116, 117, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 140, 141, 138, 139, 142, 143, 144, 145, 146, 147, 148, 149, 150, 157, 151, 152, 153, 154, 155, 156, 170, 171, 184, 158, 159, 160, 161, 162, 172, 173, 174, 175, 185, 186, 187, 188, 189, 200, 201, 202, 203, 163, 164, 165, 166, 176, 177, 178, 179, 180, 190, 191, 192, 193, 194, 204, 205, 206, 207, 167, 168, 169, 181, 182, 183, 195, 196, 197, 198, 199, 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, 285, 286, 287, 275, 276, 277, 278, 279, 288, 289, 290, 280, 281, 282, 283, 284, 291, 292, 293 ]
M4.4_Handouts.docx
task-1432-383
18
[ [ 700, 90, 737, 106 ], [ 308, 91, 395, 105 ], [ 117, 104, 198, 125 ], [ 381, 107, 389, 122 ], [ 574, 107, 587, 122 ], [ 778, 107, 786, 122 ], [ 479, 124, 529, 139 ], [ 533, 124, 567, 139 ], [ 571, 124, 584, 139 ], [ 588, 124, 608, 139 ], [ 612, 124, 652, 139 ], [ 656, 124, 669, 139 ], [ 479, 138, 512, 154 ], [ 516, 138, 557, 154 ], [ 562, 138, 583, 154 ], [ 587, 138, 627, 154 ], [ 518, 153, 538, 168 ], [ 542, 153, 588, 168 ], [ 593, 153, 640, 168 ], [ 644, 153, 657, 168 ], [ 117, 164, 199, 185 ], [ 204, 164, 254, 185 ], [ 372, 167, 397, 183 ], [ 479, 167, 520, 183 ], [ 524, 167, 535, 183 ], [ 539, 167, 560, 183 ], [ 564, 167, 633, 183 ], [ 769, 167, 795, 183 ], [ 479, 182, 527, 197 ], [ 531, 182, 544, 197 ], [ 548, 182, 583, 197 ], [ 588, 182, 611, 197 ], [ 615, 182, 673, 197 ], [ 479, 196, 492, 212 ], [ 496, 196, 516, 212 ], [ 520, 197, 570, 211 ], [ 574, 197, 648, 211 ], [ 479, 211, 540, 226 ], [ 321, 326, 418, 347 ], [ 423, 326, 569, 347 ], [ 574, 326, 636, 347 ], [ 641, 326, 660, 347 ], [ 117, 344, 200, 365 ], [ 308, 355, 373, 371 ], [ 117, 361, 226, 382 ], [ 231, 361, 277, 382 ], [ 117, 380, 183, 400 ], [ 322, 380, 388, 400 ], [ 393, 380, 403, 400 ], [ 496, 380, 562, 400 ], [ 567, 380, 577, 400 ], [ 719, 380, 785, 400 ], [ 790, 380, 800, 400 ], [ 117, 398, 226, 419 ], [ 231, 398, 277, 419 ], [ 330, 409, 395, 424 ], [ 504, 409, 569, 424 ], [ 728, 409, 792, 424 ], [ 117, 415, 192, 436 ], [ 435, 434, 466, 450 ], [ 470, 434, 492, 450 ], [ 496, 434, 537, 450 ], [ 541, 434, 554, 450 ], [ 558, 434, 578, 450 ], [ 582, 434, 601, 450 ], [ 605, 434, 629, 450 ], [ 655, 434, 680, 450 ], [ 747, 434, 794, 450 ], [ 798, 434, 833, 450 ], [ 837, 434, 862, 450 ], [ 684, 435, 743, 449 ], [ 308, 442, 333, 457 ], [ 337, 442, 369, 457 ], [ 374, 442, 415, 457 ], [ 435, 449, 456, 464 ], [ 460, 449, 516, 464 ], [ 521, 449, 545, 464 ], [ 549, 449, 573, 464 ], [ 577, 449, 637, 464 ], [ 655, 449, 675, 464 ], [ 680, 449, 725, 464 ], [ 729, 449, 742, 464 ], [ 746, 449, 779, 464 ], [ 783, 449, 824, 464 ], [ 829, 449, 840, 464 ], [ 117, 452, 226, 473 ], [ 231, 452, 277, 473 ], [ 308, 456, 319, 471 ], [ 323, 456, 352, 471 ], [ 356, 456, 369, 471 ], [ 373, 456, 414, 471 ], [ 435, 463, 456, 479 ], [ 460, 463, 507, 479 ], [ 511, 463, 536, 479 ], [ 541, 463, 558, 479 ], [ 562, 463, 577, 479 ], [ 582, 463, 606, 479 ], [ 655, 463, 698, 479 ], [ 702, 463, 731, 479 ], [ 735, 463, 767, 479 ], [ 771, 463, 777, 479 ], [ 781, 463, 812, 479 ], [ 816, 463, 845, 479 ], [ 117, 469, 198, 490 ], [ 308, 471, 333, 486 ], [ 337, 471, 380, 486 ], [ 435, 478, 464, 493 ], [ 468, 478, 476, 493 ], [ 480, 478, 529, 493 ], [ 533, 478, 599, 493 ], [ 603, 478, 611, 493 ], [ 655, 478, 686, 493 ], [ 690, 478, 721, 493 ], [ 725, 478, 738, 493 ], [ 742, 478, 762, 493 ], [ 766, 478, 787, 493 ], [ 791, 478, 842, 493 ], [ 846, 478, 852, 493 ], [ 308, 485, 359, 501 ], [ 435, 492, 474, 508 ], [ 478, 492, 578, 508 ], [ 655, 492, 686, 508 ], [ 691, 492, 739, 508 ], [ 743, 492, 775, 508 ], [ 117, 506, 198, 527 ], [ 359, 509, 367, 524 ], [ 532, 509, 540, 524 ], [ 756, 509, 764, 524 ], [ 117, 524, 199, 545 ], [ 204, 524, 254, 545 ], [ 350, 527, 375, 543 ], [ 524, 527, 549, 543 ], [ 747, 527, 772, 543 ], [ 321, 542, 418, 563 ], [ 423, 542, 569, 563 ], [ 574, 542, 636, 563 ], [ 641, 542, 660, 563 ], [ 117, 560, 200, 581 ], [ 308, 572, 349, 587 ], [ 353, 572, 418, 587 ], [ 117, 578, 226, 599 ], [ 231, 578, 277, 599 ], [ 117, 596, 183, 617 ], [ 348, 596, 414, 617 ], [ 419, 596, 429, 617 ], [ 547, 596, 613, 617 ], [ 618, 596, 628, 617 ], [ 745, 596, 811, 617 ], [ 816, 596, 826, 617 ], [ 117, 614, 226, 635 ], [ 231, 614, 277, 635 ], [ 333, 626, 374, 641 ], [ 378, 626, 443, 641 ], [ 533, 626, 573, 641 ], [ 577, 626, 643, 641 ], [ 730, 626, 771, 641 ], [ 775, 626, 841, 641 ], [ 117, 631, 192, 652 ], [ 308, 651, 341, 666 ], [ 345, 651, 354, 666 ], [ 358, 651, 378, 666 ], [ 382, 651, 403, 666 ], [ 407, 651, 461, 666 ], [ 486, 651, 535, 666 ], [ 539, 651, 560, 666 ], [ 565, 651, 585, 666 ], [ 589, 651, 630, 666 ], [ 707, 651, 731, 666 ], [ 735, 651, 783, 666 ], [ 787, 651, 831, 666 ], [ 117, 661, 226, 682 ], [ 231, 661, 277, 682 ], [ 308, 665, 340, 681 ], [ 344, 665, 395, 681 ], [ 399, 665, 433, 681 ], [ 437, 665, 448, 681 ], [ 486, 665, 552, 681 ], [ 556, 665, 575, 681 ], [ 579, 665, 614, 681 ], [ 618, 665, 639, 681 ], [ 643, 665, 682, 681 ], [ 707, 665, 751, 681 ], [ 755, 665, 805, 681 ], [ 809, 665, 836, 681 ], [ 117, 679, 198, 700 ], [ 308, 680, 333, 695 ], [ 337, 680, 367, 695 ], [ 371, 680, 383, 695 ], [ 388, 680, 404, 695 ], [ 408, 680, 441, 695 ], [ 486, 680, 519, 695 ], [ 523, 680, 576, 695 ], [ 581, 680, 602, 695 ], [ 606, 680, 655, 695 ], [ 659, 680, 687, 695 ], [ 707, 680, 736, 695 ], [ 740, 680, 765, 695 ], [ 770, 680, 782, 695 ], [ 787, 680, 806, 695 ], [ 811, 680, 845, 695 ], [ 308, 694, 350, 710 ], [ 354, 694, 367, 710 ], [ 371, 694, 411, 710 ], [ 415, 694, 451, 710 ], [ 486, 694, 546, 710 ], [ 550, 694, 582, 710 ], [ 586, 694, 599, 710 ], [ 603, 694, 662, 710 ], [ 707, 694, 723, 710 ], [ 727, 694, 747, 710 ], [ 751, 694, 828, 710 ], [ 117, 708, 198, 729 ], [ 384, 709, 392, 725 ], [ 584, 709, 592, 725 ], [ 781, 709, 790, 725 ], [ 117, 726, 199, 747 ], [ 204, 726, 254, 747 ], [ 376, 729, 401, 744 ], [ 575, 729, 600, 744 ], [ 773, 729, 798, 744 ], [ 396, 761, 442, 782 ], [ 447, 761, 571, 782 ], [ 575, 761, 585, 782 ], [ 117, 779, 174, 796 ], [ 179, 779, 217, 796 ], [ 221, 780, 250, 796 ], [ 254, 780, 266, 796 ], [ 270, 780, 303, 796 ], [ 117, 794, 287, 812 ], [ 291, 795, 305, 811 ], [ 309, 795, 348, 811 ], [ 352, 795, 407, 811 ], [ 412, 795, 490, 811 ], [ 494, 795, 541, 811 ], [ 546, 795, 562, 811 ], [ 566, 795, 625, 811 ], [ 629, 795, 667, 811 ], [ 671, 795, 715, 811 ], [ 720, 795, 804, 811 ], [ 808, 795, 860, 811 ], [ 117, 810, 132, 825 ], [ 136, 810, 181, 825 ], [ 185, 810, 223, 825 ], [ 227, 810, 272, 825 ], [ 276, 810, 360, 825 ], [ 364, 810, 412, 825 ], [ 117, 824, 219, 841 ], [ 223, 824, 261, 841 ], [ 265, 824, 279, 841 ], [ 283, 824, 407, 841 ], [ 411, 825, 496, 840 ], [ 500, 825, 542, 840 ], [ 546, 825, 554, 840 ], [ 558, 825, 584, 840 ], [ 589, 825, 601, 840 ], [ 605, 825, 653, 840 ], [ 657, 825, 700, 840 ], [ 704, 825, 741, 840 ], [ 222, 839, 331, 860 ], [ 336, 839, 389, 860 ], [ 394, 839, 426, 860 ], [ 431, 839, 580, 860 ], [ 585, 839, 611, 860 ], [ 616, 839, 664, 860 ], [ 669, 839, 738, 860 ], [ 743, 839, 759, 860 ], [ 193, 857, 277, 878 ], [ 449, 857, 531, 878 ], [ 676, 857, 727, 878 ], [ 732, 857, 815, 878 ], [ 117, 876, 173, 892 ], [ 177, 876, 190, 892 ], [ 194, 876, 217, 892 ], [ 221, 876, 252, 892 ], [ 256, 876, 333, 892 ], [ 372, 876, 427, 892 ], [ 431, 876, 444, 892 ], [ 448, 876, 472, 892 ], [ 476, 876, 506, 892 ], [ 511, 876, 581, 892 ], [ 626, 876, 682, 892 ], [ 686, 876, 699, 892 ], [ 703, 876, 727, 892 ], [ 731, 876, 761, 892 ], [ 766, 876, 859, 892 ], [ 117, 891, 142, 906 ], [ 146, 891, 212, 906 ], [ 216, 891, 297, 906 ], [ 372, 891, 445, 906 ], [ 449, 891, 473, 906 ], [ 477, 891, 562, 906 ], [ 626, 891, 715, 906 ], [ 719, 891, 744, 906 ], [ 748, 891, 804, 906 ] ]
[ [ 308, 91, 395, 105 ], [ 700, 90, 737, 106 ], [ 117, 104, 198, 125 ], [ 381, 107, 389, 122 ], [ 574, 107, 587, 122 ], [ 778, 107, 786, 122 ], [ 117, 164, 199, 185 ], [ 204, 164, 254, 185 ], [ 372, 167, 397, 183 ], [ 479, 124, 529, 139 ], [ 533, 124, 567, 139 ], [ 571, 124, 584, 139 ], [ 588, 124, 608, 139 ], [ 612, 124, 652, 139 ], [ 656, 124, 669, 139 ], [ 479, 138, 512, 154 ], [ 516, 138, 557, 154 ], [ 562, 138, 583, 154 ], [ 587, 138, 627, 154 ], [ 518, 153, 538, 168 ], [ 542, 153, 588, 168 ], [ 593, 153, 640, 168 ], [ 644, 153, 657, 168 ], [ 479, 167, 520, 183 ], [ 524, 167, 535, 183 ], [ 539, 167, 560, 183 ], [ 564, 167, 633, 183 ], [ 479, 182, 527, 197 ], [ 531, 182, 544, 197 ], [ 548, 182, 583, 197 ], [ 588, 182, 611, 197 ], [ 615, 182, 673, 197 ], [ 479, 196, 492, 212 ], [ 496, 196, 516, 212 ], [ 520, 197, 570, 211 ], [ 574, 197, 648, 211 ], [ 479, 211, 540, 226 ], [ 769, 167, 795, 183 ], [ 321, 326, 418, 347 ], [ 423, 326, 569, 347 ], [ 574, 326, 636, 347 ], [ 641, 326, 660, 347 ], [ 117, 344, 200, 365 ], [ 117, 361, 226, 382 ], [ 231, 361, 277, 382 ], [ 308, 355, 373, 371 ], [ 117, 380, 183, 400 ], [ 322, 380, 388, 400 ], [ 393, 380, 403, 400 ], [ 496, 380, 562, 400 ], [ 567, 380, 577, 400 ], [ 719, 380, 785, 400 ], [ 790, 380, 800, 400 ], [ 117, 398, 226, 419 ], [ 231, 398, 277, 419 ], [ 117, 415, 192, 436 ], [ 330, 409, 395, 424 ], [ 504, 409, 569, 424 ], [ 728, 409, 792, 424 ], [ 117, 452, 226, 473 ], [ 231, 452, 277, 473 ], [ 117, 469, 198, 490 ], [ 308, 442, 333, 457 ], [ 337, 442, 369, 457 ], [ 374, 442, 415, 457 ], [ 308, 456, 319, 471 ], [ 323, 456, 352, 471 ], [ 356, 456, 369, 471 ], [ 373, 456, 414, 471 ], [ 308, 471, 333, 486 ], [ 337, 471, 380, 486 ], [ 308, 485, 359, 501 ], [ 435, 434, 466, 450 ], [ 470, 434, 492, 450 ], [ 496, 434, 537, 450 ], [ 541, 434, 554, 450 ], [ 558, 434, 578, 450 ], [ 582, 434, 601, 450 ], [ 605, 434, 629, 450 ], [ 435, 449, 456, 464 ], [ 460, 449, 516, 464 ], [ 521, 449, 545, 464 ], [ 549, 449, 573, 464 ], [ 577, 449, 637, 464 ], [ 435, 463, 456, 479 ], [ 460, 463, 507, 479 ], [ 511, 463, 536, 479 ], [ 541, 463, 558, 479 ], [ 562, 463, 577, 479 ], [ 582, 463, 606, 479 ], [ 435, 478, 464, 493 ], [ 468, 478, 476, 493 ], [ 480, 478, 529, 493 ], [ 533, 478, 599, 493 ], [ 603, 478, 611, 493 ], [ 435, 492, 474, 508 ], [ 478, 492, 578, 508 ], [ 655, 434, 680, 450 ], [ 684, 435, 743, 449 ], [ 747, 434, 794, 450 ], [ 798, 434, 833, 450 ], [ 837, 434, 862, 450 ], [ 655, 449, 675, 464 ], [ 680, 449, 725, 464 ], [ 729, 449, 742, 464 ], [ 746, 449, 779, 464 ], [ 783, 449, 824, 464 ], [ 829, 449, 840, 464 ], [ 655, 463, 698, 479 ], [ 702, 463, 731, 479 ], [ 735, 463, 767, 479 ], [ 771, 463, 777, 479 ], [ 781, 463, 812, 479 ], [ 816, 463, 845, 479 ], [ 655, 478, 686, 493 ], [ 690, 478, 721, 493 ], [ 725, 478, 738, 493 ], [ 742, 478, 762, 493 ], [ 766, 478, 787, 493 ], [ 791, 478, 842, 493 ], [ 846, 478, 852, 493 ], [ 655, 492, 686, 508 ], [ 691, 492, 739, 508 ], [ 743, 492, 775, 508 ], [ 117, 506, 198, 527 ], [ 359, 509, 367, 524 ], [ 532, 509, 540, 524 ], [ 756, 509, 764, 524 ], [ 117, 524, 199, 545 ], [ 204, 524, 254, 545 ], [ 350, 527, 375, 543 ], [ 524, 527, 549, 543 ], [ 747, 527, 772, 543 ], [ 321, 542, 418, 563 ], [ 423, 542, 569, 563 ], [ 574, 542, 636, 563 ], [ 641, 542, 660, 563 ], [ 117, 560, 200, 581 ], [ 117, 578, 226, 599 ], [ 231, 578, 277, 599 ], [ 308, 572, 349, 587 ], [ 353, 572, 418, 587 ], [ 117, 596, 183, 617 ], [ 348, 596, 414, 617 ], [ 419, 596, 429, 617 ], [ 547, 596, 613, 617 ], [ 618, 596, 628, 617 ], [ 745, 596, 811, 617 ], [ 816, 596, 826, 617 ], [ 117, 614, 226, 635 ], [ 231, 614, 277, 635 ], [ 117, 631, 192, 652 ], [ 333, 626, 374, 641 ], [ 378, 626, 443, 641 ], [ 533, 626, 573, 641 ], [ 577, 626, 643, 641 ], [ 730, 626, 771, 641 ], [ 775, 626, 841, 641 ], [ 117, 661, 226, 682 ], [ 231, 661, 277, 682 ], [ 117, 679, 198, 700 ], [ 308, 651, 341, 666 ], [ 345, 651, 354, 666 ], [ 358, 651, 378, 666 ], [ 382, 651, 403, 666 ], [ 407, 651, 461, 666 ], [ 308, 665, 340, 681 ], [ 344, 665, 395, 681 ], [ 399, 665, 433, 681 ], [ 437, 665, 448, 681 ], [ 308, 680, 333, 695 ], [ 337, 680, 367, 695 ], [ 371, 680, 383, 695 ], [ 388, 680, 404, 695 ], [ 408, 680, 441, 695 ], [ 308, 694, 350, 710 ], [ 354, 694, 367, 710 ], [ 371, 694, 411, 710 ], [ 415, 694, 451, 710 ], [ 486, 651, 535, 666 ], [ 539, 651, 560, 666 ], [ 565, 651, 585, 666 ], [ 589, 651, 630, 666 ], [ 486, 665, 552, 681 ], [ 556, 665, 575, 681 ], [ 579, 665, 614, 681 ], [ 618, 665, 639, 681 ], [ 643, 665, 682, 681 ], [ 486, 680, 519, 695 ], [ 523, 680, 576, 695 ], [ 581, 680, 602, 695 ], [ 606, 680, 655, 695 ], [ 659, 680, 687, 695 ], [ 486, 694, 546, 710 ], [ 550, 694, 582, 710 ], [ 586, 694, 599, 710 ], [ 603, 694, 662, 710 ], [ 707, 651, 731, 666 ], [ 735, 651, 783, 666 ], [ 787, 651, 831, 666 ], [ 707, 665, 751, 681 ], [ 755, 665, 805, 681 ], [ 809, 665, 836, 681 ], [ 707, 680, 736, 695 ], [ 740, 680, 765, 695 ], [ 770, 680, 782, 695 ], [ 787, 680, 806, 695 ], [ 811, 680, 845, 695 ], [ 707, 694, 723, 710 ], [ 727, 694, 747, 710 ], [ 751, 694, 828, 710 ], [ 117, 708, 198, 729 ], [ 384, 709, 392, 725 ], [ 584, 709, 592, 725 ], [ 781, 709, 790, 725 ], [ 117, 726, 199, 747 ], [ 204, 726, 254, 747 ], [ 376, 729, 401, 744 ], [ 575, 729, 600, 744 ], [ 773, 729, 798, 744 ], [ 396, 761, 442, 782 ], [ 447, 761, 571, 782 ], [ 575, 761, 585, 782 ], [ 117, 779, 174, 796 ], [ 179, 779, 217, 796 ], [ 221, 780, 250, 796 ], [ 254, 780, 266, 796 ], [ 270, 780, 303, 796 ], [ 117, 794, 287, 812 ], [ 291, 795, 305, 811 ], [ 309, 795, 348, 811 ], [ 352, 795, 407, 811 ], [ 412, 795, 490, 811 ], [ 494, 795, 541, 811 ], [ 546, 795, 562, 811 ], [ 566, 795, 625, 811 ], [ 629, 795, 667, 811 ], [ 671, 795, 715, 811 ], [ 720, 795, 804, 811 ], [ 808, 795, 860, 811 ], [ 117, 810, 132, 825 ], [ 136, 810, 181, 825 ], [ 185, 810, 223, 825 ], [ 227, 810, 272, 825 ], [ 276, 810, 360, 825 ], [ 364, 810, 412, 825 ], [ 117, 824, 219, 841 ], [ 223, 824, 261, 841 ], [ 265, 824, 279, 841 ], [ 283, 824, 407, 841 ], [ 411, 825, 496, 840 ], [ 500, 825, 542, 840 ], [ 546, 825, 554, 840 ], [ 558, 825, 584, 840 ], [ 589, 825, 601, 840 ], [ 605, 825, 653, 840 ], [ 657, 825, 700, 840 ], [ 704, 825, 741, 840 ], [ 222, 839, 331, 860 ], [ 336, 839, 389, 860 ], [ 394, 839, 426, 860 ], [ 431, 839, 580, 860 ], [ 585, 839, 611, 860 ], [ 616, 839, 664, 860 ], [ 669, 839, 738, 860 ], [ 743, 839, 759, 860 ], [ 193, 857, 277, 878 ], [ 449, 857, 531, 878 ], [ 676, 857, 727, 878 ], [ 732, 857, 815, 878 ], [ 117, 876, 173, 892 ], [ 177, 876, 190, 892 ], [ 194, 876, 217, 892 ], [ 221, 876, 252, 892 ], [ 256, 876, 333, 892 ], [ 117, 891, 142, 906 ], [ 146, 891, 212, 906 ], [ 216, 891, 297, 906 ], [ 372, 876, 427, 892 ], [ 431, 876, 444, 892 ], [ 448, 876, 472, 892 ], [ 476, 876, 506, 892 ], [ 511, 876, 581, 892 ], [ 372, 891, 445, 906 ], [ 449, 891, 473, 906 ], [ 477, 891, 562, 906 ], [ 626, 876, 682, 892 ], [ 686, 876, 699, 892 ], [ 703, 876, 727, 892 ], [ 731, 876, 761, 892 ], [ 766, 876, 859, 892 ], [ 626, 891, 715, 906 ], [ 719, 891, 744, 906 ], [ 748, 891, 804, 906 ] ]
Module 4, Handout 6: Teacher Rubric At-a-Glance The 4 Standards, 16 Indicators, and 33 elements in the Model Rubric for teachers: (The complete Massachusetts Model System for Educator Evaluation Part III: Guide to Rubrics and Model Rubrics for Superintendent, Administrator, and Teacher is available at .) Standard I: Standard III: Standard II: Standard IV: Curriculum, Planning, and Family and Community Teaching All Students Professional Culture Assessment Engagement A. Curriculum and Planning Indicator A. Instruction Indicator A. Engagement Indicator A. Reflection Indicator 1. Subject Matter Knowledge 1. Quality of Effort and Work 1. Parent/Family Engagement 1. Reflective Practice 2. Child and Adolescent Development 2. Student Engagement 2. Goal Setting 3. Rigorous Standards-Based Unit 3. Meeting Diverse Needs Design 4. Well-Structured Lessons B. Assessment Indicator B. Learning Environment Indicator B. Collaboration Indicator B. Professional Growth Indicator 1. Variety of Assessment Methods 1. Safe Learning Environment 1. Learning Expectations 1. Professional Learning and Growth 2. Adjustments to Practice 2. Collaborative Learning 2. Curriculum Support Environment 3. Student Motivation C. Analysis Indicator C. Cultural Proficiency Indicator C. Communication Indicator C. Collaboration Indicator 1. Analysis and Conclusions 1. Respects Differences 1. Two-Way Communication 1. Professional Collaboration 2. Sharing Conclusions With 2. Maintains Respectful 2. Culturally Proficient Colleagues Environment Communication 3. Sharing Conclusions With Students D. Expectations Indicator D. Decision-Making Indicator 1. Clear Expectations 1. Decision-making 2. High Expectations 3. Access to Knowledge E. Shared Responsibility Indicator 1. Shared Responsibility F. Professional Responsibilities Indicator 1. Judgment 2. Reliability and Responsibility
Module 4, Handout 6: Teacher Rubric At-a-Glance The 4 Standards, 16 Indicators, and 33 elements in the Model Rubric for teachers: (The complete Massachusetts Model System for Educator Evaluation Part III: Guide to Rubrics and Model Rubrics for Superintendent, Administrator, and Teacher is available at .) Standard I: Curriculum, Planning, and Assessment Standard II: Teaching All Students Standard III: Family and Community Engagement Standard IV: Professional Culture A. Curriculum and Planning Indicator 1. Subject Matter Knowledge 2. Child and Adolescent Development 3. Rigorous Standards-Based Unit Design 4. Well-Structured Lessons A. Instruction Indicator 1. Quality of Effort and Work 2. Student Engagement 3. Meeting Diverse Needs A. Engagement Indicator 1. Parent/Family Engagement A. Reflection Indicator 1. Reflective Practice 2. Goal Setting B. Assessment Indicator 1. Variety of Assessment Methods 2. Adjustments to Practice B. Learning Environment Indicator 1. Safe Learning Environment 2. Collaborative Learning Environment 3. Student Motivation B. Collaboration Indicator 1. Learning Expectations 2. Curriculum Support B. Professional Growth Indicator 1. Professional Learning and Growth C. Analysis Indicator 1. Analysis and Conclusions 2. Sharing Conclusions With Colleagues 3. Sharing Conclusions With Students C. Cultural Proficiency Indicator 1. Respects Differences 2. Maintains Respectful Environment C. Communication Indicator 1. Two-Way Communication 2. Culturally Proficient Communication C. Collaboration Indicator 1. Professional Collaboration D. Expectations Indicator 1. Clear Expectations 2. High Expectations 3. Access to Knowledge D. Decision-Making Indicator 1. Decision-making E. Shared Responsibility Indicator 1. Shared Responsibility F. Professional Responsibilities Indicator 1. Judgment 2. Reliability and Responsibility
0.660409
[ 0, 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, 54, 55, 56, 65, 50, 51, 60, 61, 62, 48, 49, 57, 58, 59, 66, 52, 53, 63, 64, 67, 68, 69, 70, 71, 81, 82, 83, 84, 97, 98, 99, 100, 101, 108, 109, 110, 111, 116, 117, 118, 119, 72, 73, 74, 85, 86, 87, 88, 89, 90, 102, 103, 104, 112, 113, 114, 115, 75, 76, 77, 91, 92, 93, 78, 79, 80, 94, 95, 96, 105, 106, 107, 120, 121, 122, 134, 135, 136, 137, 138, 151, 152, 153, 154, 123, 124, 125, 126, 139, 140, 141, 142, 155, 156, 157, 161, 162, 163, 164, 127, 128, 129, 143, 144, 145, 158, 159, 160, 130, 131, 132, 133, 146, 147, 148, 149, 150, 165, 166, 167, 178, 179, 180, 181, 191, 192, 193, 194, 201, 204, 205, 206, 207, 208, 168, 169, 170, 171, 182, 183, 184, 195, 196, 197, 202, 172, 173, 174, 185, 186, 187, 198, 199, 200, 203, 175, 176, 177, 188, 189, 190, 209, 210, 211, 215, 216, 217, 220, 221, 222, 223, 224, 225, 226, 212, 213, 214, 218, 219, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243 ]
M4Handouts.docx
task-1432-430
11
[ [ 90, 120, 161, 156 ], [ 167, 120, 183, 156 ], [ 189, 120, 271, 156 ], [ 277, 120, 295, 156 ], [ 300, 120, 378, 156 ], [ 383, 120, 447, 156 ], [ 453, 120, 566, 156 ], [ 90, 163, 122, 195 ], [ 127, 163, 137, 195 ], [ 142, 163, 233, 195 ], [ 238, 163, 258, 195 ], [ 263, 163, 352, 195 ], [ 357, 163, 388, 195 ], [ 393, 163, 413, 195 ], [ 418, 163, 494, 195 ], [ 499, 163, 515, 195 ], [ 520, 163, 546, 195 ], [ 551, 163, 602, 195 ], [ 607, 163, 663, 195 ], [ 668, 163, 692, 195 ], [ 697, 163, 775, 195 ], [ 79, 207, 108, 232 ], [ 112, 207, 168, 232 ], [ 172, 207, 265, 232 ], [ 268, 207, 306, 232 ], [ 310, 207, 356, 232 ], [ 360, 207, 376, 232 ], [ 380, 207, 436, 232 ], [ 440, 207, 505, 232 ], [ 509, 207, 534, 232 ], [ 538, 207, 553, 232 ], [ 557, 207, 594, 232 ], [ 598, 207, 610, 232 ], [ 614, 207, 661, 232 ], [ 664, 207, 688, 232 ], [ 691, 207, 729, 232 ], [ 733, 207, 780, 232 ], [ 784, 207, 800, 232 ], [ 804, 207, 902, 232 ], [ 79, 228, 165, 253 ], [ 169, 228, 192, 253 ], [ 196, 228, 247, 253 ], [ 251, 228, 261, 253 ], [ 265, 228, 319, 253 ], [ 323, 228, 335, 253 ], [ 339, 228, 347, 253 ], [ 90, 258, 151, 283 ], [ 154, 258, 163, 283 ], [ 507, 258, 567, 283 ], [ 571, 258, 587, 283 ], [ 309, 269, 369, 294 ], [ 373, 269, 386, 294 ], [ 715, 269, 775, 294 ], [ 779, 269, 797, 294 ], [ 90, 283, 168, 307 ], [ 172, 283, 235, 307 ], [ 239, 283, 263, 307 ], [ 507, 283, 551, 307 ], [ 554, 283, 579, 307 ], [ 583, 283, 660, 307 ], [ 309, 293, 370, 318 ], [ 374, 293, 392, 318 ], [ 396, 293, 455, 318 ], [ 715, 293, 798, 318 ], [ 803, 293, 851, 318 ], [ 90, 303, 172, 328 ], [ 507, 303, 590, 328 ], [ 90, 341, 101, 360 ], [ 104, 341, 161, 360 ], [ 164, 341, 183, 360 ], [ 186, 341, 232, 360 ], [ 235, 341, 280, 360 ], [ 313, 342, 324, 362 ], [ 327, 342, 382, 362 ], [ 385, 342, 431, 362 ], [ 507, 342, 517, 362 ], [ 520, 342, 585, 362 ], [ 588, 342, 633, 362 ], [ 715, 342, 726, 362 ], [ 729, 342, 781, 362 ], [ 784, 342, 829, 362 ], [ 109, 356, 118, 376 ], [ 121, 356, 156, 376 ], [ 159, 356, 190, 376 ], [ 193, 356, 246, 376 ], [ 327, 360, 336, 379 ], [ 339, 360, 373, 379 ], [ 376, 360, 385, 379 ], [ 388, 360, 413, 379 ], [ 416, 360, 434, 379 ], [ 437, 360, 462, 379 ], [ 525, 360, 534, 379 ], [ 537, 360, 603, 379 ], [ 606, 360, 667, 379 ], [ 733, 360, 742, 379 ], [ 745, 360, 792, 379 ], [ 795, 360, 834, 379 ], [ 109, 372, 118, 392 ], [ 121, 372, 145, 392 ], [ 148, 372, 166, 392 ], [ 169, 372, 222, 392 ], [ 225, 372, 288, 392 ], [ 327, 377, 336, 396 ], [ 339, 377, 376, 396 ], [ 379, 377, 440, 396 ], [ 733, 377, 742, 396 ], [ 745, 377, 768, 396 ], [ 771, 377, 804, 396 ], [ 109, 388, 118, 407 ], [ 121, 388, 163, 407 ], [ 166, 388, 249, 407 ], [ 252, 388, 271, 407 ], [ 327, 395, 336, 414 ], [ 339, 395, 377, 414 ], [ 380, 395, 417, 414 ], [ 420, 395, 451, 414 ], [ 123, 404, 156, 423 ], [ 109, 420, 118, 439 ], [ 120, 420, 195, 439 ], [ 197, 420, 237, 439 ], [ 90, 450, 101, 469 ], [ 104, 450, 167, 469 ], [ 170, 450, 216, 469 ], [ 309, 450, 320, 469 ], [ 323, 450, 368, 469 ], [ 371, 450, 437, 469 ], [ 440, 450, 485, 469 ], [ 507, 450, 517, 469 ], [ 520, 450, 590, 469 ], [ 593, 450, 638, 469 ], [ 715, 450, 726, 469 ], [ 729, 450, 793, 469 ], [ 796, 450, 834, 469 ], [ 837, 450, 882, 469 ], [ 109, 467, 118, 486 ], [ 121, 467, 154, 486 ], [ 157, 467, 166, 486 ], [ 169, 467, 227, 486 ], [ 230, 467, 271, 486 ], [ 327, 467, 336, 486 ], [ 339, 467, 361, 486 ], [ 364, 467, 406, 486 ], [ 409, 467, 469, 486 ], [ 525, 467, 534, 486 ], [ 537, 467, 578, 486 ], [ 581, 467, 643, 486 ], [ 733, 467, 742, 486 ], [ 745, 467, 804, 486 ], [ 807, 467, 849, 486 ], [ 852, 467, 870, 486 ], [ 873, 467, 907, 486 ], [ 109, 485, 118, 504 ], [ 121, 485, 180, 504 ], [ 183, 485, 192, 504 ], [ 195, 485, 233, 504 ], [ 327, 485, 336, 504 ], [ 339, 485, 402, 504 ], [ 405, 485, 447, 504 ], [ 525, 485, 534, 504 ], [ 537, 485, 589, 504 ], [ 592, 485, 629, 504 ], [ 340, 501, 401, 520 ], [ 327, 518, 336, 538 ], [ 339, 518, 376, 538 ], [ 379, 518, 428, 538 ], [ 90, 550, 101, 569 ], [ 104, 550, 148, 569 ], [ 151, 550, 196, 569 ], [ 309, 550, 320, 569 ], [ 323, 550, 363, 569 ], [ 366, 550, 424, 569 ], [ 427, 550, 473, 569 ], [ 507, 550, 517, 569 ], [ 520, 550, 601, 569 ], [ 604, 550, 650, 569 ], [ 715, 550, 725, 569 ], [ 729, 550, 798, 569 ], [ 801, 550, 846, 569 ], [ 109, 567, 118, 586 ], [ 121, 567, 160, 586 ], [ 164, 567, 181, 586 ], [ 184, 567, 243, 586 ], [ 327, 567, 336, 586 ], [ 339, 567, 384, 586 ], [ 387, 567, 441, 586 ], [ 525, 567, 534, 586 ], [ 537, 567, 582, 586 ], [ 585, 567, 660, 586 ], [ 733, 567, 742, 586 ], [ 745, 567, 804, 586 ], [ 807, 567, 870, 586 ], [ 109, 585, 118, 604 ], [ 121, 585, 157, 604 ], [ 160, 585, 219, 604 ], [ 222, 585, 244, 604 ], [ 327, 585, 336, 604 ], [ 339, 585, 385, 604 ], [ 388, 585, 439, 604 ], [ 525, 585, 534, 604 ], [ 537, 585, 582, 604 ], [ 585, 585, 629, 604 ], [ 123, 601, 176, 620 ], [ 342, 601, 402, 620 ], [ 539, 601, 614, 620 ], [ 109, 618, 118, 637 ], [ 121, 618, 157, 637 ], [ 160, 618, 219, 637 ], [ 222, 618, 244, 637 ], [ 246, 618, 289, 637 ], [ 309, 649, 320, 669 ], [ 323, 649, 389, 669 ], [ 392, 649, 438, 669 ], [ 715, 649, 726, 669 ], [ 729, 649, 814, 669 ], [ 817, 649, 862, 669 ], [ 325, 667, 333, 686 ], [ 337, 667, 362, 686 ], [ 365, 667, 426, 686 ], [ 730, 667, 739, 686 ], [ 743, 667, 822, 686 ], [ 325, 684, 333, 704 ], [ 337, 684, 359, 704 ], [ 362, 684, 423, 704 ], [ 325, 702, 333, 721 ], [ 337, 702, 371, 721 ], [ 374, 702, 383, 721 ], [ 386, 702, 439, 721 ], [ 715, 733, 725, 753 ], [ 728, 733, 764, 753 ], [ 767, 733, 841, 753 ], [ 844, 733, 889, 753 ], [ 730, 751, 739, 770 ], [ 743, 751, 777, 770 ], [ 780, 751, 846, 770 ], [ 715, 782, 725, 801 ], [ 728, 782, 792, 801 ], [ 795, 782, 877, 801 ], [ 732, 798, 777, 817 ], [ 732, 815, 741, 834 ], [ 744, 815, 791, 834 ], [ 730, 833, 739, 852 ], [ 743, 833, 788, 852 ], [ 791, 833, 809, 852 ], [ 812, 833, 879, 852 ] ]
[ [ 90, 120, 161, 156 ], [ 167, 120, 183, 156 ], [ 189, 120, 271, 156 ], [ 277, 120, 295, 156 ], [ 300, 120, 378, 156 ], [ 383, 120, 447, 156 ], [ 453, 120, 566, 156 ], [ 90, 163, 122, 195 ], [ 127, 163, 137, 195 ], [ 142, 163, 233, 195 ], [ 238, 163, 258, 195 ], [ 263, 163, 352, 195 ], [ 357, 163, 388, 195 ], [ 393, 163, 413, 195 ], [ 418, 163, 494, 195 ], [ 499, 163, 515, 195 ], [ 520, 163, 546, 195 ], [ 551, 163, 602, 195 ], [ 607, 163, 663, 195 ], [ 668, 163, 692, 195 ], [ 697, 163, 775, 195 ], [ 79, 207, 108, 232 ], [ 112, 207, 168, 232 ], [ 172, 207, 265, 232 ], [ 268, 207, 306, 232 ], [ 310, 207, 356, 232 ], [ 360, 207, 376, 232 ], [ 380, 207, 436, 232 ], [ 440, 207, 505, 232 ], [ 509, 207, 534, 232 ], [ 538, 207, 553, 232 ], [ 557, 207, 594, 232 ], [ 598, 207, 610, 232 ], [ 614, 207, 661, 232 ], [ 664, 207, 688, 232 ], [ 691, 207, 729, 232 ], [ 733, 207, 780, 232 ], [ 784, 207, 800, 232 ], [ 804, 207, 902, 232 ], [ 79, 228, 165, 253 ], [ 169, 228, 192, 253 ], [ 196, 228, 247, 253 ], [ 251, 228, 261, 253 ], [ 265, 228, 319, 253 ], [ 323, 228, 335, 253 ], [ 339, 228, 347, 253 ], [ 90, 258, 151, 283 ], [ 154, 258, 163, 283 ], [ 90, 283, 168, 307 ], [ 172, 283, 235, 307 ], [ 239, 283, 263, 307 ], [ 90, 303, 172, 328 ], [ 309, 269, 369, 294 ], [ 373, 269, 386, 294 ], [ 309, 293, 370, 318 ], [ 374, 293, 392, 318 ], [ 396, 293, 455, 318 ], [ 507, 258, 567, 283 ], [ 571, 258, 587, 283 ], [ 507, 283, 551, 307 ], [ 554, 283, 579, 307 ], [ 583, 283, 660, 307 ], [ 507, 303, 590, 328 ], [ 715, 269, 775, 294 ], [ 779, 269, 797, 294 ], [ 715, 293, 798, 318 ], [ 803, 293, 851, 318 ], [ 90, 341, 101, 360 ], [ 104, 341, 161, 360 ], [ 164, 341, 183, 360 ], [ 186, 341, 232, 360 ], [ 235, 341, 280, 360 ], [ 109, 356, 118, 376 ], [ 121, 356, 156, 376 ], [ 159, 356, 190, 376 ], [ 193, 356, 246, 376 ], [ 109, 372, 118, 392 ], [ 121, 372, 145, 392 ], [ 148, 372, 166, 392 ], [ 169, 372, 222, 392 ], [ 225, 372, 288, 392 ], [ 109, 388, 118, 407 ], [ 121, 388, 163, 407 ], [ 166, 388, 249, 407 ], [ 252, 388, 271, 407 ], [ 123, 404, 156, 423 ], [ 109, 420, 118, 439 ], [ 120, 420, 195, 439 ], [ 197, 420, 237, 439 ], [ 313, 342, 324, 362 ], [ 327, 342, 382, 362 ], [ 385, 342, 431, 362 ], [ 327, 360, 336, 379 ], [ 339, 360, 373, 379 ], [ 376, 360, 385, 379 ], [ 388, 360, 413, 379 ], [ 416, 360, 434, 379 ], [ 437, 360, 462, 379 ], [ 327, 377, 336, 396 ], [ 339, 377, 376, 396 ], [ 379, 377, 440, 396 ], [ 327, 395, 336, 414 ], [ 339, 395, 377, 414 ], [ 380, 395, 417, 414 ], [ 420, 395, 451, 414 ], [ 507, 342, 517, 362 ], [ 520, 342, 585, 362 ], [ 588, 342, 633, 362 ], [ 525, 360, 534, 379 ], [ 537, 360, 603, 379 ], [ 606, 360, 667, 379 ], [ 715, 342, 726, 362 ], [ 729, 342, 781, 362 ], [ 784, 342, 829, 362 ], [ 733, 360, 742, 379 ], [ 745, 360, 792, 379 ], [ 795, 360, 834, 379 ], [ 733, 377, 742, 396 ], [ 745, 377, 768, 396 ], [ 771, 377, 804, 396 ], [ 90, 450, 101, 469 ], [ 104, 450, 167, 469 ], [ 170, 450, 216, 469 ], [ 109, 467, 118, 486 ], [ 121, 467, 154, 486 ], [ 157, 467, 166, 486 ], [ 169, 467, 227, 486 ], [ 230, 467, 271, 486 ], [ 109, 485, 118, 504 ], [ 121, 485, 180, 504 ], [ 183, 485, 192, 504 ], [ 195, 485, 233, 504 ], [ 309, 450, 320, 469 ], [ 323, 450, 368, 469 ], [ 371, 450, 437, 469 ], [ 440, 450, 485, 469 ], [ 327, 467, 336, 486 ], [ 339, 467, 361, 486 ], [ 364, 467, 406, 486 ], [ 409, 467, 469, 486 ], [ 327, 485, 336, 504 ], [ 339, 485, 402, 504 ], [ 405, 485, 447, 504 ], [ 340, 501, 401, 520 ], [ 327, 518, 336, 538 ], [ 339, 518, 376, 538 ], [ 379, 518, 428, 538 ], [ 507, 450, 517, 469 ], [ 520, 450, 590, 469 ], [ 593, 450, 638, 469 ], [ 525, 467, 534, 486 ], [ 537, 467, 578, 486 ], [ 581, 467, 643, 486 ], [ 525, 485, 534, 504 ], [ 537, 485, 589, 504 ], [ 592, 485, 629, 504 ], [ 715, 450, 726, 469 ], [ 729, 450, 793, 469 ], [ 796, 450, 834, 469 ], [ 837, 450, 882, 469 ], [ 733, 467, 742, 486 ], [ 745, 467, 804, 486 ], [ 807, 467, 849, 486 ], [ 852, 467, 870, 486 ], [ 873, 467, 907, 486 ], [ 90, 550, 101, 569 ], [ 104, 550, 148, 569 ], [ 151, 550, 196, 569 ], [ 109, 567, 118, 586 ], [ 121, 567, 160, 586 ], [ 164, 567, 181, 586 ], [ 184, 567, 243, 586 ], [ 109, 585, 118, 604 ], [ 121, 585, 157, 604 ], [ 160, 585, 219, 604 ], [ 222, 585, 244, 604 ], [ 123, 601, 176, 620 ], [ 109, 618, 118, 637 ], [ 121, 618, 157, 637 ], [ 160, 618, 219, 637 ], [ 222, 618, 244, 637 ], [ 246, 618, 289, 637 ], [ 309, 550, 320, 569 ], [ 323, 550, 363, 569 ], [ 366, 550, 424, 569 ], [ 427, 550, 473, 569 ], [ 327, 567, 336, 586 ], [ 339, 567, 384, 586 ], [ 387, 567, 441, 586 ], [ 327, 585, 336, 604 ], [ 339, 585, 385, 604 ], [ 388, 585, 439, 604 ], [ 342, 601, 402, 620 ], [ 507, 550, 517, 569 ], [ 520, 550, 601, 569 ], [ 604, 550, 650, 569 ], [ 525, 567, 534, 586 ], [ 537, 567, 582, 586 ], [ 585, 567, 660, 586 ], [ 525, 585, 534, 604 ], [ 537, 585, 582, 604 ], [ 585, 585, 629, 604 ], [ 539, 601, 614, 620 ], [ 715, 550, 725, 569 ], [ 729, 550, 798, 569 ], [ 801, 550, 846, 569 ], [ 733, 567, 742, 586 ], [ 745, 567, 804, 586 ], [ 807, 567, 870, 586 ], [ 309, 649, 320, 669 ], [ 323, 649, 389, 669 ], [ 392, 649, 438, 669 ], [ 325, 667, 333, 686 ], [ 337, 667, 362, 686 ], [ 365, 667, 426, 686 ], [ 325, 684, 333, 704 ], [ 337, 684, 359, 704 ], [ 362, 684, 423, 704 ], [ 325, 702, 333, 721 ], [ 337, 702, 371, 721 ], [ 374, 702, 383, 721 ], [ 386, 702, 439, 721 ], [ 715, 649, 726, 669 ], [ 729, 649, 814, 669 ], [ 817, 649, 862, 669 ], [ 730, 667, 739, 686 ], [ 743, 667, 822, 686 ], [ 715, 733, 725, 753 ], [ 728, 733, 764, 753 ], [ 767, 733, 841, 753 ], [ 844, 733, 889, 753 ], [ 730, 751, 739, 770 ], [ 743, 751, 777, 770 ], [ 780, 751, 846, 770 ], [ 715, 782, 725, 801 ], [ 728, 782, 792, 801 ], [ 795, 782, 877, 801 ], [ 732, 798, 777, 817 ], [ 732, 815, 741, 834 ], [ 744, 815, 791, 834 ], [ 730, 833, 739, 852 ], [ 743, 833, 788, 852 ], [ 791, 833, 809, 852 ], [ 812, 833, 879, 852 ] ]