spyne 0.14.8 → 0.17.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/.travis.yml +2 -2
  2. package/karma.conf.js +27 -20
  3. package/lib/channel-action-filter.test.2418910233.js +20 -0
  4. package/lib/channel-dom.test.1490741340.js +20 -0
  5. package/lib/channel-fetch-util.test.3681936279.js +20 -0
  6. package/lib/channel-fetch.test.380764798.js +20 -0
  7. package/lib/channel-payload-class.test.2325155642.js +20 -0
  8. package/lib/channel-payload-filter.test.1598505124.js +20 -0
  9. package/lib/channel-route.test.921296320.js +20 -0
  10. package/lib/channel-stream-item.test.159699696.js +20 -0
  11. package/lib/channel-ui.test.291129654.js +20 -0
  12. package/lib/channel-util-dom.test.181212370.js +20 -0
  13. package/lib/channel.test.706832124.js +20 -0
  14. package/lib/commons.js +50363 -0
  15. package/lib/dom-el-selectors.test.3296414834.js +20 -0
  16. package/lib/dom-el-template.test.1459850380.js +20 -0
  17. package/lib/dom-el.test.2449130808.js +20 -0
  18. package/lib/frp-tools.test.1620088187.js +20 -0
  19. package/lib/import.test.723835576.js +20 -0
  20. package/lib/index.test.2146503294.js +20 -0
  21. package/lib/plugins-methods.test.3482246428.js +20 -0
  22. package/lib/route-utils.test.2932649409.js +20 -0
  23. package/lib/runtime.js +174 -0
  24. package/lib/spyne-app-properties.test.485192211.js +20 -0
  25. package/lib/spyne-app.test.4150724251.js +20 -0
  26. package/lib/spyne-plugin.test.3993976219.js +20 -0
  27. package/lib/spyne.js +15477 -18467
  28. package/lib/spyne.min.js +2 -12
  29. package/lib/spyne.min.js.LICENSE.txt +10 -0
  30. package/lib/url-utils.test.3668806082.js +20 -0
  31. package/lib/view-stream-broadcaster.test.2534955231.js +20 -0
  32. package/lib/view-stream-enhancer-loader.test.3395418180.js +20 -0
  33. package/lib/view-stream-enhancer.test.1043626253.js +20 -0
  34. package/lib/view-stream.test.1765314964.js +20 -0
  35. package/package.json +37 -65
  36. package/src/spyne/channels/channel-fetch-class.js +24 -1
  37. package/src/spyne/channels/channel-payload-class.js +102 -11
  38. package/src/spyne/channels/channel-proxy.js +6 -4
  39. package/src/spyne/channels/channel.js +66 -6
  40. package/src/spyne/channels/channels-config.js +2 -2
  41. package/src/spyne/channels/{channels-delegator.js → channels-map.js} +37 -21
  42. package/src/spyne/channels/spyne-channel-lifecycle.js +1 -1
  43. package/src/spyne/channels/spyne-channel-route.js +95 -15
  44. package/src/spyne/channels/spyne-channel-ui.js +1 -0
  45. package/src/spyne/channels/spyne-channel-window.js +60 -20
  46. package/src/spyne/spyne-app.js +181 -0
  47. package/src/spyne/spyne-plugins.js +146 -0
  48. package/src/spyne/spyne.js +11 -139
  49. package/src/spyne/utils/channel-fetch-util.js +1 -1
  50. package/src/spyne/utils/channel-payload-filter.js +166 -30
  51. package/src/spyne/utils/frp-tools.js +21 -1
  52. package/src/spyne/utils/mixins/base-streams-mixins.js +1 -0
  53. package/src/spyne/utils/spyne-app-properties.js +213 -0
  54. package/src/spyne/utils/spyne-logger.js +18 -0
  55. package/src/spyne/utils/spyne-plugins-methods.js +105 -0
  56. package/src/spyne/utils/spyne-scroll-lock.js +95 -0
  57. package/src/spyne/utils/spyne-utils-channel-route-url.js +2 -1
  58. package/src/spyne/utils/spyne-utils-channel-route.js +3 -1
  59. package/src/spyne/utils/spyne-utils-channel-window.js +2 -2
  60. package/src/spyne/views/dom-element-template.js +52 -23
  61. package/src/spyne/views/dom-element.js +11 -2
  62. package/src/spyne/views/view-stream-broadcaster.js +3 -3
  63. package/src/spyne/views/view-stream-payload.js +76 -15
  64. package/src/spyne/views/view-stream-selector.js +2 -2
  65. package/src/spyne/views/view-stream.js +219 -115
  66. package/src/tests/channels/channel-fetch.test.js +102 -0
  67. package/src/tests/channels/channel-payload-class.test.js +149 -0
  68. package/src/tests/channels/channel-payload-filter.test.js +298 -0
  69. package/src/tests/channels/channel-route.test.js +76 -1
  70. package/src/tests/channels/channel-stream-item.test.js +3 -2
  71. package/src/tests/channels/channel.test.js +38 -0
  72. package/src/tests/channels/route-utils.test.js +1 -1
  73. package/src/tests/index.js +0 -1
  74. package/src/tests/index.test.js +6 -0
  75. package/src/tests/mocks/channel-payload-data.js +93 -1
  76. package/src/tests/mocks/msf-user-data-small.json +4103 -0
  77. package/src/tests/mocks/msf-user-data.json +47035 -0
  78. package/src/tests/mocks/utils-data.js +20 -2
  79. package/src/tests/spyne-app.test.js +27 -0
  80. package/src/tests/spyne-plugin.test.js +49 -0
  81. package/src/tests/utils/channel-action-filter.test.js +22 -11
  82. package/src/tests/utils/channel-data-packet-generator.unused.js +119 -0
  83. package/src/tests/utils/plugins-methods.test.js +103 -0
  84. package/src/tests/utils/spyne-app-properties.test.js +11 -0
  85. package/src/tests/views/dom-el-selectors.test.js +1 -1
  86. package/webpack.config.js +30 -15
  87. package/lib/spyne.js.map +0 -1
  88. package/src/spyne/utils/viewstream-dom-utils.js +0 -8
@@ -0,0 +1,4103 @@
1
+ {
2
+
3
+ "content" : {
4
+ "text" : "Lorem ipsum",
5
+ "section" : {
6
+ "header" : "my new header"
7
+
8
+ }
9
+ },
10
+
11
+ "users": [
12
+ {
13
+ "jurisdiction": {
14
+ "key": "pnfe",
15
+ "val": "PNFE"
16
+ },
17
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-53.jpg",
18
+ "branch": "609",
19
+ "team": "Lima",
20
+ "complex": "723",
21
+ "region": {
22
+ "key": "ny",
23
+ "val": "New York Region"
24
+ },
25
+ "experienceYears": 29,
26
+ "lengthOfService": 24,
27
+ "experienceNRC": 2,
28
+ "languages": {
29
+ "key": [
30
+ "jp",
31
+ "es"
32
+ ],
33
+ "val": "Japanese,<br>Spanish"
34
+ },
35
+ "countriesFocus": "France,<br> Japan",
36
+ "products": {
37
+ "key": [
38
+ "pensionFunds",
39
+ "privateEquityFunds"
40
+ ],
41
+ "val": "Pension funds, Private Equity Funds"
42
+ },
43
+ "aum": 1170,
44
+ "id": "1",
45
+ "firstName": "Gene",
46
+ "lastName": "Bumpass",
47
+ "icaName": "Gene Bumpass",
48
+ "email": "gbumpass0@vk.com",
49
+ "gender": "F",
50
+ "education": "Universidad Champagnat",
51
+ "linkedInSkill": "EES",
52
+ "motto": "deploy turn-key platforms",
53
+ "title": "Junior Executive",
54
+ "bioShort": "In eleifend quam a odio. In hac habitasse platea dictumst.",
55
+ "teamName": "Lima",
56
+ "address": "93 Upham Lane",
57
+ "country": "AR"
58
+ },
59
+ {
60
+ "jurisdiction": {
61
+ "key": "nsas",
62
+ "val": "NSAA"
63
+ },
64
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-83.jpg",
65
+ "branch": "490",
66
+ "team": "Zulu Golf",
67
+ "complex": "423",
68
+ "region": {
69
+ "key": "africa",
70
+ "val": "Africa"
71
+ },
72
+ "experienceYears": 28,
73
+ "lengthOfService": 20,
74
+ "experienceNRC": 25,
75
+ "languages": {
76
+ "key": [
77
+ "fr",
78
+ "es",
79
+ "jp"
80
+ ],
81
+ "val": "French,<br>Spanish,<br>Japanese"
82
+ },
83
+ "countriesFocus": "China,<br> Brazil",
84
+ "products": {
85
+ "key": [
86
+ "privateEquityFunds",
87
+ "hedgeFunds",
88
+ "mutualFunds"
89
+ ],
90
+ "val": "Private Equity Funds, Hedge Funds, Mutual Funds"
91
+ },
92
+ "aum": 280,
93
+ "id": "2",
94
+ "firstName": "Darryl",
95
+ "lastName": "Twiname",
96
+ "icaName": "Darryl Twiname",
97
+ "email": "dtwiname1@buzzfeed.com",
98
+ "gender": "F",
99
+ "education": "Marij State Technical University",
100
+ "linkedInSkill": "SNMP",
101
+ "motto": "utilize distributed vortals",
102
+ "title": "Structural Analysis Engineer",
103
+ "bioShort": "Morbi a ipsum. Integer a nibh. In quis justo.",
104
+ "teamName": "Zulu Golf",
105
+ "address": "894 Elka Crossing",
106
+ "country": "RU"
107
+ },
108
+ {
109
+ "jurisdiction": {
110
+ "key": "imf",
111
+ "val": "IMF"
112
+ },
113
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-17.jpg",
114
+ "branch": "631",
115
+ "team": "Juliett",
116
+ "complex": "843",
117
+ "region": {
118
+ "key": "oceania",
119
+ "val": "Oceania"
120
+ },
121
+ "experienceYears": 13,
122
+ "lengthOfService": 11,
123
+ "experienceNRC": 12,
124
+ "languages": {
125
+ "key": [
126
+ "kr"
127
+ ],
128
+ "val": "Korean"
129
+ },
130
+ "countriesFocus": "Belgium,<br> Australia,<br> Switzerland",
131
+ "products": {
132
+ "key": [
133
+ "privateWealth"
134
+ ],
135
+ "val": "Private wealth"
136
+ },
137
+ "aum": 140,
138
+ "id": "3",
139
+ "firstName": "Alexandra",
140
+ "lastName": "Blakesley",
141
+ "icaName": "Alexandra Blakesley",
142
+ "email": "ablakesley2@last.fm",
143
+ "gender": "F",
144
+ "education": "Universidade de Itaúna",
145
+ "linkedInSkill": "Payment by Results",
146
+ "motto": "morph transparent vortals",
147
+ "title": "Desktop Support Technician",
148
+ "bioShort": "Nullam sit amet turpis elementum ligula vehicula consequat. Morbi a ipsum.",
149
+ "teamName": "Juliett",
150
+ "address": "36 Continental Circle",
151
+ "country": "BR"
152
+ },
153
+ {
154
+ "jurisdiction": {
155
+ "key": "pnfe",
156
+ "val": "PNFE"
157
+ },
158
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-33.jpg",
159
+ "branch": "591",
160
+ "team": "Yankee",
161
+ "complex": "783",
162
+ "region": {
163
+ "key": "africa",
164
+ "val": "Africa"
165
+ },
166
+ "experienceYears": 29,
167
+ "lengthOfService": 26,
168
+ "experienceNRC": 0,
169
+ "languages": {
170
+ "key": [
171
+ "ar",
172
+ "pt"
173
+ ],
174
+ "val": "Arabic,<br>Portuguese"
175
+ },
176
+ "countriesFocus": "Belgium,<br> Mexico",
177
+ "products": {
178
+ "key": [
179
+ "privateWealth"
180
+ ],
181
+ "val": "Private wealth"
182
+ },
183
+ "aum": 1190,
184
+ "id": "4",
185
+ "firstName": "Jaquelin",
186
+ "lastName": "Wissby",
187
+ "icaName": "Jaquelin Wissby",
188
+ "email": "jwissby3@php.net",
189
+ "gender": "F",
190
+ "education": "Mariano Marcos State University",
191
+ "linkedInSkill": "Abstract Paintings",
192
+ "motto": "scale granular e-commerce",
193
+ "title": "Staff Accountant III",
194
+ "bioShort": "Morbi quis tortor id nulla ultrices aliquet. Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo.",
195
+ "teamName": "Yankee",
196
+ "address": "98 Porter Avenue",
197
+ "country": "PH"
198
+ },
199
+ {
200
+ "jurisdiction": {
201
+ "key": "lrmip",
202
+ "val": "LRMIP"
203
+ },
204
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-78.jpg",
205
+ "branch": "138",
206
+ "team": "Golf",
207
+ "complex": "793",
208
+ "region": {
209
+ "key": "asia",
210
+ "val": "Asia"
211
+ },
212
+ "experienceYears": 8,
213
+ "lengthOfService": 6,
214
+ "experienceNRC": 21,
215
+ "languages": {
216
+ "key": [
217
+ "it",
218
+ "es"
219
+ ],
220
+ "val": "Italian,<br>Spanish"
221
+ },
222
+ "countriesFocus": "Turkey",
223
+ "products": {
224
+ "key": [
225
+ "foreignExchangeReserves",
226
+ "sovereignWealthFunds",
227
+ "privateWealth"
228
+ ],
229
+ "val": "Foreign Exchange Reserves, Sovereign Wealth Funds, Private wealth"
230
+ },
231
+ "aum": 130,
232
+ "id": "5",
233
+ "firstName": "Clarette",
234
+ "lastName": "Philippard",
235
+ "icaName": "Clarette Philippard",
236
+ "email": "cphilippard4@gizmodo.com",
237
+ "gender": "F",
238
+ "education": "Odessa State Academy of Construction and Architecture",
239
+ "linkedInSkill": "Servers",
240
+ "motto": "strategize efficient partnerships",
241
+ "title": "Director of Sales",
242
+ "bioShort": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.",
243
+ "teamName": "Golf",
244
+ "address": "50 Sheridan Crossing",
245
+ "country": "UA"
246
+ },
247
+ {
248
+ "jurisdiction": {
249
+ "key": "imf",
250
+ "val": "IMF"
251
+ },
252
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-55.jpg",
253
+ "branch": "859",
254
+ "team": "Papa Uniform",
255
+ "complex": "674",
256
+ "region": {
257
+ "key": "westCoast",
258
+ "val": "West Coast"
259
+ },
260
+ "experienceYears": 21,
261
+ "lengthOfService": 9,
262
+ "experienceNRC": 15,
263
+ "languages": {
264
+ "key": [
265
+ "pt",
266
+ "jp"
267
+ ],
268
+ "val": "Portuguese,<br>Japanese"
269
+ },
270
+ "countriesFocus": "India,<br> Saudi Arabia,<br> South Korea,<br> Russia",
271
+ "products": {
272
+ "key": [
273
+ "realEstate",
274
+ "pensionFunds",
275
+ "privateWealth"
276
+ ],
277
+ "val": "Real Estate, Pension funds, Private wealth"
278
+ },
279
+ "aum": 440,
280
+ "id": "6",
281
+ "firstName": "Cherry",
282
+ "lastName": "Epton",
283
+ "icaName": "Cherry Epton",
284
+ "email": "cepton5@google.com",
285
+ "gender": "F",
286
+ "education": "Universitas Sumatera Utara",
287
+ "linkedInSkill": "Umbrellas",
288
+ "motto": "deploy sticky content",
289
+ "title": "Assistant Media Planner",
290
+ "bioShort": "Duis mattis egestas metus. Aenean fermentum. Donec ut mauris eget massa tempor convallis.",
291
+ "teamName": "Papa Uniform",
292
+ "address": "6395 Weeping Birch Trail",
293
+ "country": "ID"
294
+ },
295
+ {
296
+ "jurisdiction": {
297
+ "key": "lrmip",
298
+ "val": "LRMIP"
299
+ },
300
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-25.jpg",
301
+ "branch": "533",
302
+ "team": "Lima Oscar",
303
+ "complex": "242",
304
+ "region": {
305
+ "key": "americas",
306
+ "val": "Americas"
307
+ },
308
+ "experienceYears": 15,
309
+ "lengthOfService": 9,
310
+ "experienceNRC": 23,
311
+ "languages": {
312
+ "key": [
313
+ "fr",
314
+ "hi"
315
+ ],
316
+ "val": "French,<br>Hindi"
317
+ },
318
+ "countriesFocus": "Spain,<br> Canada,<br> Brazil",
319
+ "products": {
320
+ "key": [
321
+ "pensionFunds",
322
+ "mutualFunds",
323
+ "privateEquityFunds"
324
+ ],
325
+ "val": "Pension funds, Mutual Funds, Private Equity Funds"
326
+ },
327
+ "aum": 1160,
328
+ "id": "7",
329
+ "firstName": "Igor",
330
+ "lastName": "Rowlatt",
331
+ "icaName": "Igor Rowlatt",
332
+ "email": "irowlatt6@weibo.com",
333
+ "gender": "M",
334
+ "education": "Jimei University",
335
+ "linkedInSkill": "XCOM",
336
+ "motto": "matrix collaborative models",
337
+ "title": "Clinical Specialist",
338
+ "bioShort": "Aenean auctor gravida sem.",
339
+ "teamName": "Lima Oscar",
340
+ "address": "75567 Service Parkway",
341
+ "country": "CN"
342
+ },
343
+ {
344
+ "jurisdiction": {
345
+ "key": "pnfe",
346
+ "val": "PNFE"
347
+ },
348
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-10.jpg",
349
+ "branch": "505",
350
+ "team": "Yankee Delta",
351
+ "complex": "253",
352
+ "region": {
353
+ "key": "ny",
354
+ "val": "New York Region"
355
+ },
356
+ "experienceYears": 4,
357
+ "lengthOfService": 1,
358
+ "experienceNRC": 13,
359
+ "languages": {
360
+ "key": [
361
+ "kr",
362
+ "pt"
363
+ ],
364
+ "val": "Korean,<br>Portuguese"
365
+ },
366
+ "countriesFocus": "Poland,<br> Canada,<br> Mexico",
367
+ "products": {
368
+ "key": [
369
+ "pensionFunds",
370
+ "realEstate",
371
+ "sovereignWealthFunds"
372
+ ],
373
+ "val": "Pension funds, Real Estate, Sovereign Wealth Funds"
374
+ },
375
+ "aum": 400,
376
+ "id": "8",
377
+ "firstName": "Fabiano",
378
+ "lastName": "Loveguard",
379
+ "icaName": "Fabiano Loveguard",
380
+ "email": "floveguard7@tamu.edu",
381
+ "gender": "M",
382
+ "education": "Chiang Mai Rajabhat University",
383
+ "linkedInSkill": "Print On Demand",
384
+ "motto": "target end-to-end convergence",
385
+ "title": "Programmer Analyst IV",
386
+ "bioShort": "Vivamus vel nulla eget eros elementum pellentesque.",
387
+ "teamName": "Yankee Delta",
388
+ "address": "233 Donald Trail",
389
+ "country": "TH"
390
+ },
391
+ {
392
+ "jurisdiction": {
393
+ "key": "pnfe",
394
+ "val": "PNFE"
395
+ },
396
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-81.jpg",
397
+ "branch": "319",
398
+ "team": "Zulu",
399
+ "complex": "277",
400
+ "region": {
401
+ "key": "americas",
402
+ "val": "Americas"
403
+ },
404
+ "experienceYears": 23,
405
+ "lengthOfService": 8,
406
+ "experienceNRC": 15,
407
+ "languages": {
408
+ "key": [
409
+ "fr"
410
+ ],
411
+ "val": "French"
412
+ },
413
+ "countriesFocus": "Nigeria,<br> Italy",
414
+ "products": {
415
+ "key": [
416
+ "hedgeFunds",
417
+ "pensionFunds",
418
+ "realEstate"
419
+ ],
420
+ "val": "Hedge Funds, Pension funds, Real Estate"
421
+ },
422
+ "aum": 1120,
423
+ "id": "9",
424
+ "firstName": "Shea",
425
+ "lastName": "Dik",
426
+ "icaName": "Shea Dik",
427
+ "email": "sdik8@opensource.org",
428
+ "gender": "F",
429
+ "education": "Universidade Federal do Pará",
430
+ "linkedInSkill": "Pyramid",
431
+ "motto": "strategize distributed web services",
432
+ "title": "Geological Engineer",
433
+ "bioShort": "Quisque ut erat. Curabitur gravida nisi at nibh. In hac habitasse platea dictumst.",
434
+ "teamName": "Zulu",
435
+ "address": "5 Sachs Lane",
436
+ "country": "BR"
437
+ },
438
+ {
439
+ "jurisdiction": {
440
+ "key": "nsas",
441
+ "val": "NSAA"
442
+ },
443
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-40.jpg",
444
+ "branch": "125",
445
+ "team": "Whiskey",
446
+ "complex": "138",
447
+ "region": {
448
+ "key": "americas",
449
+ "val": "Americas"
450
+ },
451
+ "experienceYears": 29,
452
+ "lengthOfService": 11,
453
+ "experienceNRC": 10,
454
+ "languages": {
455
+ "key": [
456
+ "it"
457
+ ],
458
+ "val": "Italian"
459
+ },
460
+ "countriesFocus": "China",
461
+ "products": {
462
+ "key": [
463
+ "privateWealth",
464
+ "hedgeFunds",
465
+ "insuranceCompanies"
466
+ ],
467
+ "val": "Private wealth, Hedge Funds, Insurance Companies"
468
+ },
469
+ "aum": 230,
470
+ "id": "10",
471
+ "firstName": "Dante",
472
+ "lastName": "Ajsik",
473
+ "icaName": "Dante Ajsik",
474
+ "email": "dajsik9@chronoengine.com",
475
+ "gender": "M",
476
+ "education": "Fundação Educacional de Ituverava",
477
+ "linkedInSkill": "eGRC",
478
+ "motto": "morph e-business ROI",
479
+ "title": "Mechanical Systems Engineer",
480
+ "bioShort": "Nunc nisl.",
481
+ "teamName": "Whiskey",
482
+ "address": "7 Pawling Court",
483
+ "country": "BR"
484
+ },
485
+ {
486
+ "jurisdiction": {
487
+ "key": "ussec",
488
+ "val": "USSEC"
489
+ },
490
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-13.jpg",
491
+ "branch": "892",
492
+ "team": "Romeo Echo",
493
+ "complex": "889",
494
+ "region": {
495
+ "key": "africa",
496
+ "val": "Africa"
497
+ },
498
+ "experienceYears": 11,
499
+ "lengthOfService": 1,
500
+ "experienceNRC": 4,
501
+ "languages": {
502
+ "key": [
503
+ "hi"
504
+ ],
505
+ "val": "Hindi"
506
+ },
507
+ "countriesFocus": "Russia,<br> Spain",
508
+ "products": {
509
+ "key": [
510
+ "realEstate"
511
+ ],
512
+ "val": "Real Estate"
513
+ },
514
+ "aum": 1050,
515
+ "id": "11",
516
+ "firstName": "Lucie",
517
+ "lastName": "Batchley",
518
+ "icaName": "Lucie Batchley",
519
+ "email": "lbatchleya@umich.edu",
520
+ "gender": "F",
521
+ "education": "Nanjing University of Chemical Technology",
522
+ "linkedInSkill": "MTTR",
523
+ "motto": "exploit plug-and-play convergence",
524
+ "title": "Research Nurse",
525
+ "bioShort": "Vivamus vel nulla eget eros elementum pellentesque.",
526
+ "teamName": "Romeo Echo",
527
+ "address": "92741 Packers Center",
528
+ "country": "CN"
529
+ },
530
+ {
531
+ "jurisdiction": {
532
+ "key": "lrmip",
533
+ "val": "LRMIP"
534
+ },
535
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-8.jpg",
536
+ "branch": "106",
537
+ "team": "Lima",
538
+ "complex": "778",
539
+ "region": {
540
+ "key": "ny",
541
+ "val": "New York Region"
542
+ },
543
+ "experienceYears": 27,
544
+ "lengthOfService": 3,
545
+ "experienceNRC": 26,
546
+ "languages": {
547
+ "key": [
548
+ "ru"
549
+ ],
550
+ "val": "Russian"
551
+ },
552
+ "countriesFocus": "South Korea",
553
+ "products": {
554
+ "key": [
555
+ "privateEquityFunds"
556
+ ],
557
+ "val": "Private Equity Funds"
558
+ },
559
+ "aum": 1130,
560
+ "id": "12",
561
+ "firstName": "Maria",
562
+ "lastName": "Itzkovich",
563
+ "icaName": "Maria Itzkovich",
564
+ "email": "mitzkovichb@sina.com.cn",
565
+ "gender": "F",
566
+ "education": "University of Ljubljana",
567
+ "linkedInSkill": "WSGI",
568
+ "motto": "empower turn-key e-business",
569
+ "title": "Senior Sales Associate",
570
+ "bioShort": "Proin leo odio, porttitor id, consequat in, consequat ut, nulla.",
571
+ "teamName": "Lima",
572
+ "address": "0084 Amoth Plaza",
573
+ "country": "SI"
574
+ },
575
+ {
576
+ "jurisdiction": {
577
+ "key": "nsas",
578
+ "val": "NSAA"
579
+ },
580
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-76.jpg",
581
+ "branch": "061",
582
+ "team": "Lima Oscar",
583
+ "complex": "045",
584
+ "region": {
585
+ "key": "americas",
586
+ "val": "Americas"
587
+ },
588
+ "experienceYears": 18,
589
+ "lengthOfService": 10,
590
+ "experienceNRC": 19,
591
+ "languages": {
592
+ "key": [
593
+ "it"
594
+ ],
595
+ "val": "Italian"
596
+ },
597
+ "countriesFocus": "Indonesia,<br> United Kingdom,<br> Nigeria",
598
+ "products": {
599
+ "key": [
600
+ "privateEquityFunds"
601
+ ],
602
+ "val": "Private Equity Funds"
603
+ },
604
+ "aum": 60,
605
+ "id": "13",
606
+ "firstName": "Kerwin",
607
+ "lastName": "Jaskowicz",
608
+ "icaName": "Kerwin Jaskowicz",
609
+ "email": "kjaskowiczc@imageshack.us",
610
+ "gender": "M",
611
+ "education": "University of the Cordilleras",
612
+ "linkedInSkill": "CVS",
613
+ "motto": "transition one-to-one solutions",
614
+ "title": "Accountant I",
615
+ "bioShort": "Nullam sit amet turpis elementum ligula vehicula consequat. Morbi a ipsum.",
616
+ "teamName": "Lima Oscar",
617
+ "address": "117 Hanson Court",
618
+ "country": "PH"
619
+ },
620
+ {
621
+ "jurisdiction": {
622
+ "key": "pnfe",
623
+ "val": "PNFE"
624
+ },
625
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-7.jpg",
626
+ "branch": "700",
627
+ "team": "Sierra Delta",
628
+ "complex": "292",
629
+ "region": {
630
+ "key": "americas",
631
+ "val": "Americas"
632
+ },
633
+ "experienceYears": 12,
634
+ "lengthOfService": 8,
635
+ "experienceNRC": 14,
636
+ "languages": {
637
+ "key": [
638
+ "hi",
639
+ "jp",
640
+ "de"
641
+ ],
642
+ "val": "Hindi,<br>Japanese,<br>German"
643
+ },
644
+ "countriesFocus": "Canada",
645
+ "products": {
646
+ "key": [
647
+ "pensionFunds"
648
+ ],
649
+ "val": "Pension funds"
650
+ },
651
+ "aum": 720,
652
+ "id": "14",
653
+ "firstName": "Kirsten",
654
+ "lastName": "Bromwich",
655
+ "icaName": "Kirsten Bromwich",
656
+ "email": "kbromwichd@ca.gov",
657
+ "gender": "F",
658
+ "education": "Huazhong University of Science and Technology",
659
+ "linkedInSkill": "Ignite-UX",
660
+ "motto": "mesh B2B deliverables",
661
+ "title": "Professor",
662
+ "bioShort": "Nullam sit amet turpis elementum ligula vehicula consequat.",
663
+ "teamName": "Sierra Delta",
664
+ "address": "18630 Del Sol Park",
665
+ "country": "CN"
666
+ },
667
+ {
668
+ "jurisdiction": {
669
+ "key": "lrmip",
670
+ "val": "LRMIP"
671
+ },
672
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-37.jpg",
673
+ "branch": "038",
674
+ "team": "Hotel Whiskey",
675
+ "complex": "788",
676
+ "region": {
677
+ "key": "asia",
678
+ "val": "Asia"
679
+ },
680
+ "experienceYears": 16,
681
+ "lengthOfService": 10,
682
+ "experienceNRC": 11,
683
+ "languages": {
684
+ "key": [
685
+ "jp",
686
+ "ar",
687
+ "ru"
688
+ ],
689
+ "val": "Japanese,<br>Arabic,<br>Russian"
690
+ },
691
+ "countriesFocus": "Turkey,<br> Canada,<br> United Kingdom,<br> Poland",
692
+ "products": {
693
+ "key": [
694
+ "realEstate",
695
+ "privateWealth",
696
+ "mutualFunds"
697
+ ],
698
+ "val": "Real Estate, Private wealth, Mutual Funds"
699
+ },
700
+ "aum": 410,
701
+ "id": "15",
702
+ "firstName": "Betsey",
703
+ "lastName": "Wolver",
704
+ "icaName": "Betsey Wolver",
705
+ "email": "bwolvere@typepad.com",
706
+ "gender": "F",
707
+ "education": "Universidad Pedagógica Nacional \"Francisco Morazán\"",
708
+ "linkedInSkill": "High Availability Clustering",
709
+ "motto": "enhance value-added e-business",
710
+ "title": "Programmer IV",
711
+ "bioShort": "Etiam justo. Etiam pretium iaculis justo.",
712
+ "teamName": "Hotel Whiskey",
713
+ "address": "81475 Golf Course Lane",
714
+ "country": "HN"
715
+ },
716
+ {
717
+ "jurisdiction": {
718
+ "key": "ussec",
719
+ "val": "USSEC"
720
+ },
721
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-88.jpg",
722
+ "branch": "747",
723
+ "team": "Victor X-ray",
724
+ "complex": "433",
725
+ "region": {
726
+ "key": "japan",
727
+ "val": "Japan"
728
+ },
729
+ "experienceYears": 13,
730
+ "lengthOfService": 8,
731
+ "experienceNRC": 12,
732
+ "languages": {
733
+ "key": [
734
+ "ar"
735
+ ],
736
+ "val": "Arabic"
737
+ },
738
+ "countriesFocus": "Sweden,<br> Germany,<br> Poland",
739
+ "products": {
740
+ "key": [
741
+ "sovereignWealthFunds"
742
+ ],
743
+ "val": "Sovereign Wealth Funds"
744
+ },
745
+ "aum": 580,
746
+ "id": "45",
747
+ "firstName": "Zacharias",
748
+ "lastName": "Chew",
749
+ "icaName": "Zacharias Chew",
750
+ "email": "zchew18@gmpg.org",
751
+ "gender": "M",
752
+ "education": "Ecole Nationale Supérieure de Chimie de Mulhouse",
753
+ "linkedInSkill": "Erlang",
754
+ "motto": "target value-added deliverables",
755
+ "title": "VP Product Management",
756
+ "bioShort": "Pellentesque viverra pede ac diam. Cras pellentesque volutpat dui. Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc.",
757
+ "teamName": "Victor X-ray",
758
+ "address": "7451 Village Street",
759
+ "country": "FR"
760
+ },
761
+ {
762
+ "jurisdiction": {
763
+ "key": "imf",
764
+ "val": "IMF"
765
+ },
766
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-86.jpg",
767
+ "branch": "417",
768
+ "team": "Victor Yankee",
769
+ "complex": "716",
770
+ "region": {
771
+ "key": "africa",
772
+ "val": "Africa"
773
+ },
774
+ "experienceYears": 29,
775
+ "lengthOfService": 23,
776
+ "experienceNRC": 8,
777
+ "languages": {
778
+ "key": [
779
+ "zh",
780
+ "jp"
781
+ ],
782
+ "val": "Chinese,<br>Japanese"
783
+ },
784
+ "countriesFocus": "Turkey",
785
+ "products": {
786
+ "key": [
787
+ "privateEquityFunds",
788
+ "sovereignWealthFunds"
789
+ ],
790
+ "val": "Private Equity Funds, Sovereign Wealth Funds"
791
+ },
792
+ "aum": 950,
793
+ "id": "46",
794
+ "firstName": "Moises",
795
+ "lastName": "Mochar",
796
+ "icaName": "Moises Mochar",
797
+ "email": "mmochar19@blinklist.com",
798
+ "gender": "M",
799
+ "education": "Utrecht University",
800
+ "linkedInSkill": "Pumps",
801
+ "motto": "redefine 24/7 ROI",
802
+ "title": "Geologist II",
803
+ "bioShort": "Vestibulum sed magna at nunc commodo placerat. Praesent blandit. Nam nulla.",
804
+ "teamName": "Victor Yankee",
805
+ "address": "92 Cardinal Parkway",
806
+ "country": "NL"
807
+ },
808
+ {
809
+ "jurisdiction": {
810
+ "key": "lrmip",
811
+ "val": "LRMIP"
812
+ },
813
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-2.jpg",
814
+ "branch": "837",
815
+ "team": "Papa",
816
+ "complex": "275",
817
+ "region": {
818
+ "key": "americas",
819
+ "val": "Americas"
820
+ },
821
+ "experienceYears": 29,
822
+ "lengthOfService": 14,
823
+ "experienceNRC": 3,
824
+ "languages": {
825
+ "key": [
826
+ "ar",
827
+ "zh"
828
+ ],
829
+ "val": "Arabic,<br>Chinese"
830
+ },
831
+ "countriesFocus": "Japan,<br> Canada,<br> Italy",
832
+ "products": {
833
+ "key": [
834
+ "mutualFunds"
835
+ ],
836
+ "val": "Mutual Funds"
837
+ },
838
+ "aum": 380,
839
+ "id": "47",
840
+ "firstName": "Giana",
841
+ "lastName": "Kumaar",
842
+ "icaName": "Giana Kumaar",
843
+ "email": "gkumaar1a@booking.com",
844
+ "gender": "F",
845
+ "education": "Davidson College",
846
+ "linkedInSkill": "TNS",
847
+ "motto": "generate integrated infrastructures",
848
+ "title": "Editor",
849
+ "bioShort": "Vivamus vel nulla eget eros elementum pellentesque. Quisque porta volutpat erat. Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla.",
850
+ "teamName": "Papa",
851
+ "address": "09321 Ilene Terrace",
852
+ "country": "US"
853
+ },
854
+ {
855
+ "jurisdiction": {
856
+ "key": "imf",
857
+ "val": "IMF"
858
+ },
859
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-69.jpg",
860
+ "branch": "540",
861
+ "team": "Whiskey Victor",
862
+ "complex": "171",
863
+ "region": {
864
+ "key": "oceania",
865
+ "val": "Oceania"
866
+ },
867
+ "experienceYears": 16,
868
+ "lengthOfService": 13,
869
+ "experienceNRC": 17,
870
+ "languages": {
871
+ "key": [
872
+ "kr",
873
+ "de"
874
+ ],
875
+ "val": "Korean,<br>German"
876
+ },
877
+ "countriesFocus": "Nigeria,<br> China,<br> Switzerland,<br> Russia",
878
+ "products": {
879
+ "key": [
880
+ "sovereignWealthFunds",
881
+ "pensionFunds"
882
+ ],
883
+ "val": "Sovereign Wealth Funds, Pension funds"
884
+ },
885
+ "aum": 840,
886
+ "id": "48",
887
+ "firstName": "Cullie",
888
+ "lastName": "Gockeler",
889
+ "icaName": "Cullie Gockeler",
890
+ "email": "cgockeler1b@de.vu",
891
+ "gender": "M",
892
+ "education": "Universitas Nusa Cendana",
893
+ "linkedInSkill": "Residential Mortgages",
894
+ "motto": "architect scalable bandwidth",
895
+ "title": "Environmental Tech",
896
+ "bioShort": "Ut at dolor quis odio consequat varius. Integer ac leo. Pellentesque ultrices mattis odio.",
897
+ "teamName": "Whiskey Victor",
898
+ "address": "7371 Erie Drive",
899
+ "country": "ID"
900
+ },
901
+ {
902
+ "jurisdiction": {
903
+ "key": "lrmip",
904
+ "val": "LRMIP"
905
+ },
906
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-78.jpg",
907
+ "branch": "075",
908
+ "team": "Foxtrot Quebec",
909
+ "complex": "655",
910
+ "region": {
911
+ "key": "oceania",
912
+ "val": "Oceania"
913
+ },
914
+ "experienceYears": 24,
915
+ "lengthOfService": 17,
916
+ "experienceNRC": 2,
917
+ "languages": {
918
+ "key": [
919
+ "it"
920
+ ],
921
+ "val": "Italian"
922
+ },
923
+ "countriesFocus": "France",
924
+ "products": {
925
+ "key": [
926
+ "pensionFunds",
927
+ "sovereignWealthFunds",
928
+ "insuranceCompanies"
929
+ ],
930
+ "val": "Pension funds, Sovereign Wealth Funds, Insurance Companies"
931
+ },
932
+ "aum": 760,
933
+ "id": "49",
934
+ "firstName": "Amandie",
935
+ "lastName": "Coast",
936
+ "icaName": "Amandie Coast",
937
+ "email": "acoast1c@exblog.jp",
938
+ "gender": "F",
939
+ "education": "Kiev Slavonic University",
940
+ "linkedInSkill": "Google Webmaster Tools",
941
+ "motto": "exploit front-end architectures",
942
+ "title": "Internal Auditor",
943
+ "bioShort": "In est risus, auctor sed, tristique in, tempus sit amet, sem. Fusce consequat. Nulla nisl.",
944
+ "teamName": "Foxtrot Quebec",
945
+ "address": "8 Moland Hill",
946
+ "country": "UA"
947
+ },
948
+ {
949
+ "jurisdiction": {
950
+ "key": "pnfe",
951
+ "val": "PNFE"
952
+ },
953
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-29.jpg",
954
+ "branch": "104",
955
+ "team": "Uniform Echo",
956
+ "complex": "590",
957
+ "region": {
958
+ "key": "europe",
959
+ "val": "Europe"
960
+ },
961
+ "experienceYears": 29,
962
+ "lengthOfService": 19,
963
+ "experienceNRC": 19,
964
+ "languages": {
965
+ "key": [
966
+ "ru"
967
+ ],
968
+ "val": "Russian"
969
+ },
970
+ "countriesFocus": "Brazil",
971
+ "products": {
972
+ "key": [
973
+ "pensionFunds",
974
+ "mutualFunds"
975
+ ],
976
+ "val": "Pension funds, Mutual Funds"
977
+ },
978
+ "aum": 560,
979
+ "id": "50",
980
+ "firstName": "Aland",
981
+ "lastName": "Langmuir",
982
+ "icaName": "Aland Langmuir",
983
+ "email": "alangmuir1d@ox.ac.uk",
984
+ "gender": "M",
985
+ "education": "European Business School",
986
+ "linkedInSkill": "Rhinoceros",
987
+ "motto": "matrix proactive methodologies",
988
+ "title": "Research Assistant II",
989
+ "bioShort": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa. Donec dapibus. Duis at velit eu est congue elementum.",
990
+ "teamName": "Uniform Echo",
991
+ "address": "15106 Tennyson Pass",
992
+ "country": "FR"
993
+ },
994
+ {
995
+ "jurisdiction": {
996
+ "key": "imf",
997
+ "val": "IMF"
998
+ },
999
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-59.jpg",
1000
+ "branch": "408",
1001
+ "team": "Hotel",
1002
+ "complex": "377",
1003
+ "region": {
1004
+ "key": "oceania",
1005
+ "val": "Oceania"
1006
+ },
1007
+ "experienceYears": 13,
1008
+ "lengthOfService": 3,
1009
+ "experienceNRC": 16,
1010
+ "languages": {
1011
+ "key": [
1012
+ "es",
1013
+ "it"
1014
+ ],
1015
+ "val": "Spanish,<br>Italian"
1016
+ },
1017
+ "countriesFocus": "Turkey,<br> United States,<br> United Kingdom",
1018
+ "products": {
1019
+ "key": [
1020
+ "privateWealth",
1021
+ "insuranceCompanies"
1022
+ ],
1023
+ "val": "Private wealth, Insurance Companies"
1024
+ },
1025
+ "aum": 100,
1026
+ "id": "51",
1027
+ "firstName": "Kylie",
1028
+ "lastName": "Buss",
1029
+ "icaName": "Kylie Buss",
1030
+ "email": "kbuss1e@disqus.com",
1031
+ "gender": "M",
1032
+ "education": "Université Catholique de Lyon",
1033
+ "linkedInSkill": "Cell Biology",
1034
+ "motto": "generate strategic e-services",
1035
+ "title": "Safety Technician IV",
1036
+ "bioShort": "Nam dui.",
1037
+ "teamName": "Hotel",
1038
+ "address": "4 Portage Plaza",
1039
+ "country": "FR"
1040
+ },
1041
+ {
1042
+ "jurisdiction": {
1043
+ "key": "nsas",
1044
+ "val": "NSAA"
1045
+ },
1046
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-59.jpg",
1047
+ "branch": "176",
1048
+ "team": "Foxtrot",
1049
+ "complex": "135",
1050
+ "region": {
1051
+ "key": "oceania",
1052
+ "val": "Oceania"
1053
+ },
1054
+ "experienceYears": 27,
1055
+ "lengthOfService": 16,
1056
+ "experienceNRC": 18,
1057
+ "languages": {
1058
+ "key": [
1059
+ "ru",
1060
+ "zh"
1061
+ ],
1062
+ "val": "Russian,<br>Chinese"
1063
+ },
1064
+ "countriesFocus": "Italy",
1065
+ "products": {
1066
+ "key": [
1067
+ "pensionFunds"
1068
+ ],
1069
+ "val": "Pension funds"
1070
+ },
1071
+ "aum": 1030,
1072
+ "id": "52",
1073
+ "firstName": "Bonny",
1074
+ "lastName": "Wooldridge",
1075
+ "icaName": "Bonny Wooldridge",
1076
+ "email": "bwooldridge1f@google.com.br",
1077
+ "gender": "F",
1078
+ "education": "Sultan Mizan Zainal Abidin Polytechnic",
1079
+ "linkedInSkill": "Young Adult Literature",
1080
+ "motto": "unleash impactful portals",
1081
+ "title": "Developer I",
1082
+ "bioShort": "In congue. Etiam justo. Etiam pretium iaculis justo.",
1083
+ "teamName": "Foxtrot",
1084
+ "address": "1915 Rutledge Parkway",
1085
+ "country": "MY"
1086
+ },
1087
+ {
1088
+ "jurisdiction": {
1089
+ "key": "lrmip",
1090
+ "val": "LRMIP"
1091
+ },
1092
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-15.jpg",
1093
+ "branch": "739",
1094
+ "team": "Juliett Zulu",
1095
+ "complex": "625",
1096
+ "region": {
1097
+ "key": "asia",
1098
+ "val": "Asia"
1099
+ },
1100
+ "experienceYears": 14,
1101
+ "lengthOfService": 2,
1102
+ "experienceNRC": 9,
1103
+ "languages": {
1104
+ "key": [
1105
+ "zh",
1106
+ "kr",
1107
+ "de"
1108
+ ],
1109
+ "val": "Chinese,<br>Korean,<br>German"
1110
+ },
1111
+ "countriesFocus": "Netherlands,<br> South Korea,<br> Nigeria",
1112
+ "products": {
1113
+ "key": [
1114
+ "insuranceCompanies",
1115
+ "reits",
1116
+ "sovereignWealthFunds"
1117
+ ],
1118
+ "val": "Insurance Companies, REITs, Sovereign Wealth Funds"
1119
+ },
1120
+ "aum": 1160,
1121
+ "id": "53",
1122
+ "firstName": "Gordie",
1123
+ "lastName": "Hoyes",
1124
+ "icaName": "Gordie Hoyes",
1125
+ "email": "ghoyes1g@craigslist.org",
1126
+ "gender": "M",
1127
+ "education": "Academy of Drama and Film",
1128
+ "linkedInSkill": "JConsole",
1129
+ "motto": "innovate efficient applications",
1130
+ "title": "Nurse",
1131
+ "bioShort": "Vivamus vel nulla eget eros elementum pellentesque. Quisque porta volutpat erat.",
1132
+ "teamName": "Juliett Zulu",
1133
+ "address": "43 Dakota Parkway",
1134
+ "country": "HU"
1135
+ },
1136
+ {
1137
+ "jurisdiction": {
1138
+ "key": "ussec",
1139
+ "val": "USSEC"
1140
+ },
1141
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-89.jpg",
1142
+ "branch": "311",
1143
+ "team": "Victor",
1144
+ "complex": "898",
1145
+ "region": {
1146
+ "key": "asia",
1147
+ "val": "Asia"
1148
+ },
1149
+ "experienceYears": 24,
1150
+ "lengthOfService": 2,
1151
+ "experienceNRC": 0,
1152
+ "languages": {
1153
+ "key": [
1154
+ "it",
1155
+ "fr",
1156
+ "de"
1157
+ ],
1158
+ "val": "Italian,<br>French,<br>German"
1159
+ },
1160
+ "countriesFocus": "Mexico,<br> United States",
1161
+ "products": {
1162
+ "key": [
1163
+ "hedgeFunds",
1164
+ "realEstate"
1165
+ ],
1166
+ "val": "Hedge Funds, Real Estate"
1167
+ },
1168
+ "aum": 1190,
1169
+ "id": "54",
1170
+ "firstName": "Irwinn",
1171
+ "lastName": "Philliphs",
1172
+ "icaName": "Irwinn Philliphs",
1173
+ "email": "iphilliphs1h@last.fm",
1174
+ "gender": "M",
1175
+ "education": "Shanghai International Studies University",
1176
+ "linkedInSkill": "Commercial Property Owners",
1177
+ "motto": "architect scalable technologies",
1178
+ "title": "Analog Circuit Design manager",
1179
+ "bioShort": "Pellentesque at nulla. Suspendisse potenti.",
1180
+ "teamName": "Victor",
1181
+ "address": "5219 Westport Circle",
1182
+ "country": "CN"
1183
+ },
1184
+ {
1185
+ "jurisdiction": {
1186
+ "key": "lrmip",
1187
+ "val": "LRMIP"
1188
+ },
1189
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-9.jpg",
1190
+ "branch": "536",
1191
+ "team": "India Alfa",
1192
+ "complex": "601",
1193
+ "region": {
1194
+ "key": "oceania",
1195
+ "val": "Oceania"
1196
+ },
1197
+ "experienceYears": 21,
1198
+ "lengthOfService": 18,
1199
+ "experienceNRC": 16,
1200
+ "languages": {
1201
+ "key": [
1202
+ "es"
1203
+ ],
1204
+ "val": "Spanish"
1205
+ },
1206
+ "countriesFocus": "United States,<br> Japan,<br> Italy,<br> Poland",
1207
+ "products": {
1208
+ "key": [
1209
+ "insuranceCompanies",
1210
+ "mutualFunds",
1211
+ "privateEquityFunds"
1212
+ ],
1213
+ "val": "Insurance Companies, Mutual Funds, Private Equity Funds"
1214
+ },
1215
+ "aum": 530,
1216
+ "id": "55",
1217
+ "firstName": "Stanwood",
1218
+ "lastName": "Aspling",
1219
+ "icaName": "Stanwood Aspling",
1220
+ "email": "saspling1i@google.es",
1221
+ "gender": "M",
1222
+ "education": "Halmstad University College",
1223
+ "linkedInSkill": "LDP",
1224
+ "motto": "target interactive methodologies",
1225
+ "title": "Sales Representative",
1226
+ "bioShort": "Morbi vel lectus in quam fringilla rhoncus. Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis. Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci.",
1227
+ "teamName": "India Alfa",
1228
+ "address": "664 Norway Maple Parkway",
1229
+ "country": "SE"
1230
+ },
1231
+ {
1232
+ "jurisdiction": {
1233
+ "key": "ussec",
1234
+ "val": "USSEC"
1235
+ },
1236
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-31.jpg",
1237
+ "branch": "340",
1238
+ "team": "Quebec Whiskey",
1239
+ "complex": "077",
1240
+ "region": {
1241
+ "key": "americas",
1242
+ "val": "Americas"
1243
+ },
1244
+ "experienceYears": 15,
1245
+ "lengthOfService": 2,
1246
+ "experienceNRC": 5,
1247
+ "languages": {
1248
+ "key": [
1249
+ "ru"
1250
+ ],
1251
+ "val": "Russian"
1252
+ },
1253
+ "countriesFocus": "Mexico",
1254
+ "products": {
1255
+ "key": [
1256
+ "mutualFunds"
1257
+ ],
1258
+ "val": "Mutual Funds"
1259
+ },
1260
+ "aum": 110,
1261
+ "id": "56",
1262
+ "firstName": "Mathew",
1263
+ "lastName": "McKeefry",
1264
+ "icaName": "Mathew McKeefry",
1265
+ "email": "mmckeefry1j@wikia.com",
1266
+ "gender": "M",
1267
+ "education": "Perm State Medical Academy",
1268
+ "linkedInSkill": "CNC Manufacturing",
1269
+ "motto": "exploit cross-platform e-tailers",
1270
+ "title": "Health Coach I",
1271
+ "bioShort": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla. Nunc purus. Phasellus in felis.",
1272
+ "teamName": "Quebec Whiskey",
1273
+ "address": "2071 Village Green Parkway",
1274
+ "country": "RU"
1275
+ },
1276
+ {
1277
+ "jurisdiction": {
1278
+ "key": "ussec",
1279
+ "val": "USSEC"
1280
+ },
1281
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-32.jpg",
1282
+ "branch": "648",
1283
+ "team": "Zulu",
1284
+ "complex": "505",
1285
+ "region": {
1286
+ "key": "asia",
1287
+ "val": "Asia"
1288
+ },
1289
+ "experienceYears": 7,
1290
+ "lengthOfService": 2,
1291
+ "experienceNRC": 18,
1292
+ "languages": {
1293
+ "key": [
1294
+ "ru"
1295
+ ],
1296
+ "val": "Russian"
1297
+ },
1298
+ "countriesFocus": "United Kingdom,<br> Russia,<br> Poland,<br> Spain",
1299
+ "products": {
1300
+ "key": [
1301
+ "insuranceCompanies",
1302
+ "reits",
1303
+ "sovereignWealthFunds"
1304
+ ],
1305
+ "val": "Insurance Companies, REITs, Sovereign Wealth Funds"
1306
+ },
1307
+ "aum": 220,
1308
+ "id": "57",
1309
+ "firstName": "Andi",
1310
+ "lastName": "Hawkey",
1311
+ "icaName": "Andi Hawkey",
1312
+ "email": "ahawkey1k@princeton.edu",
1313
+ "gender": "F",
1314
+ "education": "Tomas Bata University in Zlin",
1315
+ "linkedInSkill": "Evangelism",
1316
+ "motto": "implement best-of-breed models",
1317
+ "title": "Financial Analyst",
1318
+ "bioShort": "Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue. Aliquam erat volutpat.",
1319
+ "teamName": "Zulu",
1320
+ "address": "74913 Oak Junction",
1321
+ "country": "CZ"
1322
+ },
1323
+ {
1324
+ "jurisdiction": {
1325
+ "key": "nsas",
1326
+ "val": "NSAA"
1327
+ },
1328
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-33.jpg",
1329
+ "branch": "700",
1330
+ "team": "Romeo Bravo",
1331
+ "complex": "411",
1332
+ "region": {
1333
+ "key": "oceania",
1334
+ "val": "Oceania"
1335
+ },
1336
+ "experienceYears": 29,
1337
+ "lengthOfService": 13,
1338
+ "experienceNRC": 20,
1339
+ "languages": {
1340
+ "key": [
1341
+ "fr"
1342
+ ],
1343
+ "val": "French"
1344
+ },
1345
+ "countriesFocus": "Canada,<br> Thailand",
1346
+ "products": {
1347
+ "key": [
1348
+ "pensionFunds"
1349
+ ],
1350
+ "val": "Pension funds"
1351
+ },
1352
+ "aum": 1080,
1353
+ "id": "58",
1354
+ "firstName": "Alexandra",
1355
+ "lastName": "Billson",
1356
+ "icaName": "Alexandra Billson",
1357
+ "email": "abillson1l@soundcloud.com",
1358
+ "gender": "F",
1359
+ "education": "Escuela de Ingeniería de Antioquia",
1360
+ "linkedInSkill": "LDPC",
1361
+ "motto": "transform virtual technologies",
1362
+ "title": "Research Nurse",
1363
+ "bioShort": "Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam.",
1364
+ "teamName": "Romeo Bravo",
1365
+ "address": "061 Fairview Crossing",
1366
+ "country": "CO"
1367
+ },
1368
+ {
1369
+ "jurisdiction": {
1370
+ "key": "pnfe",
1371
+ "val": "PNFE"
1372
+ },
1373
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-80.jpg",
1374
+ "branch": "020",
1375
+ "team": "Charlie Tango",
1376
+ "complex": "191",
1377
+ "region": {
1378
+ "key": "japan",
1379
+ "val": "Japan"
1380
+ },
1381
+ "experienceYears": 23,
1382
+ "lengthOfService": 21,
1383
+ "experienceNRC": 9,
1384
+ "languages": {
1385
+ "key": [
1386
+ "ar",
1387
+ "kr"
1388
+ ],
1389
+ "val": "Arabic,<br>Korean"
1390
+ },
1391
+ "countriesFocus": "Sweden,<br> United States,<br> Brazil",
1392
+ "products": {
1393
+ "key": [
1394
+ "pensionFunds",
1395
+ "hedgeFunds",
1396
+ "realEstate"
1397
+ ],
1398
+ "val": "Pension funds, Hedge Funds, Real Estate"
1399
+ },
1400
+ "aum": 660,
1401
+ "id": "59",
1402
+ "firstName": "Becky",
1403
+ "lastName": "Pauler",
1404
+ "icaName": "Becky Pauler",
1405
+ "email": "bpauler1m@webeden.co.uk",
1406
+ "gender": "F",
1407
+ "education": "Universidad Mariano Gálvez",
1408
+ "linkedInSkill": "Sourcing",
1409
+ "motto": "harness viral relationships",
1410
+ "title": "Statistician I",
1411
+ "bioShort": "Donec quis orci eget orci vehicula condimentum. Curabitur in libero ut massa volutpat convallis.",
1412
+ "teamName": "Charlie Tango",
1413
+ "address": "61789 Colorado Hill",
1414
+ "country": "GT"
1415
+ },
1416
+ {
1417
+ "jurisdiction": {
1418
+ "key": "lrmip",
1419
+ "val": "LRMIP"
1420
+ },
1421
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-43.jpg",
1422
+ "branch": "687",
1423
+ "team": "Hotel",
1424
+ "complex": "393",
1425
+ "region": {
1426
+ "key": "japan",
1427
+ "val": "Japan"
1428
+ },
1429
+ "experienceYears": 26,
1430
+ "lengthOfService": 21,
1431
+ "experienceNRC": 12,
1432
+ "languages": {
1433
+ "key": [
1434
+ "ru"
1435
+ ],
1436
+ "val": "Russian"
1437
+ },
1438
+ "countriesFocus": "South Korea,<br> India,<br> Saudi Arabia,<br> Italy",
1439
+ "products": {
1440
+ "key": [
1441
+ "sovereignWealthFunds",
1442
+ "reits"
1443
+ ],
1444
+ "val": "Sovereign Wealth Funds, REITs"
1445
+ },
1446
+ "aum": 450,
1447
+ "id": "60",
1448
+ "firstName": "Penelopa",
1449
+ "lastName": "Brakewell",
1450
+ "icaName": "Penelopa Brakewell",
1451
+ "email": "pbrakewell1n@wikipedia.org",
1452
+ "gender": "F",
1453
+ "education": "Universidad Nacional San Luis Gonzaga",
1454
+ "linkedInSkill": "Tortoise SVN",
1455
+ "motto": "monetize visionary methodologies",
1456
+ "title": "Pharmacist",
1457
+ "bioShort": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue.",
1458
+ "teamName": "Hotel",
1459
+ "address": "5647 Del Sol Way",
1460
+ "country": "PE"
1461
+ },
1462
+ {
1463
+ "jurisdiction": {
1464
+ "key": "ussec",
1465
+ "val": "USSEC"
1466
+ },
1467
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-61.jpg",
1468
+ "branch": "694",
1469
+ "team": "Oscar India",
1470
+ "complex": "833",
1471
+ "region": {
1472
+ "key": "oceania",
1473
+ "val": "Oceania"
1474
+ },
1475
+ "experienceYears": 5,
1476
+ "lengthOfService": 1,
1477
+ "experienceNRC": 14,
1478
+ "languages": {
1479
+ "key": [
1480
+ "de"
1481
+ ],
1482
+ "val": "German"
1483
+ },
1484
+ "countriesFocus": "South Korea,<br> Russia",
1485
+ "products": {
1486
+ "key": [
1487
+ "foreignExchangeReserves",
1488
+ "privateWealth"
1489
+ ],
1490
+ "val": "Foreign Exchange Reserves, Private wealth"
1491
+ },
1492
+ "aum": 660,
1493
+ "id": "61",
1494
+ "firstName": "Thorvald",
1495
+ "lastName": "Alliker",
1496
+ "icaName": "Thorvald Alliker",
1497
+ "email": "talliker1o@nydailynews.com",
1498
+ "gender": "M",
1499
+ "education": "Prague Institute of Chemical Technology",
1500
+ "linkedInSkill": "TUPE",
1501
+ "motto": "aggregate visionary e-commerce",
1502
+ "title": "Electrical Engineer",
1503
+ "bioShort": "Cras in purus eu magna vulputate luctus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.",
1504
+ "teamName": "Oscar India",
1505
+ "address": "33 Mifflin Park",
1506
+ "country": "CZ"
1507
+ },
1508
+ {
1509
+ "jurisdiction": {
1510
+ "key": "ussec",
1511
+ "val": "USSEC"
1512
+ },
1513
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-19.jpg",
1514
+ "branch": "873",
1515
+ "team": "Hotel Echo",
1516
+ "complex": "460",
1517
+ "region": {
1518
+ "key": "ny",
1519
+ "val": "New York Region"
1520
+ },
1521
+ "experienceYears": 11,
1522
+ "lengthOfService": 9,
1523
+ "experienceNRC": 22,
1524
+ "languages": {
1525
+ "key": [
1526
+ "kr",
1527
+ "hi",
1528
+ "fr"
1529
+ ],
1530
+ "val": "Korean,<br>Hindi,<br>French"
1531
+ },
1532
+ "countriesFocus": "South Korea,<br> Nigeria,<br> Switzerland,<br> Brazil",
1533
+ "products": {
1534
+ "key": [
1535
+ "hedgeFunds",
1536
+ "mutualFunds",
1537
+ "privateWealth"
1538
+ ],
1539
+ "val": "Hedge Funds, Mutual Funds, Private wealth"
1540
+ },
1541
+ "aum": 480,
1542
+ "id": "62",
1543
+ "firstName": "Panchito",
1544
+ "lastName": "Hext",
1545
+ "icaName": "Panchito Hext",
1546
+ "email": "phext1p@howstuffworks.com",
1547
+ "gender": "M",
1548
+ "education": "College of New Caledonia",
1549
+ "linkedInSkill": "HSRP",
1550
+ "motto": "syndicate out-of-the-box e-commerce",
1551
+ "title": "Web Developer IV",
1552
+ "bioShort": "Integer tincidunt ante vel ipsum.",
1553
+ "teamName": "Hotel Echo",
1554
+ "address": "9 Arkansas Circle",
1555
+ "country": "CA"
1556
+ },
1557
+ {
1558
+ "jurisdiction": {
1559
+ "key": "imf",
1560
+ "val": "IMF"
1561
+ },
1562
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-16.jpg",
1563
+ "branch": "354",
1564
+ "team": "Golf Charlie",
1565
+ "complex": "072",
1566
+ "region": {
1567
+ "key": "oceania",
1568
+ "val": "Oceania"
1569
+ },
1570
+ "experienceYears": 8,
1571
+ "lengthOfService": 2,
1572
+ "experienceNRC": 2,
1573
+ "languages": {
1574
+ "key": [
1575
+ "pt",
1576
+ "fr"
1577
+ ],
1578
+ "val": "Portuguese,<br>French"
1579
+ },
1580
+ "countriesFocus": "Germany,<br> Australia",
1581
+ "products": {
1582
+ "key": [
1583
+ "insuranceCompanies",
1584
+ "sovereignWealthFunds"
1585
+ ],
1586
+ "val": "Insurance Companies, Sovereign Wealth Funds"
1587
+ },
1588
+ "aum": 720,
1589
+ "id": "63",
1590
+ "firstName": "Husein",
1591
+ "lastName": "Kohnert",
1592
+ "icaName": "Husein Kohnert",
1593
+ "email": "hkohnert1q@nymag.com",
1594
+ "gender": "M",
1595
+ "education": "School of Management Fribourg",
1596
+ "linkedInSkill": "CMOS",
1597
+ "motto": "benchmark robust e-services",
1598
+ "title": "Accountant IV",
1599
+ "bioShort": "In hac habitasse platea dictumst. Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante. Nulla justo.",
1600
+ "teamName": "Golf Charlie",
1601
+ "address": "89 Mayer Road",
1602
+ "country": "CH"
1603
+ },
1604
+ {
1605
+ "jurisdiction": {
1606
+ "key": "nsas",
1607
+ "val": "NSAA"
1608
+ },
1609
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-46.jpg",
1610
+ "branch": "015",
1611
+ "team": "Lima India",
1612
+ "complex": "809",
1613
+ "region": {
1614
+ "key": "europe",
1615
+ "val": "Europe"
1616
+ },
1617
+ "experienceYears": 28,
1618
+ "lengthOfService": 8,
1619
+ "experienceNRC": 10,
1620
+ "languages": {
1621
+ "key": [
1622
+ "jp",
1623
+ "hi"
1624
+ ],
1625
+ "val": "Japanese,<br>Hindi"
1626
+ },
1627
+ "countriesFocus": "Netherlands,<br> Poland,<br> Canada,<br> Nigeria",
1628
+ "products": {
1629
+ "key": [
1630
+ "mutualFunds",
1631
+ "privateWealth"
1632
+ ],
1633
+ "val": "Mutual Funds, Private wealth"
1634
+ },
1635
+ "aum": 1000,
1636
+ "id": "64",
1637
+ "firstName": "Nefen",
1638
+ "lastName": "Kinzel",
1639
+ "icaName": "Nefen Kinzel",
1640
+ "email": "nkinzel1r@dot.gov",
1641
+ "gender": "M",
1642
+ "education": "Trakia University Stara Zagora",
1643
+ "linkedInSkill": "Gardening",
1644
+ "motto": "incentivize efficient ROI",
1645
+ "title": "Analog Circuit Design manager",
1646
+ "bioShort": "Suspendisse accumsan tortor quis turpis.",
1647
+ "teamName": "Lima India",
1648
+ "address": "829 Sheridan Junction",
1649
+ "country": "BG"
1650
+ },
1651
+ {
1652
+ "jurisdiction": {
1653
+ "key": "lrmip",
1654
+ "val": "LRMIP"
1655
+ },
1656
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-4.jpg",
1657
+ "branch": "779",
1658
+ "team": "Kilo Lima",
1659
+ "complex": "811",
1660
+ "region": {
1661
+ "key": "africa",
1662
+ "val": "Africa"
1663
+ },
1664
+ "experienceYears": 21,
1665
+ "lengthOfService": 2,
1666
+ "experienceNRC": 6,
1667
+ "languages": {
1668
+ "key": [
1669
+ "pt",
1670
+ "kr"
1671
+ ],
1672
+ "val": "Portuguese,<br>Korean"
1673
+ },
1674
+ "countriesFocus": "Brazil,<br> Switzerland,<br> Italy,<br> United States",
1675
+ "products": {
1676
+ "key": [
1677
+ "sovereignWealthFunds",
1678
+ "pensionFunds"
1679
+ ],
1680
+ "val": "Sovereign Wealth Funds, Pension funds"
1681
+ },
1682
+ "aum": 170,
1683
+ "id": "65",
1684
+ "firstName": "Alwin",
1685
+ "lastName": "Kinnett",
1686
+ "icaName": "Alwin Kinnett",
1687
+ "email": "akinnett1s@sogou.com",
1688
+ "gender": "M",
1689
+ "education": "Université d'Aix-Marseille III",
1690
+ "linkedInSkill": "Avid Xpress",
1691
+ "motto": "leverage integrated networks",
1692
+ "title": "Senior Sales Associate",
1693
+ "bioShort": "Nulla nisl.",
1694
+ "teamName": "Kilo Lima",
1695
+ "address": "4905 Rockefeller Circle",
1696
+ "country": "FR"
1697
+ },
1698
+ {
1699
+ "jurisdiction": {
1700
+ "key": "lrmip",
1701
+ "val": "LRMIP"
1702
+ },
1703
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-53.jpg",
1704
+ "branch": "159",
1705
+ "team": "Delta",
1706
+ "complex": "509",
1707
+ "region": {
1708
+ "key": "africa",
1709
+ "val": "Africa"
1710
+ },
1711
+ "experienceYears": 10,
1712
+ "lengthOfService": 6,
1713
+ "experienceNRC": 15,
1714
+ "languages": {
1715
+ "key": [
1716
+ "pt",
1717
+ "fr"
1718
+ ],
1719
+ "val": "Portuguese,<br>French"
1720
+ },
1721
+ "countriesFocus": "Switzerland,<br> Italy,<br> India,<br> Sweden",
1722
+ "products": {
1723
+ "key": [
1724
+ "privateEquityFunds"
1725
+ ],
1726
+ "val": "Private Equity Funds"
1727
+ },
1728
+ "aum": 550,
1729
+ "id": "66",
1730
+ "firstName": "Louis",
1731
+ "lastName": "Tucknott",
1732
+ "icaName": "Louis Tucknott",
1733
+ "email": "ltucknott1t@ed.gov",
1734
+ "gender": "M",
1735
+ "education": "University of Moncton",
1736
+ "linkedInSkill": "Behavioral Health",
1737
+ "motto": "exploit transparent content",
1738
+ "title": "Recruiting Manager",
1739
+ "bioShort": "Vestibulum ac est lacinia nisi venenatis tristique. Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue. Aliquam erat volutpat.",
1740
+ "teamName": "Delta",
1741
+ "address": "4 Orin Court",
1742
+ "country": "CA"
1743
+ },
1744
+ {
1745
+ "jurisdiction": {
1746
+ "key": "ussec",
1747
+ "val": "USSEC"
1748
+ },
1749
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-36.jpg",
1750
+ "branch": "407",
1751
+ "team": "Whiskey Echo",
1752
+ "complex": "333",
1753
+ "region": {
1754
+ "key": "oceania",
1755
+ "val": "Oceania"
1756
+ },
1757
+ "experienceYears": 20,
1758
+ "lengthOfService": 16,
1759
+ "experienceNRC": 6,
1760
+ "languages": {
1761
+ "key": [
1762
+ "jp",
1763
+ "es"
1764
+ ],
1765
+ "val": "Japanese,<br>Spanish"
1766
+ },
1767
+ "countriesFocus": "Brazil,<br> Italy,<br> Nigeria,<br> Russia",
1768
+ "products": {
1769
+ "key": [
1770
+ "realEstate",
1771
+ "insuranceCompanies"
1772
+ ],
1773
+ "val": "Real Estate, Insurance Companies"
1774
+ },
1775
+ "aum": 680,
1776
+ "id": "67",
1777
+ "firstName": "Bria",
1778
+ "lastName": "Carbry",
1779
+ "icaName": "Bria Carbry",
1780
+ "email": "bcarbry1u@upenn.edu",
1781
+ "gender": "F",
1782
+ "education": "Universitas Diponegoro",
1783
+ "linkedInSkill": "Jin Shin Jyutsu",
1784
+ "motto": "exploit user-centric convergence",
1785
+ "title": "Executive Secretary",
1786
+ "bioShort": "Donec posuere metus vitae ipsum. Aliquam non mauris. Morbi non lectus.",
1787
+ "teamName": "Whiskey Echo",
1788
+ "address": "741 Hayes Way",
1789
+ "country": "ID"
1790
+ },
1791
+ {
1792
+ "jurisdiction": {
1793
+ "key": "lrmip",
1794
+ "val": "LRMIP"
1795
+ },
1796
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-45.jpg",
1797
+ "branch": "307",
1798
+ "team": "Lima",
1799
+ "complex": "619",
1800
+ "region": {
1801
+ "key": "asia",
1802
+ "val": "Asia"
1803
+ },
1804
+ "experienceYears": 22,
1805
+ "lengthOfService": 5,
1806
+ "experienceNRC": 15,
1807
+ "languages": {
1808
+ "key": [
1809
+ "it",
1810
+ "hi"
1811
+ ],
1812
+ "val": "Italian,<br>Hindi"
1813
+ },
1814
+ "countriesFocus": "Germany,<br> Switzerland,<br> Japan",
1815
+ "products": {
1816
+ "key": [
1817
+ "realEstate",
1818
+ "privateEquityFunds"
1819
+ ],
1820
+ "val": "Real Estate, Private Equity Funds"
1821
+ },
1822
+ "aum": 260,
1823
+ "id": "68",
1824
+ "firstName": "Rudyard",
1825
+ "lastName": "Hadland",
1826
+ "icaName": "Rudyard Hadland",
1827
+ "email": "rhadland1v@merriam-webster.com",
1828
+ "gender": "M",
1829
+ "education": "Ecole Nationale Vétérinaire de Nantes",
1830
+ "linkedInSkill": "EWP",
1831
+ "motto": "optimize bricks-and-clicks paradigms",
1832
+ "title": "Senior Developer",
1833
+ "bioShort": "Aliquam non mauris. Morbi non lectus. Aliquam sit amet diam in magna bibendum imperdiet.",
1834
+ "teamName": "Lima",
1835
+ "address": "024 Onsgard Court",
1836
+ "country": "FR"
1837
+ },
1838
+ {
1839
+ "jurisdiction": {
1840
+ "key": "pnfe",
1841
+ "val": "PNFE"
1842
+ },
1843
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-74.jpg",
1844
+ "branch": "710",
1845
+ "team": "Romeo Kilo",
1846
+ "complex": "372",
1847
+ "region": {
1848
+ "key": "ny",
1849
+ "val": "New York Region"
1850
+ },
1851
+ "experienceYears": 22,
1852
+ "lengthOfService": 2,
1853
+ "experienceNRC": 5,
1854
+ "languages": {
1855
+ "key": [
1856
+ "hi",
1857
+ "pt"
1858
+ ],
1859
+ "val": "Hindi,<br>Portuguese"
1860
+ },
1861
+ "countriesFocus": "China,<br> Canada,<br> United States",
1862
+ "products": {
1863
+ "key": [
1864
+ "mutualFunds"
1865
+ ],
1866
+ "val": "Mutual Funds"
1867
+ },
1868
+ "aum": 50,
1869
+ "id": "69",
1870
+ "firstName": "Wolfie",
1871
+ "lastName": "Van Velde",
1872
+ "icaName": "Wolfie Van Velde",
1873
+ "email": "wvan1w@dell.com",
1874
+ "gender": "M",
1875
+ "education": "International Medical & Technological University",
1876
+ "linkedInSkill": "XDoclet",
1877
+ "motto": "deliver cross-platform infomediaries",
1878
+ "title": "Tax Accountant",
1879
+ "bioShort": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Proin interdum mauris non ligula pellentesque ultrices.",
1880
+ "teamName": "Romeo Kilo",
1881
+ "address": "2707 Killdeer Terrace",
1882
+ "country": "TZ"
1883
+ },
1884
+ {
1885
+ "jurisdiction": {
1886
+ "key": "ussec",
1887
+ "val": "USSEC"
1888
+ },
1889
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-66.jpg",
1890
+ "branch": "328",
1891
+ "team": "Victor",
1892
+ "complex": "468",
1893
+ "region": {
1894
+ "key": "oceania",
1895
+ "val": "Oceania"
1896
+ },
1897
+ "experienceYears": 9,
1898
+ "lengthOfService": 6,
1899
+ "experienceNRC": 15,
1900
+ "languages": {
1901
+ "key": [
1902
+ "hi",
1903
+ "zh"
1904
+ ],
1905
+ "val": "Hindi,<br>Chinese"
1906
+ },
1907
+ "countriesFocus": "Russia",
1908
+ "products": {
1909
+ "key": [
1910
+ "foreignExchangeReserves",
1911
+ "privateEquityFunds"
1912
+ ],
1913
+ "val": "Foreign Exchange Reserves, Private Equity Funds"
1914
+ },
1915
+ "aum": 230,
1916
+ "id": "70",
1917
+ "firstName": "Sly",
1918
+ "lastName": "Hebson",
1919
+ "icaName": "Sly Hebson",
1920
+ "email": "shebson1x@umn.edu",
1921
+ "gender": "M",
1922
+ "education": "Mahidol University International College",
1923
+ "linkedInSkill": "First Year Experience",
1924
+ "motto": "generate clicks-and-mortar users",
1925
+ "title": "Environmental Specialist",
1926
+ "bioShort": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla. Nunc purus.",
1927
+ "teamName": "Victor",
1928
+ "address": "37000 Cardinal Place",
1929
+ "country": "TH"
1930
+ },
1931
+ {
1932
+ "jurisdiction": {
1933
+ "key": "lrmip",
1934
+ "val": "LRMIP"
1935
+ },
1936
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-5.jpg",
1937
+ "branch": "256",
1938
+ "team": "Delta Oscar",
1939
+ "complex": "563",
1940
+ "region": {
1941
+ "key": "oceania",
1942
+ "val": "Oceania"
1943
+ },
1944
+ "experienceYears": 22,
1945
+ "lengthOfService": 11,
1946
+ "experienceNRC": 1,
1947
+ "languages": {
1948
+ "key": [
1949
+ "de",
1950
+ "pt",
1951
+ "it"
1952
+ ],
1953
+ "val": "German,<br>Portuguese,<br>Italian"
1954
+ },
1955
+ "countriesFocus": "South Korea,<br> France,<br> United States",
1956
+ "products": {
1957
+ "key": [
1958
+ "privateWealth",
1959
+ "sovereignWealthFunds",
1960
+ "mutualFunds"
1961
+ ],
1962
+ "val": "Private wealth, Sovereign Wealth Funds, Mutual Funds"
1963
+ },
1964
+ "aum": 1160,
1965
+ "id": "71",
1966
+ "firstName": "Kathrine",
1967
+ "lastName": "Dever",
1968
+ "icaName": "Kathrine Dever",
1969
+ "email": "kdever1y@google.nl",
1970
+ "gender": "F",
1971
+ "education": "China Agriculture University East",
1972
+ "linkedInSkill": "Interest Rate Swaps",
1973
+ "motto": "evolve dynamic functionalities",
1974
+ "title": "Assistant Manager",
1975
+ "bioShort": "Donec vitae nisi. Nam ultrices, libero non mattis pulvinar, nulla pede ullamcorper augue, a suscipit nulla elit ac nulla. Sed vel enim sit amet nunc viverra dapibus.",
1976
+ "teamName": "Delta Oscar",
1977
+ "address": "4279 Mariners Cove Parkway",
1978
+ "country": "CN"
1979
+ },
1980
+ {
1981
+ "jurisdiction": {
1982
+ "key": "ussec",
1983
+ "val": "USSEC"
1984
+ },
1985
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-28.jpg",
1986
+ "branch": "261",
1987
+ "team": "India Papa",
1988
+ "complex": "861",
1989
+ "region": {
1990
+ "key": "europe",
1991
+ "val": "Europe"
1992
+ },
1993
+ "experienceYears": 17,
1994
+ "lengthOfService": 13,
1995
+ "experienceNRC": 22,
1996
+ "languages": {
1997
+ "key": [
1998
+ "kr"
1999
+ ],
2000
+ "val": "Korean"
2001
+ },
2002
+ "countriesFocus": "Australia,<br> Canada,<br> Saudi Arabia",
2003
+ "products": {
2004
+ "key": [
2005
+ "realEstate"
2006
+ ],
2007
+ "val": "Real Estate"
2008
+ },
2009
+ "aum": 1070,
2010
+ "id": "72",
2011
+ "firstName": "Davon",
2012
+ "lastName": "Deeth",
2013
+ "icaName": "Davon Deeth",
2014
+ "email": "ddeeth1z@marketwatch.com",
2015
+ "gender": "M",
2016
+ "education": "Institute of Management Development - Ohrid",
2017
+ "linkedInSkill": "IntelliJ IDEA",
2018
+ "motto": "implement innovative solutions",
2019
+ "title": "GIS Technical Architect",
2020
+ "bioShort": "Donec quis orci eget orci vehicula condimentum.",
2021
+ "teamName": "India Papa",
2022
+ "address": "9336 Loftsgordon Junction",
2023
+ "country": "GR"
2024
+ },
2025
+ {
2026
+ "jurisdiction": {
2027
+ "key": "nsas",
2028
+ "val": "NSAA"
2029
+ },
2030
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-30.jpg",
2031
+ "branch": "134",
2032
+ "team": "Bravo November",
2033
+ "complex": "316",
2034
+ "region": {
2035
+ "key": "asia",
2036
+ "val": "Asia"
2037
+ },
2038
+ "experienceYears": 13,
2039
+ "lengthOfService": 4,
2040
+ "experienceNRC": 19,
2041
+ "languages": {
2042
+ "key": [
2043
+ "it",
2044
+ "ru"
2045
+ ],
2046
+ "val": "Italian,<br>Russian"
2047
+ },
2048
+ "countriesFocus": "China,<br> Germany",
2049
+ "products": {
2050
+ "key": [
2051
+ "reits",
2052
+ "privateEquityFunds"
2053
+ ],
2054
+ "val": "REITs, Private Equity Funds"
2055
+ },
2056
+ "aum": 310,
2057
+ "id": "73",
2058
+ "firstName": "Marsha",
2059
+ "lastName": "Folbige",
2060
+ "icaName": "Marsha Folbige",
2061
+ "email": "mfolbige20@discuz.net",
2062
+ "gender": "F",
2063
+ "education": "University of Opole",
2064
+ "linkedInSkill": "Cluster",
2065
+ "motto": "mesh seamless ROI",
2066
+ "title": "Web Developer I",
2067
+ "bioShort": "Morbi porttitor lorem id ligula. Suspendisse ornare consequat lectus.",
2068
+ "teamName": "Bravo November",
2069
+ "address": "6 Melody Center",
2070
+ "country": "PL"
2071
+ },
2072
+ {
2073
+ "jurisdiction": {
2074
+ "key": "lrmip",
2075
+ "val": "LRMIP"
2076
+ },
2077
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-32.jpg",
2078
+ "branch": "431",
2079
+ "team": "Oscar",
2080
+ "complex": "475",
2081
+ "region": {
2082
+ "key": "oceania",
2083
+ "val": "Oceania"
2084
+ },
2085
+ "experienceYears": 25,
2086
+ "lengthOfService": 5,
2087
+ "experienceNRC": 17,
2088
+ "languages": {
2089
+ "key": [
2090
+ "ar",
2091
+ "de",
2092
+ "it"
2093
+ ],
2094
+ "val": "Arabic,<br>German,<br>Italian"
2095
+ },
2096
+ "countriesFocus": "Poland,<br> Italy,<br> Sweden,<br> Australia",
2097
+ "products": {
2098
+ "key": [
2099
+ "mutualFunds",
2100
+ "sovereignWealthFunds",
2101
+ "foreignExchangeReserves"
2102
+ ],
2103
+ "val": "Mutual Funds, Sovereign Wealth Funds, Foreign Exchange Reserves"
2104
+ },
2105
+ "aum": 210,
2106
+ "id": "74",
2107
+ "firstName": "Chrotoem",
2108
+ "lastName": "Vellden",
2109
+ "icaName": "Chrotoem Vellden",
2110
+ "email": "cvellden21@mtv.com",
2111
+ "gender": "M",
2112
+ "education": "Guangzhou Normal University",
2113
+ "linkedInSkill": "NG-SDH",
2114
+ "motto": "visualize 24/7 mindshare",
2115
+ "title": "Web Designer II",
2116
+ "bioShort": "Cras in purus eu magna vulputate luctus.",
2117
+ "teamName": "Oscar",
2118
+ "address": "38461 Ridge Oak Point",
2119
+ "country": "CN"
2120
+ },
2121
+ {
2122
+ "jurisdiction": {
2123
+ "key": "lrmip",
2124
+ "val": "LRMIP"
2125
+ },
2126
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-86.jpg",
2127
+ "branch": "380",
2128
+ "team": "Charlie Echo",
2129
+ "complex": "339",
2130
+ "region": {
2131
+ "key": "ny",
2132
+ "val": "New York Region"
2133
+ },
2134
+ "experienceYears": 9,
2135
+ "lengthOfService": 7,
2136
+ "experienceNRC": 21,
2137
+ "languages": {
2138
+ "key": [
2139
+ "zh"
2140
+ ],
2141
+ "val": "Chinese"
2142
+ },
2143
+ "countriesFocus": "Russia,<br> Thailand,<br> Canada,<br> India",
2144
+ "products": {
2145
+ "key": [
2146
+ "realEstate"
2147
+ ],
2148
+ "val": "Real Estate"
2149
+ },
2150
+ "aum": 1110,
2151
+ "id": "75",
2152
+ "firstName": "Jemmie",
2153
+ "lastName": "Fautly",
2154
+ "icaName": "Jemmie Fautly",
2155
+ "email": "jfautly22@prweb.com",
2156
+ "gender": "F",
2157
+ "education": "Institut Supérieur de Management et de Technologie (MATCI)",
2158
+ "linkedInSkill": "Myers-Briggs Certified",
2159
+ "motto": "reintermediate dynamic convergence",
2160
+ "title": "Quality Engineer",
2161
+ "bioShort": "Maecenas ut massa quis augue luctus tincidunt.",
2162
+ "teamName": "Charlie Echo",
2163
+ "address": "87417 Troy Street",
2164
+ "country": "MA"
2165
+ },
2166
+ {
2167
+ "jurisdiction": {
2168
+ "key": "pnfe",
2169
+ "val": "PNFE"
2170
+ },
2171
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-33.jpg",
2172
+ "branch": "453",
2173
+ "team": "Lima Kilo",
2174
+ "complex": "504",
2175
+ "region": {
2176
+ "key": "japan",
2177
+ "val": "Japan"
2178
+ },
2179
+ "experienceYears": 11,
2180
+ "lengthOfService": 7,
2181
+ "experienceNRC": 14,
2182
+ "languages": {
2183
+ "key": [
2184
+ "zh",
2185
+ "de"
2186
+ ],
2187
+ "val": "Chinese,<br>German"
2188
+ },
2189
+ "countriesFocus": "South Korea,<br> Australia,<br> Indonesia",
2190
+ "products": {
2191
+ "key": [
2192
+ "foreignExchangeReserves"
2193
+ ],
2194
+ "val": "Foreign Exchange Reserves"
2195
+ },
2196
+ "aum": 700,
2197
+ "id": "76",
2198
+ "firstName": "Hanni",
2199
+ "lastName": "O'Harney",
2200
+ "icaName": "Hanni O'Harney",
2201
+ "email": "hoharney23@constantcontact.com",
2202
+ "gender": "F",
2203
+ "education": "Jishou University",
2204
+ "linkedInSkill": "Zenworks",
2205
+ "motto": "implement cutting-edge vortals",
2206
+ "title": "Clinical Specialist",
2207
+ "bioShort": "Donec ut mauris eget massa tempor convallis. Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh. Quisque id justo sit amet sapien dignissim vestibulum.",
2208
+ "teamName": "Lima Kilo",
2209
+ "address": "313 2nd Pass",
2210
+ "country": "CN"
2211
+ },
2212
+ {
2213
+ "jurisdiction": {
2214
+ "key": "nsas",
2215
+ "val": "NSAA"
2216
+ },
2217
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-47.jpg",
2218
+ "branch": "131",
2219
+ "team": "Mike X-ray",
2220
+ "complex": "227",
2221
+ "region": {
2222
+ "key": "europe",
2223
+ "val": "Europe"
2224
+ },
2225
+ "experienceYears": 11,
2226
+ "lengthOfService": 1,
2227
+ "experienceNRC": 24,
2228
+ "languages": {
2229
+ "key": [
2230
+ "pt",
2231
+ "de"
2232
+ ],
2233
+ "val": "Portuguese,<br>German"
2234
+ },
2235
+ "countriesFocus": "China,<br> France,<br> Brazil,<br> Mexico",
2236
+ "products": {
2237
+ "key": [
2238
+ "privateWealth",
2239
+ "insuranceCompanies"
2240
+ ],
2241
+ "val": "Private wealth, Insurance Companies"
2242
+ },
2243
+ "aum": 1140,
2244
+ "id": "77",
2245
+ "firstName": "Nancy",
2246
+ "lastName": "Anstiss",
2247
+ "icaName": "Nancy Anstiss",
2248
+ "email": "nanstiss24@statcounter.com",
2249
+ "gender": "F",
2250
+ "education": "Carleton College",
2251
+ "linkedInSkill": "Glass",
2252
+ "motto": "harness dynamic web-readiness",
2253
+ "title": "Food Chemist",
2254
+ "bioShort": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus. Suspendisse potenti. In eleifend quam a odio.",
2255
+ "teamName": "Mike X-ray",
2256
+ "address": "79 Lakeland Court",
2257
+ "country": "US"
2258
+ },
2259
+ {
2260
+ "jurisdiction": {
2261
+ "key": "lrmip",
2262
+ "val": "LRMIP"
2263
+ },
2264
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-6.jpg",
2265
+ "branch": "555",
2266
+ "team": "Golf",
2267
+ "complex": "111",
2268
+ "region": {
2269
+ "key": "europe",
2270
+ "val": "Europe"
2271
+ },
2272
+ "experienceYears": 6,
2273
+ "lengthOfService": 2,
2274
+ "experienceNRC": 20,
2275
+ "languages": {
2276
+ "key": [
2277
+ "jp",
2278
+ "kr"
2279
+ ],
2280
+ "val": "Japanese,<br>Korean"
2281
+ },
2282
+ "countriesFocus": "Italy,<br> Germany,<br> Turkey",
2283
+ "products": {
2284
+ "key": [
2285
+ "realEstate",
2286
+ "privateWealth"
2287
+ ],
2288
+ "val": "Real Estate, Private wealth"
2289
+ },
2290
+ "aum": 970,
2291
+ "id": "78",
2292
+ "firstName": "Ferrel",
2293
+ "lastName": "Buddleigh",
2294
+ "icaName": "Ferrel Buddleigh",
2295
+ "email": "fbuddleigh25@earthlink.net",
2296
+ "gender": "M",
2297
+ "education": "Shanxi Agricultural University",
2298
+ "linkedInSkill": "TSCM",
2299
+ "motto": "disintermediate viral initiatives",
2300
+ "title": "Clinical Specialist",
2301
+ "bioShort": "Nullam molestie nibh in lectus. Pellentesque at nulla.",
2302
+ "teamName": "Golf",
2303
+ "address": "0371 La Follette Circle",
2304
+ "country": "CN"
2305
+ },
2306
+ {
2307
+ "jurisdiction": {
2308
+ "key": "lrmip",
2309
+ "val": "LRMIP"
2310
+ },
2311
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-31.jpg",
2312
+ "branch": "713",
2313
+ "team": "Lima Golf",
2314
+ "complex": "781",
2315
+ "region": {
2316
+ "key": "oceania",
2317
+ "val": "Oceania"
2318
+ },
2319
+ "experienceYears": 10,
2320
+ "lengthOfService": 2,
2321
+ "experienceNRC": 16,
2322
+ "languages": {
2323
+ "key": [
2324
+ "kr"
2325
+ ],
2326
+ "val": "Korean"
2327
+ },
2328
+ "countriesFocus": "France,<br> Nigeria",
2329
+ "products": {
2330
+ "key": [
2331
+ "privateEquityFunds",
2332
+ "hedgeFunds"
2333
+ ],
2334
+ "val": "Private Equity Funds, Hedge Funds"
2335
+ },
2336
+ "aum": 380,
2337
+ "id": "79",
2338
+ "firstName": "Arte",
2339
+ "lastName": "Calcutt",
2340
+ "icaName": "Arte Calcutt",
2341
+ "email": "acalcutt26@seattletimes.com",
2342
+ "gender": "M",
2343
+ "education": "Jimei University",
2344
+ "linkedInSkill": "Environmental Impact Assessment",
2345
+ "motto": "matrix virtual applications",
2346
+ "title": "Electrical Engineer",
2347
+ "bioShort": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi.",
2348
+ "teamName": "Lima Golf",
2349
+ "address": "610 Hollow Ridge Plaza",
2350
+ "country": "CN"
2351
+ },
2352
+ {
2353
+ "jurisdiction": {
2354
+ "key": "nsas",
2355
+ "val": "NSAA"
2356
+ },
2357
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-63.jpg",
2358
+ "branch": "275",
2359
+ "team": "Foxtrot",
2360
+ "complex": "207",
2361
+ "region": {
2362
+ "key": "oceania",
2363
+ "val": "Oceania"
2364
+ },
2365
+ "experienceYears": 25,
2366
+ "lengthOfService": 7,
2367
+ "experienceNRC": 14,
2368
+ "languages": {
2369
+ "key": [
2370
+ "jp",
2371
+ "hi"
2372
+ ],
2373
+ "val": "Japanese,<br>Hindi"
2374
+ },
2375
+ "countriesFocus": "Thailand,<br> Netherlands,<br> Saudi Arabia,<br> United Kingdom",
2376
+ "products": {
2377
+ "key": [
2378
+ "reits",
2379
+ "pensionFunds",
2380
+ "sovereignWealthFunds"
2381
+ ],
2382
+ "val": "REITs, Pension funds, Sovereign Wealth Funds"
2383
+ },
2384
+ "aum": 160,
2385
+ "id": "80",
2386
+ "firstName": "Nertie",
2387
+ "lastName": "Morrow",
2388
+ "icaName": "Nertie Morrow",
2389
+ "email": "nmorrow27@geocities.com",
2390
+ "gender": "F",
2391
+ "education": "Philippine Women's University",
2392
+ "linkedInSkill": "VTune",
2393
+ "motto": "envisioneer back-end markets",
2394
+ "title": "Payment Adjustment Coordinator",
2395
+ "bioShort": "Integer a nibh. In quis justo. Maecenas rhoncus aliquam lacus.",
2396
+ "teamName": "Foxtrot",
2397
+ "address": "3 Golf View Plaza",
2398
+ "country": "PH"
2399
+ },
2400
+ {
2401
+ "jurisdiction": {
2402
+ "key": "nsas",
2403
+ "val": "NSAA"
2404
+ },
2405
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-58.jpg",
2406
+ "branch": "793",
2407
+ "team": "November",
2408
+ "complex": "797",
2409
+ "region": {
2410
+ "key": "americas",
2411
+ "val": "Americas"
2412
+ },
2413
+ "experienceYears": 28,
2414
+ "lengthOfService": 6,
2415
+ "experienceNRC": 3,
2416
+ "languages": {
2417
+ "key": [
2418
+ "pt",
2419
+ "kr",
2420
+ "ru"
2421
+ ],
2422
+ "val": "Portuguese,<br>Korean,<br>Russian"
2423
+ },
2424
+ "countriesFocus": "Turkey,<br> Sweden,<br> Indonesia,<br> Poland",
2425
+ "products": {
2426
+ "key": [
2427
+ "hedgeFunds",
2428
+ "mutualFunds"
2429
+ ],
2430
+ "val": "Hedge Funds, Mutual Funds"
2431
+ },
2432
+ "aum": 970,
2433
+ "id": "81",
2434
+ "firstName": "Suzy",
2435
+ "lastName": "Sandford",
2436
+ "icaName": "Suzy Sandford",
2437
+ "email": "ssandford28@instagram.com",
2438
+ "gender": "F",
2439
+ "education": "University of Ljubljana",
2440
+ "linkedInSkill": "DNA Extraction",
2441
+ "motto": "disintermediate e-business initiatives",
2442
+ "title": "Librarian",
2443
+ "bioShort": "Donec ut dolor. Morbi vel lectus in quam fringilla rhoncus.",
2444
+ "teamName": "November",
2445
+ "address": "4335 Manufacturers Pass",
2446
+ "country": "SI"
2447
+ },
2448
+ {
2449
+ "jurisdiction": {
2450
+ "key": "lrmip",
2451
+ "val": "LRMIP"
2452
+ },
2453
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-46.jpg",
2454
+ "branch": "463",
2455
+ "team": "Sierra X-ray",
2456
+ "complex": "572",
2457
+ "region": {
2458
+ "key": "americas",
2459
+ "val": "Americas"
2460
+ },
2461
+ "experienceYears": 13,
2462
+ "lengthOfService": 6,
2463
+ "experienceNRC": 19,
2464
+ "languages": {
2465
+ "key": [
2466
+ "hi",
2467
+ "fr",
2468
+ "ar"
2469
+ ],
2470
+ "val": "Hindi,<br>French,<br>Arabic"
2471
+ },
2472
+ "countriesFocus": "Saudi Arabia,<br> Mexico,<br> Sweden",
2473
+ "products": {
2474
+ "key": [
2475
+ "pensionFunds",
2476
+ "sovereignWealthFunds",
2477
+ "realEstate"
2478
+ ],
2479
+ "val": "Pension funds, Sovereign Wealth Funds, Real Estate"
2480
+ },
2481
+ "aum": 70,
2482
+ "id": "82",
2483
+ "firstName": "Esra",
2484
+ "lastName": "Kissell",
2485
+ "icaName": "Esra Kissell",
2486
+ "email": "ekissell29@eepurl.com",
2487
+ "gender": "M",
2488
+ "education": "Rush University",
2489
+ "linkedInSkill": "Report Writing",
2490
+ "motto": "engage real-time interfaces",
2491
+ "title": "Web Designer I",
2492
+ "bioShort": "Nulla tempus. Vivamus in felis eu sapien cursus vestibulum. Proin eu mi.",
2493
+ "teamName": "Sierra X-ray",
2494
+ "address": "2 Dixon Junction",
2495
+ "country": "US"
2496
+ },
2497
+ {
2498
+ "jurisdiction": {
2499
+ "key": "lrmip",
2500
+ "val": "LRMIP"
2501
+ },
2502
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-59.jpg",
2503
+ "branch": "628",
2504
+ "team": "Uniform",
2505
+ "complex": "208",
2506
+ "region": {
2507
+ "key": "japan",
2508
+ "val": "Japan"
2509
+ },
2510
+ "experienceYears": 29,
2511
+ "lengthOfService": 21,
2512
+ "experienceNRC": 12,
2513
+ "languages": {
2514
+ "key": [
2515
+ "fr",
2516
+ "jp",
2517
+ "es"
2518
+ ],
2519
+ "val": "French,<br>Japanese,<br>Spanish"
2520
+ },
2521
+ "countriesFocus": "Turkey",
2522
+ "products": {
2523
+ "key": [
2524
+ "sovereignWealthFunds",
2525
+ "privateEquityFunds"
2526
+ ],
2527
+ "val": "Sovereign Wealth Funds, Private Equity Funds"
2528
+ },
2529
+ "aum": 410,
2530
+ "id": "83",
2531
+ "firstName": "Elsa",
2532
+ "lastName": "Kochel",
2533
+ "icaName": "Elsa Kochel",
2534
+ "email": "ekochel2a@plala.or.jp",
2535
+ "gender": "F",
2536
+ "education": "Tansian University",
2537
+ "linkedInSkill": "Spring Framework",
2538
+ "motto": "engage global e-commerce",
2539
+ "title": "Social Worker",
2540
+ "bioShort": "Duis aliquam convallis nunc.",
2541
+ "teamName": "Uniform",
2542
+ "address": "392 Vermont Alley",
2543
+ "country": "NG"
2544
+ },
2545
+ {
2546
+ "jurisdiction": {
2547
+ "key": "imf",
2548
+ "val": "IMF"
2549
+ },
2550
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-24.jpg",
2551
+ "branch": "257",
2552
+ "team": "Juliett India",
2553
+ "complex": "793",
2554
+ "region": {
2555
+ "key": "ny",
2556
+ "val": "New York Region"
2557
+ },
2558
+ "experienceYears": 8,
2559
+ "lengthOfService": 7,
2560
+ "experienceNRC": 0,
2561
+ "languages": {
2562
+ "key": [
2563
+ "kr"
2564
+ ],
2565
+ "val": "Korean"
2566
+ },
2567
+ "countriesFocus": "Saudi Arabia",
2568
+ "products": {
2569
+ "key": [
2570
+ "hedgeFunds"
2571
+ ],
2572
+ "val": "Hedge Funds"
2573
+ },
2574
+ "aum": 270,
2575
+ "id": "84",
2576
+ "firstName": "Calypso",
2577
+ "lastName": "Vedenyakin",
2578
+ "icaName": "Calypso Vedenyakin",
2579
+ "email": "cvedenyakin2b@boston.com",
2580
+ "gender": "F",
2581
+ "education": "International University of Travnik",
2582
+ "linkedInSkill": "FWSM",
2583
+ "motto": "deliver one-to-one functionalities",
2584
+ "title": "Biostatistician III",
2585
+ "bioShort": "Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.",
2586
+ "teamName": "Juliett India",
2587
+ "address": "245 Independence Junction",
2588
+ "country": "BA"
2589
+ },
2590
+ {
2591
+ "jurisdiction": {
2592
+ "key": "imf",
2593
+ "val": "IMF"
2594
+ },
2595
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-69.jpg",
2596
+ "branch": "331",
2597
+ "team": "Golf",
2598
+ "complex": "147",
2599
+ "region": {
2600
+ "key": "americas",
2601
+ "val": "Americas"
2602
+ },
2603
+ "experienceYears": 12,
2604
+ "lengthOfService": 7,
2605
+ "experienceNRC": 14,
2606
+ "languages": {
2607
+ "key": [
2608
+ "hi",
2609
+ "jp",
2610
+ "ru"
2611
+ ],
2612
+ "val": "Hindi,<br>Japanese,<br>Russian"
2613
+ },
2614
+ "countriesFocus": "Turkey",
2615
+ "products": {
2616
+ "key": [
2617
+ "pensionFunds",
2618
+ "privateWealth",
2619
+ "privateEquityFunds"
2620
+ ],
2621
+ "val": "Pension funds, Private wealth, Private Equity Funds"
2622
+ },
2623
+ "aum": 920,
2624
+ "id": "85",
2625
+ "firstName": "Merridie",
2626
+ "lastName": "Glasscoo",
2627
+ "icaName": "Merridie Glasscoo",
2628
+ "email": "mglasscoo2c@eventbrite.com",
2629
+ "gender": "F",
2630
+ "education": "Ecole Nationale Supérieure de Chimie et de Physique de Bordeaux",
2631
+ "linkedInSkill": "FSL",
2632
+ "motto": "aggregate visionary communities",
2633
+ "title": "GIS Technical Architect",
2634
+ "bioShort": "Curabitur gravida nisi at nibh.",
2635
+ "teamName": "Golf",
2636
+ "address": "4 Rieder Crossing",
2637
+ "country": "FR"
2638
+ },
2639
+ {
2640
+ "jurisdiction": {
2641
+ "key": "ussec",
2642
+ "val": "USSEC"
2643
+ },
2644
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-76.jpg",
2645
+ "branch": "221",
2646
+ "team": "Golf X-ray",
2647
+ "complex": "309",
2648
+ "region": {
2649
+ "key": "americas",
2650
+ "val": "Americas"
2651
+ },
2652
+ "experienceYears": 29,
2653
+ "lengthOfService": 3,
2654
+ "experienceNRC": 11,
2655
+ "languages": {
2656
+ "key": [
2657
+ "ru",
2658
+ "zh",
2659
+ "kr"
2660
+ ],
2661
+ "val": "Russian,<br>Chinese,<br>Korean"
2662
+ },
2663
+ "countriesFocus": "Japan,<br> Netherlands",
2664
+ "products": {
2665
+ "key": [
2666
+ "insuranceCompanies"
2667
+ ],
2668
+ "val": "Insurance Companies"
2669
+ },
2670
+ "aum": 950,
2671
+ "id": "86",
2672
+ "firstName": "Kearney",
2673
+ "lastName": "Edwards",
2674
+ "icaName": "Kearney Edwards",
2675
+ "email": "kedwards2d@amazon.de",
2676
+ "gender": "M",
2677
+ "education": "Université de Thiès",
2678
+ "linkedInSkill": "GVP",
2679
+ "motto": "incubate extensible paradigms",
2680
+ "title": "Clinical Specialist",
2681
+ "bioShort": "Ut at dolor quis odio consequat varius.",
2682
+ "teamName": "Golf X-ray",
2683
+ "address": "7 Corben Lane",
2684
+ "country": "SN"
2685
+ },
2686
+ {
2687
+ "jurisdiction": {
2688
+ "key": "ussec",
2689
+ "val": "USSEC"
2690
+ },
2691
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-38.jpg",
2692
+ "branch": "108",
2693
+ "team": "Tango",
2694
+ "complex": "726",
2695
+ "region": {
2696
+ "key": "oceania",
2697
+ "val": "Oceania"
2698
+ },
2699
+ "experienceYears": 5,
2700
+ "lengthOfService": 4,
2701
+ "experienceNRC": 23,
2702
+ "languages": {
2703
+ "key": [
2704
+ "fr"
2705
+ ],
2706
+ "val": "French"
2707
+ },
2708
+ "countriesFocus": "Japan",
2709
+ "products": {
2710
+ "key": [
2711
+ "reits",
2712
+ "hedgeFunds"
2713
+ ],
2714
+ "val": "REITs, Hedge Funds"
2715
+ },
2716
+ "aum": 1120,
2717
+ "id": "87",
2718
+ "firstName": "Filbert",
2719
+ "lastName": "Carneck",
2720
+ "icaName": "Filbert Carneck",
2721
+ "email": "fcarneck2e@illinois.edu",
2722
+ "gender": "M",
2723
+ "education": "Moscow University Touro",
2724
+ "linkedInSkill": "IBM Certified",
2725
+ "motto": "optimize visionary vortals",
2726
+ "title": "Graphic Designer",
2727
+ "bioShort": "Integer a nibh. In quis justo.",
2728
+ "teamName": "Tango",
2729
+ "address": "2240 Mesta Avenue",
2730
+ "country": "RU"
2731
+ },
2732
+ {
2733
+ "jurisdiction": {
2734
+ "key": "ussec",
2735
+ "val": "USSEC"
2736
+ },
2737
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-58.jpg",
2738
+ "branch": "377",
2739
+ "team": "Alfa Bravo",
2740
+ "complex": "657",
2741
+ "region": {
2742
+ "key": "westCoast",
2743
+ "val": "West Coast"
2744
+ },
2745
+ "experienceYears": 16,
2746
+ "lengthOfService": 2,
2747
+ "experienceNRC": 28,
2748
+ "languages": {
2749
+ "key": [
2750
+ "zh",
2751
+ "hi"
2752
+ ],
2753
+ "val": "Chinese,<br>Hindi"
2754
+ },
2755
+ "countriesFocus": "Saudi Arabia,<br> United States",
2756
+ "products": {
2757
+ "key": [
2758
+ "sovereignWealthFunds",
2759
+ "privateWealth"
2760
+ ],
2761
+ "val": "Sovereign Wealth Funds, Private wealth"
2762
+ },
2763
+ "aum": 240,
2764
+ "id": "88",
2765
+ "firstName": "Mimi",
2766
+ "lastName": "Kristoffersson",
2767
+ "icaName": "Mimi Kristoffersson",
2768
+ "email": "mkristoffersson2f@virginia.edu",
2769
+ "gender": "F",
2770
+ "education": "Huazhong University of Science and Technology",
2771
+ "linkedInSkill": "Published Author",
2772
+ "motto": "morph 24/365 action-items",
2773
+ "title": "Structural Analysis Engineer",
2774
+ "bioShort": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio.",
2775
+ "teamName": "Alfa Bravo",
2776
+ "address": "981 Transport Point",
2777
+ "country": "CN"
2778
+ },
2779
+ {
2780
+ "jurisdiction": {
2781
+ "key": "lrmip",
2782
+ "val": "LRMIP"
2783
+ },
2784
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-57.jpg",
2785
+ "branch": "050",
2786
+ "team": "Echo",
2787
+ "complex": "656",
2788
+ "region": {
2789
+ "key": "oceania",
2790
+ "val": "Oceania"
2791
+ },
2792
+ "experienceYears": 19,
2793
+ "lengthOfService": 6,
2794
+ "experienceNRC": 8,
2795
+ "languages": {
2796
+ "key": [
2797
+ "es",
2798
+ "kr"
2799
+ ],
2800
+ "val": "Spanish,<br>Korean"
2801
+ },
2802
+ "countriesFocus": "United States,<br> Canada",
2803
+ "products": {
2804
+ "key": [
2805
+ "realEstate"
2806
+ ],
2807
+ "val": "Real Estate"
2808
+ },
2809
+ "aum": 10,
2810
+ "id": "89",
2811
+ "firstName": "Valene",
2812
+ "lastName": "Gyford",
2813
+ "icaName": "Valene Gyford",
2814
+ "email": "vgyford2g@nps.gov",
2815
+ "gender": "F",
2816
+ "education": "Physical Education Academy \"Jedrzej Sniadecki\" in Gdansk",
2817
+ "linkedInSkill": "Oracle Applications",
2818
+ "motto": "enable best-of-breed models",
2819
+ "title": "Mechanical Systems Engineer",
2820
+ "bioShort": "Maecenas ut massa quis augue luctus tincidunt.",
2821
+ "teamName": "Echo",
2822
+ "address": "817 Logan Hill",
2823
+ "country": "PL"
2824
+ },
2825
+ {
2826
+ "jurisdiction": {
2827
+ "key": "pnfe",
2828
+ "val": "PNFE"
2829
+ },
2830
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-25.jpg",
2831
+ "branch": "082",
2832
+ "team": "Kilo",
2833
+ "complex": "886",
2834
+ "region": {
2835
+ "key": "americas",
2836
+ "val": "Americas"
2837
+ },
2838
+ "experienceYears": 27,
2839
+ "lengthOfService": 6,
2840
+ "experienceNRC": 17,
2841
+ "languages": {
2842
+ "key": [
2843
+ "jp"
2844
+ ],
2845
+ "val": "Japanese"
2846
+ },
2847
+ "countriesFocus": "Indonesia,<br> United States,<br> Belgium",
2848
+ "products": {
2849
+ "key": [
2850
+ "insuranceCompanies",
2851
+ "mutualFunds",
2852
+ "foreignExchangeReserves"
2853
+ ],
2854
+ "val": "Insurance Companies, Mutual Funds, Foreign Exchange Reserves"
2855
+ },
2856
+ "aum": 80,
2857
+ "id": "90",
2858
+ "firstName": "Luigi",
2859
+ "lastName": "Speedy",
2860
+ "icaName": "Luigi Speedy",
2861
+ "email": "lspeedy2h@google.co.uk",
2862
+ "gender": "M",
2863
+ "education": "Chongqing Three Gorges University",
2864
+ "linkedInSkill": "DGA",
2865
+ "motto": "reinvent impactful e-services",
2866
+ "title": "Software Engineer IV",
2867
+ "bioShort": "Nunc purus.",
2868
+ "teamName": "Kilo",
2869
+ "address": "60684 Hoffman Hill",
2870
+ "country": "CN"
2871
+ },
2872
+ {
2873
+ "jurisdiction": {
2874
+ "key": "nsas",
2875
+ "val": "NSAA"
2876
+ },
2877
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-64.jpg",
2878
+ "branch": "391",
2879
+ "team": "Whiskey",
2880
+ "complex": "281",
2881
+ "region": {
2882
+ "key": "europe",
2883
+ "val": "Europe"
2884
+ },
2885
+ "experienceYears": 15,
2886
+ "lengthOfService": 10,
2887
+ "experienceNRC": 16,
2888
+ "languages": {
2889
+ "key": [
2890
+ "ar",
2891
+ "ru"
2892
+ ],
2893
+ "val": "Arabic,<br>Russian"
2894
+ },
2895
+ "countriesFocus": "Poland,<br> Australia,<br> Brazil",
2896
+ "products": {
2897
+ "key": [
2898
+ "realEstate",
2899
+ "foreignExchangeReserves",
2900
+ "hedgeFunds"
2901
+ ],
2902
+ "val": "Real Estate, Foreign Exchange Reserves, Hedge Funds"
2903
+ },
2904
+ "aum": 860,
2905
+ "id": "91",
2906
+ "firstName": "Remus",
2907
+ "lastName": "Denning",
2908
+ "icaName": "Remus Denning",
2909
+ "email": "rdenning2i@surveymonkey.com",
2910
+ "gender": "M",
2911
+ "education": "Technological Education Institute of Thessaloniki",
2912
+ "linkedInSkill": "Oil on Canvas",
2913
+ "motto": "recontextualize rich action-items",
2914
+ "title": "Automation Specialist I",
2915
+ "bioShort": "Nunc rhoncus dui vel sem. Sed sagittis.",
2916
+ "teamName": "Whiskey",
2917
+ "address": "0 Northfield Trail",
2918
+ "country": "GR"
2919
+ },
2920
+ {
2921
+ "jurisdiction": {
2922
+ "key": "ussec",
2923
+ "val": "USSEC"
2924
+ },
2925
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-48.jpg",
2926
+ "branch": "629",
2927
+ "team": "Tango",
2928
+ "complex": "848",
2929
+ "region": {
2930
+ "key": "oceania",
2931
+ "val": "Oceania"
2932
+ },
2933
+ "experienceYears": 17,
2934
+ "lengthOfService": 9,
2935
+ "experienceNRC": 0,
2936
+ "languages": {
2937
+ "key": [
2938
+ "pt"
2939
+ ],
2940
+ "val": "Portuguese"
2941
+ },
2942
+ "countriesFocus": "Canada",
2943
+ "products": {
2944
+ "key": [
2945
+ "privateEquityFunds",
2946
+ "foreignExchangeReserves",
2947
+ "insuranceCompanies"
2948
+ ],
2949
+ "val": "Private Equity Funds, Foreign Exchange Reserves, Insurance Companies"
2950
+ },
2951
+ "aum": 1120,
2952
+ "id": "92",
2953
+ "firstName": "Ibrahim",
2954
+ "lastName": "Silvester",
2955
+ "icaName": "Ibrahim Silvester",
2956
+ "email": "isilvester2j@spotify.com",
2957
+ "gender": "M",
2958
+ "education": "Universidade de Aveiro",
2959
+ "linkedInSkill": "RV",
2960
+ "motto": "deliver visionary systems",
2961
+ "title": "Marketing Manager",
2962
+ "bioShort": "Phasellus sit amet erat. Nulla tempus. Vivamus in felis eu sapien cursus vestibulum.",
2963
+ "teamName": "Tango",
2964
+ "address": "82 Claremont Alley",
2965
+ "country": "PT"
2966
+ },
2967
+ {
2968
+ "jurisdiction": {
2969
+ "key": "pnfe",
2970
+ "val": "PNFE"
2971
+ },
2972
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-25.jpg",
2973
+ "branch": "367",
2974
+ "team": "Yankee Delta",
2975
+ "complex": "620",
2976
+ "region": {
2977
+ "key": "asia",
2978
+ "val": "Asia"
2979
+ },
2980
+ "experienceYears": 11,
2981
+ "lengthOfService": 2,
2982
+ "experienceNRC": 2,
2983
+ "languages": {
2984
+ "key": [
2985
+ "de"
2986
+ ],
2987
+ "val": "German"
2988
+ },
2989
+ "countriesFocus": "Belgium",
2990
+ "products": {
2991
+ "key": [
2992
+ "foreignExchangeReserves",
2993
+ "hedgeFunds"
2994
+ ],
2995
+ "val": "Foreign Exchange Reserves, Hedge Funds"
2996
+ },
2997
+ "aum": 510,
2998
+ "id": "93",
2999
+ "firstName": "Delinda",
3000
+ "lastName": "Tremoulet",
3001
+ "icaName": "Delinda Tremoulet",
3002
+ "email": "dtremoulet2k@phoca.cz",
3003
+ "gender": "F",
3004
+ "education": "Shanxi Agricultural University",
3005
+ "linkedInSkill": "Unfair Competition",
3006
+ "motto": "syndicate e-business methodologies",
3007
+ "title": "Biostatistician III",
3008
+ "bioShort": "In quis justo. Maecenas rhoncus aliquam lacus.",
3009
+ "teamName": "Yankee Delta",
3010
+ "address": "2686 Bunting Place",
3011
+ "country": "CN"
3012
+ },
3013
+ {
3014
+ "jurisdiction": {
3015
+ "key": "pnfe",
3016
+ "val": "PNFE"
3017
+ },
3018
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-16.jpg",
3019
+ "branch": "024",
3020
+ "team": "Romeo Oscar",
3021
+ "complex": "054",
3022
+ "region": {
3023
+ "key": "japan",
3024
+ "val": "Japan"
3025
+ },
3026
+ "experienceYears": 12,
3027
+ "lengthOfService": 10,
3028
+ "experienceNRC": 4,
3029
+ "languages": {
3030
+ "key": [
3031
+ "es",
3032
+ "zh",
3033
+ "pt"
3034
+ ],
3035
+ "val": "Spanish,<br>Chinese,<br>Portuguese"
3036
+ },
3037
+ "countriesFocus": "Sweden,<br> Belgium,<br> South Korea",
3038
+ "products": {
3039
+ "key": [
3040
+ "privateWealth",
3041
+ "privateEquityFunds",
3042
+ "pensionFunds"
3043
+ ],
3044
+ "val": "Private wealth, Private Equity Funds, Pension funds"
3045
+ },
3046
+ "aum": 410,
3047
+ "id": "94",
3048
+ "firstName": "Correna",
3049
+ "lastName": "Riggey",
3050
+ "icaName": "Correna Riggey",
3051
+ "email": "criggey2l@foxnews.com",
3052
+ "gender": "F",
3053
+ "education": "Instituto Politecnico do Porto",
3054
+ "linkedInSkill": "Online Gaming",
3055
+ "motto": "benchmark granular relationships",
3056
+ "title": "Director of Sales",
3057
+ "bioShort": "Proin eu mi.",
3058
+ "teamName": "Romeo Oscar",
3059
+ "address": "202 Northfield Plaza",
3060
+ "country": "PT"
3061
+ },
3062
+ {
3063
+ "jurisdiction": {
3064
+ "key": "ussec",
3065
+ "val": "USSEC"
3066
+ },
3067
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-6.jpg",
3068
+ "branch": "746",
3069
+ "team": "Papa",
3070
+ "complex": "750",
3071
+ "region": {
3072
+ "key": "europe",
3073
+ "val": "Europe"
3074
+ },
3075
+ "experienceYears": 7,
3076
+ "lengthOfService": 6,
3077
+ "experienceNRC": 25,
3078
+ "languages": {
3079
+ "key": [
3080
+ "hi",
3081
+ "ar"
3082
+ ],
3083
+ "val": "Hindi,<br>Arabic"
3084
+ },
3085
+ "countriesFocus": "China,<br> Poland,<br> Netherlands",
3086
+ "products": {
3087
+ "key": [
3088
+ "mutualFunds"
3089
+ ],
3090
+ "val": "Mutual Funds"
3091
+ },
3092
+ "aum": 730,
3093
+ "id": "95",
3094
+ "firstName": "Welsh",
3095
+ "lastName": "Stannislawski",
3096
+ "icaName": "Welsh Stannislawski",
3097
+ "email": "wstannislawski2m@upenn.edu",
3098
+ "gender": "M",
3099
+ "education": "Vladivostock State University of Economics",
3100
+ "linkedInSkill": "Business Transformation",
3101
+ "motto": "deliver vertical eyeballs",
3102
+ "title": "VP Quality Control",
3103
+ "bioShort": "Pellentesque viverra pede ac diam.",
3104
+ "teamName": "Papa",
3105
+ "address": "08 Springs Terrace",
3106
+ "country": "RU"
3107
+ },
3108
+ {
3109
+ "jurisdiction": {
3110
+ "key": "imf",
3111
+ "val": "IMF"
3112
+ },
3113
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-49.jpg",
3114
+ "branch": "749",
3115
+ "team": "Charlie",
3116
+ "complex": "639",
3117
+ "region": {
3118
+ "key": "asia",
3119
+ "val": "Asia"
3120
+ },
3121
+ "experienceYears": 15,
3122
+ "lengthOfService": 11,
3123
+ "experienceNRC": 4,
3124
+ "languages": {
3125
+ "key": [
3126
+ "zh"
3127
+ ],
3128
+ "val": "Chinese"
3129
+ },
3130
+ "countriesFocus": "France",
3131
+ "products": {
3132
+ "key": [
3133
+ "privateWealth",
3134
+ "privateEquityFunds",
3135
+ "insuranceCompanies"
3136
+ ],
3137
+ "val": "Private wealth, Private Equity Funds, Insurance Companies"
3138
+ },
3139
+ "aum": 610,
3140
+ "id": "96",
3141
+ "firstName": "Gustave",
3142
+ "lastName": "Habgood",
3143
+ "icaName": "Gustave Habgood",
3144
+ "email": "ghabgood2n@java.com",
3145
+ "gender": "M",
3146
+ "education": "St. Petersburg State University of Culture and Arts",
3147
+ "linkedInSkill": "OTP",
3148
+ "motto": "whiteboard plug-and-play action-items",
3149
+ "title": "Nurse",
3150
+ "bioShort": "Donec quis orci eget orci vehicula condimentum. Curabitur in libero ut massa volutpat convallis.",
3151
+ "teamName": "Charlie",
3152
+ "address": "7060 Little Fleur Circle",
3153
+ "country": "RU"
3154
+ },
3155
+ {
3156
+ "jurisdiction": {
3157
+ "key": "ussec",
3158
+ "val": "USSEC"
3159
+ },
3160
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-7.jpg",
3161
+ "branch": "801",
3162
+ "team": "Lima",
3163
+ "complex": "418",
3164
+ "region": {
3165
+ "key": "oceania",
3166
+ "val": "Oceania"
3167
+ },
3168
+ "experienceYears": 9,
3169
+ "lengthOfService": 3,
3170
+ "experienceNRC": 14,
3171
+ "languages": {
3172
+ "key": [
3173
+ "kr",
3174
+ "zh",
3175
+ "de"
3176
+ ],
3177
+ "val": "Korean,<br>Chinese,<br>German"
3178
+ },
3179
+ "countriesFocus": "Brazil,<br> Russia,<br> Spain,<br> United States",
3180
+ "products": {
3181
+ "key": [
3182
+ "realEstate",
3183
+ "insuranceCompanies",
3184
+ "mutualFunds"
3185
+ ],
3186
+ "val": "Real Estate, Insurance Companies, Mutual Funds"
3187
+ },
3188
+ "aum": 370,
3189
+ "id": "97",
3190
+ "firstName": "Gypsy",
3191
+ "lastName": "Kubiczek",
3192
+ "icaName": "Gypsy Kubiczek",
3193
+ "email": "gkubiczek2o@nymag.com",
3194
+ "gender": "F",
3195
+ "education": "University Marien Ngouabi Brazzaville",
3196
+ "linkedInSkill": "Poka Yoke",
3197
+ "motto": "revolutionize killer users",
3198
+ "title": "Director of Sales",
3199
+ "bioShort": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo.",
3200
+ "teamName": "Lima",
3201
+ "address": "3125 Farwell Center",
3202
+ "country": "CG"
3203
+ },
3204
+ {
3205
+ "jurisdiction": {
3206
+ "key": "ussec",
3207
+ "val": "USSEC"
3208
+ },
3209
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-17.jpg",
3210
+ "branch": "892",
3211
+ "team": "Romeo",
3212
+ "complex": "533",
3213
+ "region": {
3214
+ "key": "africa",
3215
+ "val": "Africa"
3216
+ },
3217
+ "experienceYears": 14,
3218
+ "lengthOfService": 7,
3219
+ "experienceNRC": 20,
3220
+ "languages": {
3221
+ "key": [
3222
+ "pt"
3223
+ ],
3224
+ "val": "Portuguese"
3225
+ },
3226
+ "countriesFocus": "Mexico",
3227
+ "products": {
3228
+ "key": [
3229
+ "pensionFunds",
3230
+ "privateWealth"
3231
+ ],
3232
+ "val": "Pension funds, Private wealth"
3233
+ },
3234
+ "aum": 470,
3235
+ "id": "98",
3236
+ "firstName": "Jo-anne",
3237
+ "lastName": "Shrimplin",
3238
+ "icaName": "Jo-anne Shrimplin",
3239
+ "email": "jshrimplin2p@tripod.com",
3240
+ "gender": "F",
3241
+ "education": "Pedagogical University of Slupsk",
3242
+ "linkedInSkill": "WMOS",
3243
+ "motto": "deploy back-end models",
3244
+ "title": "VP Marketing",
3245
+ "bioShort": "Nam tristique tortor eu pede.",
3246
+ "teamName": "Romeo",
3247
+ "address": "8 Loomis Road",
3248
+ "country": "PL"
3249
+ },
3250
+ {
3251
+ "jurisdiction": {
3252
+ "key": "pnfe",
3253
+ "val": "PNFE"
3254
+ },
3255
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-16.jpg",
3256
+ "branch": "346",
3257
+ "team": "Quebec Kilo",
3258
+ "complex": "035",
3259
+ "region": {
3260
+ "key": "ny",
3261
+ "val": "New York Region"
3262
+ },
3263
+ "experienceYears": 12,
3264
+ "lengthOfService": 6,
3265
+ "experienceNRC": 0,
3266
+ "languages": {
3267
+ "key": [
3268
+ "de",
3269
+ "jp",
3270
+ "hi"
3271
+ ],
3272
+ "val": "German,<br>Japanese,<br>Hindi"
3273
+ },
3274
+ "countriesFocus": "Saudi Arabia,<br> Italy,<br> Belgium",
3275
+ "products": {
3276
+ "key": [
3277
+ "pensionFunds",
3278
+ "hedgeFunds"
3279
+ ],
3280
+ "val": "Pension funds, Hedge Funds"
3281
+ },
3282
+ "aum": 770,
3283
+ "id": "99",
3284
+ "firstName": "Maisey",
3285
+ "lastName": "Deeming",
3286
+ "icaName": "Maisey Deeming",
3287
+ "email": "mdeeming2q@cbslocal.com",
3288
+ "gender": "F",
3289
+ "education": "Guangzhou University of Traditional Chinese Medicine",
3290
+ "linkedInSkill": "TFM",
3291
+ "motto": "syndicate one-to-one functionalities",
3292
+ "title": "GIS Technical Architect",
3293
+ "bioShort": "Integer non velit. Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi.",
3294
+ "teamName": "Quebec Kilo",
3295
+ "address": "0 Forest Dale Way",
3296
+ "country": "CN"
3297
+ },
3298
+ {
3299
+ "jurisdiction": {
3300
+ "key": "pnfe",
3301
+ "val": "PNFE"
3302
+ },
3303
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-8.jpg",
3304
+ "branch": "889",
3305
+ "team": "Charlie",
3306
+ "complex": "347",
3307
+ "region": {
3308
+ "key": "africa",
3309
+ "val": "Africa"
3310
+ },
3311
+ "experienceYears": 24,
3312
+ "lengthOfService": 20,
3313
+ "experienceNRC": 12,
3314
+ "languages": {
3315
+ "key": [
3316
+ "de",
3317
+ "fr"
3318
+ ],
3319
+ "val": "German,<br>French"
3320
+ },
3321
+ "countriesFocus": "Russia,<br> Switzerland,<br> United Kingdom,<br> Italy",
3322
+ "products": {
3323
+ "key": [
3324
+ "privateEquityFunds",
3325
+ "foreignExchangeReserves",
3326
+ "realEstate"
3327
+ ],
3328
+ "val": "Private Equity Funds, Foreign Exchange Reserves, Real Estate"
3329
+ },
3330
+ "aum": 930,
3331
+ "id": "100",
3332
+ "firstName": "Keen",
3333
+ "lastName": "Sonner",
3334
+ "icaName": "Keen Sonner",
3335
+ "email": "ksonner2r@hp.com",
3336
+ "gender": "M",
3337
+ "education": "Eastern Nazarene College",
3338
+ "linkedInSkill": "MFS",
3339
+ "motto": "embrace real-time technologies",
3340
+ "title": "Quality Engineer",
3341
+ "bioShort": "Vestibulum sed magna at nunc commodo placerat. Praesent blandit.",
3342
+ "teamName": "Charlie",
3343
+ "address": "68274 Westend Terrace",
3344
+ "country": "US"
3345
+ },
3346
+ {
3347
+ "jurisdiction": {
3348
+ "key": "ussec",
3349
+ "val": "USSEC"
3350
+ },
3351
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-88.jpg",
3352
+ "branch": "407",
3353
+ "team": "November",
3354
+ "complex": "082",
3355
+ "region": {
3356
+ "key": "oceania",
3357
+ "val": "Oceania"
3358
+ },
3359
+ "experienceYears": 10,
3360
+ "lengthOfService": 2,
3361
+ "experienceNRC": 18,
3362
+ "languages": {
3363
+ "key": [
3364
+ "zh",
3365
+ "ar"
3366
+ ],
3367
+ "val": "Chinese,<br>Arabic"
3368
+ },
3369
+ "countriesFocus": "Belgium,<br> Switzerland,<br> Thailand,<br> Canada",
3370
+ "products": {
3371
+ "key": [
3372
+ "pensionFunds"
3373
+ ],
3374
+ "val": "Pension funds"
3375
+ },
3376
+ "aum": 390,
3377
+ "id": "101",
3378
+ "firstName": "Modestine",
3379
+ "lastName": "Gorch",
3380
+ "icaName": "Modestine Gorch",
3381
+ "email": "mgorch2s@histats.com",
3382
+ "gender": "F",
3383
+ "education": "Guangdong Polytechnic Normal University",
3384
+ "linkedInSkill": "SEO",
3385
+ "motto": "recontextualize mission-critical networks",
3386
+ "title": "Librarian",
3387
+ "bioShort": "Vivamus in felis eu sapien cursus vestibulum. Proin eu mi. Nulla ac enim.",
3388
+ "teamName": "November",
3389
+ "address": "453 Sage Circle",
3390
+ "country": "CN"
3391
+ },
3392
+ {
3393
+ "jurisdiction": {
3394
+ "key": "imf",
3395
+ "val": "IMF"
3396
+ },
3397
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-27.jpg",
3398
+ "branch": "390",
3399
+ "team": "Kilo Charlie",
3400
+ "complex": "540",
3401
+ "region": {
3402
+ "key": "americas",
3403
+ "val": "Americas"
3404
+ },
3405
+ "experienceYears": 11,
3406
+ "lengthOfService": 9,
3407
+ "experienceNRC": 7,
3408
+ "languages": {
3409
+ "key": [
3410
+ "de",
3411
+ "it"
3412
+ ],
3413
+ "val": "German,<br>Italian"
3414
+ },
3415
+ "countriesFocus": "Switzerland,<br> Spain",
3416
+ "products": {
3417
+ "key": [
3418
+ "insuranceCompanies",
3419
+ "hedgeFunds",
3420
+ "mutualFunds"
3421
+ ],
3422
+ "val": "Insurance Companies, Hedge Funds, Mutual Funds"
3423
+ },
3424
+ "aum": 450,
3425
+ "id": "102",
3426
+ "firstName": "Carlos",
3427
+ "lastName": "Charon",
3428
+ "icaName": "Carlos Charon",
3429
+ "email": "ccharon2t@networksolutions.com",
3430
+ "gender": "M",
3431
+ "education": "Silesian University",
3432
+ "linkedInSkill": "Go-to-market Strategy",
3433
+ "motto": "evolve intuitive initiatives",
3434
+ "title": "Food Chemist",
3435
+ "bioShort": "Aenean auctor gravida sem. Praesent id massa id nisl venenatis lacinia.",
3436
+ "teamName": "Kilo Charlie",
3437
+ "address": "9796 Comanche Avenue",
3438
+ "country": "CZ"
3439
+ },
3440
+ {
3441
+ "jurisdiction": {
3442
+ "key": "ussec",
3443
+ "val": "USSEC"
3444
+ },
3445
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-69.jpg",
3446
+ "branch": "568",
3447
+ "team": "Mike Zulu",
3448
+ "complex": "114",
3449
+ "region": {
3450
+ "key": "oceania",
3451
+ "val": "Oceania"
3452
+ },
3453
+ "experienceYears": 14,
3454
+ "lengthOfService": 8,
3455
+ "experienceNRC": 29,
3456
+ "languages": {
3457
+ "key": [
3458
+ "de",
3459
+ "fr"
3460
+ ],
3461
+ "val": "German,<br>French"
3462
+ },
3463
+ "countriesFocus": "Brazil",
3464
+ "products": {
3465
+ "key": [
3466
+ "realEstate"
3467
+ ],
3468
+ "val": "Real Estate"
3469
+ },
3470
+ "aum": 270,
3471
+ "id": "103",
3472
+ "firstName": "Burl",
3473
+ "lastName": "Cavanaugh",
3474
+ "icaName": "Burl Cavanaugh",
3475
+ "email": "bcavanaugh2u@discuz.net",
3476
+ "gender": "M",
3477
+ "education": "Music Academy in Lodz",
3478
+ "linkedInSkill": "TCP",
3479
+ "motto": "integrate revolutionary solutions",
3480
+ "title": "Mechanical Systems Engineer",
3481
+ "bioShort": "Vivamus vel nulla eget eros elementum pellentesque. Quisque porta volutpat erat.",
3482
+ "teamName": "Mike Zulu",
3483
+ "address": "86173 Riverside Avenue",
3484
+ "country": "PL"
3485
+ },
3486
+ {
3487
+ "jurisdiction": {
3488
+ "key": "ussec",
3489
+ "val": "USSEC"
3490
+ },
3491
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-71.jpg",
3492
+ "branch": "770",
3493
+ "team": "Papa",
3494
+ "complex": "244",
3495
+ "region": {
3496
+ "key": "europe",
3497
+ "val": "Europe"
3498
+ },
3499
+ "experienceYears": 25,
3500
+ "lengthOfService": 14,
3501
+ "experienceNRC": 8,
3502
+ "languages": {
3503
+ "key": [
3504
+ "hi",
3505
+ "ar",
3506
+ "it"
3507
+ ],
3508
+ "val": "Hindi,<br>Arabic,<br>Italian"
3509
+ },
3510
+ "countriesFocus": "Nigeria,<br> Indonesia,<br> Mexico,<br> China",
3511
+ "products": {
3512
+ "key": [
3513
+ "realEstate",
3514
+ "hedgeFunds",
3515
+ "mutualFunds"
3516
+ ],
3517
+ "val": "Real Estate, Hedge Funds, Mutual Funds"
3518
+ },
3519
+ "aum": 490,
3520
+ "id": "104",
3521
+ "firstName": "Ario",
3522
+ "lastName": "Schoolcroft",
3523
+ "icaName": "Ario Schoolcroft",
3524
+ "email": "aschoolcroft2v@istockphoto.com",
3525
+ "gender": "M",
3526
+ "education": "Poltava National Technical University",
3527
+ "linkedInSkill": "Motion Graphics",
3528
+ "motto": "empower synergistic users",
3529
+ "title": "Sales Associate",
3530
+ "bioShort": "Morbi non lectus. Aliquam sit amet diam in magna bibendum imperdiet.",
3531
+ "teamName": "Papa",
3532
+ "address": "3 Mcbride Road",
3533
+ "country": "UA"
3534
+ },
3535
+ {
3536
+ "jurisdiction": {
3537
+ "key": "ussec",
3538
+ "val": "USSEC"
3539
+ },
3540
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-51.jpg",
3541
+ "branch": "101",
3542
+ "team": "Quebec Hotel",
3543
+ "complex": "101",
3544
+ "region": {
3545
+ "key": "oceania",
3546
+ "val": "Oceania"
3547
+ },
3548
+ "experienceYears": 9,
3549
+ "lengthOfService": 3,
3550
+ "experienceNRC": 7,
3551
+ "languages": {
3552
+ "key": [
3553
+ "ar",
3554
+ "ru"
3555
+ ],
3556
+ "val": "Arabic,<br>Russian"
3557
+ },
3558
+ "countriesFocus": "Saudi Arabia",
3559
+ "products": {
3560
+ "key": [
3561
+ "privateWealth",
3562
+ "privateEquityFunds"
3563
+ ],
3564
+ "val": "Private wealth, Private Equity Funds"
3565
+ },
3566
+ "aum": 60,
3567
+ "id": "105",
3568
+ "firstName": "Garnette",
3569
+ "lastName": "Petrushkevich",
3570
+ "icaName": "Garnette Petrushkevich",
3571
+ "email": "gpetrushkevich2w@vkontakte.ru",
3572
+ "gender": "F",
3573
+ "education": "Mälardalen University",
3574
+ "linkedInSkill": "DTD",
3575
+ "motto": "embrace plug-and-play action-items",
3576
+ "title": "Compensation Analyst",
3577
+ "bioShort": "Cras pellentesque volutpat dui.",
3578
+ "teamName": "Quebec Hotel",
3579
+ "address": "754 Bunker Hill Pass",
3580
+ "country": "SE"
3581
+ },
3582
+ {
3583
+ "jurisdiction": {
3584
+ "key": "imf",
3585
+ "val": "IMF"
3586
+ },
3587
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-68.jpg",
3588
+ "branch": "553",
3589
+ "team": "Foxtrot Uniform",
3590
+ "complex": "355",
3591
+ "region": {
3592
+ "key": "asia",
3593
+ "val": "Asia"
3594
+ },
3595
+ "experienceYears": 11,
3596
+ "lengthOfService": 10,
3597
+ "experienceNRC": 8,
3598
+ "languages": {
3599
+ "key": [
3600
+ "it",
3601
+ "hi"
3602
+ ],
3603
+ "val": "Italian,<br>Hindi"
3604
+ },
3605
+ "countriesFocus": "Thailand,<br> Brazil,<br> South Korea,<br> France",
3606
+ "products": {
3607
+ "key": [
3608
+ "realEstate",
3609
+ "insuranceCompanies",
3610
+ "reits"
3611
+ ],
3612
+ "val": "Real Estate, Insurance Companies, REITs"
3613
+ },
3614
+ "aum": 1160,
3615
+ "id": "106",
3616
+ "firstName": "Rudolph",
3617
+ "lastName": "Yitzhakof",
3618
+ "icaName": "Rudolph Yitzhakof",
3619
+ "email": "ryitzhakof2x@php.net",
3620
+ "gender": "M",
3621
+ "education": "Universidade Regional do Noroeste do Estado do Rio Grande do Sul",
3622
+ "linkedInSkill": "KMS",
3623
+ "motto": "exploit collaborative niches",
3624
+ "title": "Senior Cost Accountant",
3625
+ "bioShort": "Integer ac leo.",
3626
+ "teamName": "Foxtrot Uniform",
3627
+ "address": "9 Maple Pass",
3628
+ "country": "BR"
3629
+ },
3630
+ {
3631
+ "jurisdiction": {
3632
+ "key": "nsas",
3633
+ "val": "NSAA"
3634
+ },
3635
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-28.jpg",
3636
+ "branch": "299",
3637
+ "team": "Hotel Echo",
3638
+ "complex": "500",
3639
+ "region": {
3640
+ "key": "oceania",
3641
+ "val": "Oceania"
3642
+ },
3643
+ "experienceYears": 20,
3644
+ "lengthOfService": 10,
3645
+ "experienceNRC": 15,
3646
+ "languages": {
3647
+ "key": [
3648
+ "it",
3649
+ "fr"
3650
+ ],
3651
+ "val": "Italian,<br>French"
3652
+ },
3653
+ "countriesFocus": "Nigeria,<br> Italy,<br> United Kingdom",
3654
+ "products": {
3655
+ "key": [
3656
+ "foreignExchangeReserves",
3657
+ "sovereignWealthFunds"
3658
+ ],
3659
+ "val": "Foreign Exchange Reserves, Sovereign Wealth Funds"
3660
+ },
3661
+ "aum": 740,
3662
+ "id": "107",
3663
+ "firstName": "Libbey",
3664
+ "lastName": "Loghan",
3665
+ "icaName": "Libbey Loghan",
3666
+ "email": "lloghan2y@usatoday.com",
3667
+ "gender": "F",
3668
+ "education": "Universitas Negeri Gorontalo",
3669
+ "linkedInSkill": "Security Clearance",
3670
+ "motto": "empower turn-key metrics",
3671
+ "title": "Technical Writer",
3672
+ "bioShort": "Etiam pretium iaculis justo. In hac habitasse platea dictumst. Etiam faucibus cursus urna.",
3673
+ "teamName": "Hotel Echo",
3674
+ "address": "761 Hazelcrest Place",
3675
+ "country": "ID"
3676
+ },
3677
+ {
3678
+ "jurisdiction": {
3679
+ "key": "pnfe",
3680
+ "val": "PNFE"
3681
+ },
3682
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-44.jpg",
3683
+ "branch": "251",
3684
+ "team": "Papa X-ray",
3685
+ "complex": "889",
3686
+ "region": {
3687
+ "key": "asia",
3688
+ "val": "Asia"
3689
+ },
3690
+ "experienceYears": 24,
3691
+ "lengthOfService": 12,
3692
+ "experienceNRC": 25,
3693
+ "languages": {
3694
+ "key": [
3695
+ "fr",
3696
+ "hi"
3697
+ ],
3698
+ "val": "French,<br>Hindi"
3699
+ },
3700
+ "countriesFocus": "United Kingdom",
3701
+ "products": {
3702
+ "key": [
3703
+ "realEstate",
3704
+ "insuranceCompanies",
3705
+ "foreignExchangeReserves"
3706
+ ],
3707
+ "val": "Real Estate, Insurance Companies, Foreign Exchange Reserves"
3708
+ },
3709
+ "aum": 220,
3710
+ "id": "108",
3711
+ "firstName": "Maurits",
3712
+ "lastName": "Malia",
3713
+ "icaName": "Maurits Malia",
3714
+ "email": "mmalia2z@narod.ru",
3715
+ "gender": "M",
3716
+ "education": "Academy of Economics in Cracow",
3717
+ "linkedInSkill": "DHCPv6",
3718
+ "motto": "generate bleeding-edge channels",
3719
+ "title": "Compensation Analyst",
3720
+ "bioShort": "Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue. Aliquam erat volutpat.",
3721
+ "teamName": "Papa X-ray",
3722
+ "address": "4761 Derek Crossing",
3723
+ "country": "PL"
3724
+ },
3725
+ {
3726
+ "jurisdiction": {
3727
+ "key": "lrmip",
3728
+ "val": "LRMIP"
3729
+ },
3730
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-12.jpg",
3731
+ "branch": "197",
3732
+ "team": "Juliett Quebec",
3733
+ "complex": "217",
3734
+ "region": {
3735
+ "key": "europe",
3736
+ "val": "Europe"
3737
+ },
3738
+ "experienceYears": 21,
3739
+ "lengthOfService": 3,
3740
+ "experienceNRC": 5,
3741
+ "languages": {
3742
+ "key": [
3743
+ "de",
3744
+ "pt",
3745
+ "ar"
3746
+ ],
3747
+ "val": "German,<br>Portuguese,<br>Arabic"
3748
+ },
3749
+ "countriesFocus": "Nigeria,<br> United States,<br> Saudi Arabia",
3750
+ "products": {
3751
+ "key": [
3752
+ "mutualFunds"
3753
+ ],
3754
+ "val": "Mutual Funds"
3755
+ },
3756
+ "aum": 590,
3757
+ "id": "109",
3758
+ "firstName": "Vince",
3759
+ "lastName": "Churchill",
3760
+ "icaName": "Vince Churchill",
3761
+ "email": "vchurchill30@webs.com",
3762
+ "gender": "M",
3763
+ "education": "Ural State Academy of Mining and Geology",
3764
+ "linkedInSkill": "Threat &amp; Vulnerability Management",
3765
+ "motto": "reinvent B2B communities",
3766
+ "title": "Senior Sales Associate",
3767
+ "bioShort": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis.",
3768
+ "teamName": "Juliett Quebec",
3769
+ "address": "7652 Tony Plaza",
3770
+ "country": "RU"
3771
+ },
3772
+ {
3773
+ "jurisdiction": {
3774
+ "key": "nsas",
3775
+ "val": "NSAA"
3776
+ },
3777
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-30.jpg",
3778
+ "branch": "363",
3779
+ "team": "Golf Romeo",
3780
+ "complex": "124",
3781
+ "region": {
3782
+ "key": "japan",
3783
+ "val": "Japan"
3784
+ },
3785
+ "experienceYears": 9,
3786
+ "lengthOfService": 1,
3787
+ "experienceNRC": 3,
3788
+ "languages": {
3789
+ "key": [
3790
+ "pt",
3791
+ "zh",
3792
+ "es"
3793
+ ],
3794
+ "val": "Portuguese,<br>Chinese,<br>Spanish"
3795
+ },
3796
+ "countriesFocus": "Indonesia,<br> Russia,<br> Belgium",
3797
+ "products": {
3798
+ "key": [
3799
+ "privateEquityFunds",
3800
+ "mutualFunds",
3801
+ "hedgeFunds"
3802
+ ],
3803
+ "val": "Private Equity Funds, Mutual Funds, Hedge Funds"
3804
+ },
3805
+ "aum": 1050,
3806
+ "id": "110",
3807
+ "firstName": "Maryellen",
3808
+ "lastName": "Toombs",
3809
+ "icaName": "Maryellen Toombs",
3810
+ "email": "mtoombs31@answers.com",
3811
+ "gender": "F",
3812
+ "education": "Stie Perbanas Surabaya",
3813
+ "linkedInSkill": "Board Development",
3814
+ "motto": "optimize efficient e-services",
3815
+ "title": "Data Coordiator",
3816
+ "bioShort": "Aenean fermentum. Donec ut mauris eget massa tempor convallis.",
3817
+ "teamName": "Golf Romeo",
3818
+ "address": "6904 Lyons Trail",
3819
+ "country": "ID"
3820
+ },
3821
+ {
3822
+ "jurisdiction": {
3823
+ "key": "lrmip",
3824
+ "val": "LRMIP"
3825
+ },
3826
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-20.jpg",
3827
+ "branch": "128",
3828
+ "team": "Kilo Charlie",
3829
+ "complex": "510",
3830
+ "region": {
3831
+ "key": "westCoast",
3832
+ "val": "West Coast"
3833
+ },
3834
+ "experienceYears": 20,
3835
+ "lengthOfService": 10,
3836
+ "experienceNRC": 4,
3837
+ "languages": {
3838
+ "key": [
3839
+ "jp",
3840
+ "es"
3841
+ ],
3842
+ "val": "Japanese,<br>Spanish"
3843
+ },
3844
+ "countriesFocus": "South Korea,<br> France,<br> Saudi Arabia",
3845
+ "products": {
3846
+ "key": [
3847
+ "realEstate",
3848
+ "pensionFunds",
3849
+ "privateWealth"
3850
+ ],
3851
+ "val": "Real Estate, Pension funds, Private wealth"
3852
+ },
3853
+ "aum": 200,
3854
+ "id": "111",
3855
+ "firstName": "Austen",
3856
+ "lastName": "Flanagan",
3857
+ "icaName": "Austen Flanagan",
3858
+ "email": "aflanagan32@soundcloud.com",
3859
+ "gender": "M",
3860
+ "education": "Hunan Normal University",
3861
+ "linkedInSkill": "MRDs",
3862
+ "motto": "enable holistic architectures",
3863
+ "title": "Statistician IV",
3864
+ "bioShort": "Nulla suscipit ligula in lacus.",
3865
+ "teamName": "Kilo Charlie",
3866
+ "address": "5 Hallows Road",
3867
+ "country": "CN"
3868
+ },
3869
+ {
3870
+ "jurisdiction": {
3871
+ "key": "ussec",
3872
+ "val": "USSEC"
3873
+ },
3874
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-16.jpg",
3875
+ "branch": "454",
3876
+ "team": "India Yankee",
3877
+ "complex": "697",
3878
+ "region": {
3879
+ "key": "americas",
3880
+ "val": "Americas"
3881
+ },
3882
+ "experienceYears": 6,
3883
+ "lengthOfService": 2,
3884
+ "experienceNRC": 12,
3885
+ "languages": {
3886
+ "key": [
3887
+ "jp",
3888
+ "de",
3889
+ "kr"
3890
+ ],
3891
+ "val": "Japanese,<br>German,<br>Korean"
3892
+ },
3893
+ "countriesFocus": "Belgium,<br> Switzerland",
3894
+ "products": {
3895
+ "key": [
3896
+ "privateWealth"
3897
+ ],
3898
+ "val": "Private wealth"
3899
+ },
3900
+ "aum": 210,
3901
+ "id": "112",
3902
+ "firstName": "Pammi",
3903
+ "lastName": "Dorning",
3904
+ "icaName": "Pammi Dorning",
3905
+ "email": "pdorning33@reddit.com",
3906
+ "gender": "F",
3907
+ "education": "Ural State Technical University",
3908
+ "linkedInSkill": "MKS Integrity",
3909
+ "motto": "iterate revolutionary infrastructures",
3910
+ "title": "Electrical Engineer",
3911
+ "bioShort": "Integer ac leo. Pellentesque ultrices mattis odio. Donec vitae nisi.",
3912
+ "teamName": "India Yankee",
3913
+ "address": "50458 Pawling Center",
3914
+ "country": "RU"
3915
+ },
3916
+ {
3917
+ "jurisdiction": {
3918
+ "key": "nsas",
3919
+ "val": "NSAA"
3920
+ },
3921
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-48.jpg",
3922
+ "branch": "303",
3923
+ "team": "Whiskey Yankee",
3924
+ "complex": "378",
3925
+ "region": {
3926
+ "key": "europe",
3927
+ "val": "Europe"
3928
+ },
3929
+ "experienceYears": 6,
3930
+ "lengthOfService": 3,
3931
+ "experienceNRC": 19,
3932
+ "languages": {
3933
+ "key": [
3934
+ "ar"
3935
+ ],
3936
+ "val": "Arabic"
3937
+ },
3938
+ "countriesFocus": "Russia,<br> Indonesia,<br> China,<br> Italy",
3939
+ "products": {
3940
+ "key": [
3941
+ "reits",
3942
+ "hedgeFunds"
3943
+ ],
3944
+ "val": "REITs, Hedge Funds"
3945
+ },
3946
+ "aum": 1040,
3947
+ "id": "997",
3948
+ "firstName": "Hersh",
3949
+ "lastName": "Harkness",
3950
+ "icaName": "Hersh Harkness",
3951
+ "email": "hharknessro@fc2.com",
3952
+ "gender": "M",
3953
+ "education": "Nanjing University of Aeronautics and Astronautics",
3954
+ "linkedInSkill": "Environmental Science",
3955
+ "motto": "repurpose collaborative applications",
3956
+ "title": "Computer Systems Analyst II",
3957
+ "bioShort": "Praesent lectus.",
3958
+ "teamName": "Whiskey Yankee",
3959
+ "address": "3745 Sachtjen Terrace",
3960
+ "country": "CN"
3961
+ },
3962
+ {
3963
+ "jurisdiction": {
3964
+ "key": "nsas",
3965
+ "val": "NSAA"
3966
+ },
3967
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-81.jpg",
3968
+ "branch": "740",
3969
+ "team": "Charlie Golf",
3970
+ "complex": "104",
3971
+ "region": {
3972
+ "key": "ny",
3973
+ "val": "New York Region"
3974
+ },
3975
+ "experienceYears": 17,
3976
+ "lengthOfService": 10,
3977
+ "experienceNRC": 28,
3978
+ "languages": {
3979
+ "key": [
3980
+ "jp"
3981
+ ],
3982
+ "val": "Japanese"
3983
+ },
3984
+ "countriesFocus": "Turkey,<br> Switzerland",
3985
+ "products": {
3986
+ "key": [
3987
+ "privateWealth",
3988
+ "hedgeFunds",
3989
+ "mutualFunds"
3990
+ ],
3991
+ "val": "Private wealth, Hedge Funds, Mutual Funds"
3992
+ },
3993
+ "aum": 30,
3994
+ "id": "998",
3995
+ "firstName": "Boyce",
3996
+ "lastName": "Oldfield",
3997
+ "icaName": "Boyce Oldfield",
3998
+ "email": "boldfieldrp@ameblo.jp",
3999
+ "gender": "M",
4000
+ "education": "Universitas Bung Hatta",
4001
+ "linkedInSkill": "Oracle E-Business Suite",
4002
+ "motto": "iterate user-centric vortals",
4003
+ "title": "Teacher",
4004
+ "bioShort": "Curabitur convallis. Duis consequat dui nec nisi volutpat eleifend. Donec ut dolor.",
4005
+ "teamName": "Charlie Golf",
4006
+ "address": "377 Kropf Alley",
4007
+ "country": "ID"
4008
+ },
4009
+ {
4010
+ "jurisdiction": {
4011
+ "key": "nsas",
4012
+ "val": "NSAA"
4013
+ },
4014
+ "photo": "//assetscontainer.com/temp/fast-thumbs/male/thumb-m-74.jpg",
4015
+ "branch": "852",
4016
+ "team": "X-ray Zulu",
4017
+ "complex": "265",
4018
+ "region": {
4019
+ "key": "japan",
4020
+ "val": "Japan"
4021
+ },
4022
+ "experienceYears": 23,
4023
+ "lengthOfService": 4,
4024
+ "experienceNRC": 6,
4025
+ "languages": {
4026
+ "key": [
4027
+ "ar",
4028
+ "es"
4029
+ ],
4030
+ "val": "Arabic,<br>Spanish"
4031
+ },
4032
+ "countriesFocus": "Thailand,<br> Russia,<br> Belgium,<br> South Korea",
4033
+ "products": {
4034
+ "key": [
4035
+ "insuranceCompanies"
4036
+ ],
4037
+ "val": "Insurance Companies"
4038
+ },
4039
+ "aum": 710,
4040
+ "id": "999",
4041
+ "firstName": "Maxy",
4042
+ "lastName": "Wheatcroft",
4043
+ "icaName": "Maxy Wheatcroft",
4044
+ "email": "mwheatcroftrq@arstechnica.com",
4045
+ "gender": "M",
4046
+ "education": "Bohai University",
4047
+ "linkedInSkill": "ENOVIA LCA",
4048
+ "motto": "integrate viral technologies",
4049
+ "title": "Senior Cost Accountant",
4050
+ "bioShort": "Cras in purus eu magna vulputate luctus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vivamus vestibulum sagittis sapien.",
4051
+ "teamName": "X-ray Zulu",
4052
+ "address": "896 Eagan Way",
4053
+ "country": "CN"
4054
+ },
4055
+ {
4056
+ "jurisdiction": {
4057
+ "key": "nsas",
4058
+ "val": "NSAA"
4059
+ },
4060
+ "photo": "//assetscontainer.com/temp/fast-thumbs/female/thumb-f-8.jpg",
4061
+ "branch": "579",
4062
+ "team": "Charlie",
4063
+ "complex": "125",
4064
+ "region": {
4065
+ "key": "ny",
4066
+ "val": "New York Region"
4067
+ },
4068
+ "experienceYears": 10,
4069
+ "lengthOfService": 7,
4070
+ "experienceNRC": 3,
4071
+ "languages": {
4072
+ "key": [
4073
+ "jp"
4074
+ ],
4075
+ "val": "Japanese"
4076
+ },
4077
+ "countriesFocus": "Sweden,<br> Nigeria",
4078
+ "products": {
4079
+ "key": [
4080
+ "mutualFunds",
4081
+ "insuranceCompanies",
4082
+ "privateWealth"
4083
+ ],
4084
+ "val": "Mutual Funds, Insurance Companies, Private wealth"
4085
+ },
4086
+ "aum": 600,
4087
+ "id": "1000",
4088
+ "firstName": "Gussy",
4089
+ "lastName": "Hailey",
4090
+ "icaName": "Gussy Hailey",
4091
+ "email": "ghaileyrr@unesco.org",
4092
+ "gender": "F",
4093
+ "education": "Universitas Islam Sumatera Utara",
4094
+ "linkedInSkill": "WLAN",
4095
+ "motto": "whiteboard back-end ROI",
4096
+ "title": "Pharmacist",
4097
+ "bioShort": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante. Nulla justo. Aliquam quis turpis eget elit sodales scelerisque.",
4098
+ "teamName": "Charlie",
4099
+ "address": "9 Warrior Terrace",
4100
+ "country": "ID"
4101
+ }
4102
+ ]
4103
+ }