1. pip install python-dateutil

sample_read_data

  1. import json, time, datetime, math, csv, copy, sys
  2. from dateutil.parser import parse
  3. # % read worker attribute: worker_quality
  4. worker_quality = {}
  5. csvfile = open("worker_quality.csv", "r")
  6. csvreader = csv.reader(csvfile)
  7. header = next(csvreader) # 去除头行
  8. for line in csvreader:
  9. if float(line[1]) > 0.0:
  10. worker_quality[int(line[0])] = float(line[1]) / 100.0
  11. csvfile.close()
  12. # % read project id
  13. file = open("project_list.csv", "r")
  14. project_list_lines = file.readlines()
  15. file.close()
  16. project_dir = "project/"
  17. entry_dir = "entry/"
  18. all_begin_time = parse("2018-01-01T0:0:0Z")
  19. project_info = {}
  20. entry_info = {}
  21. limit = 24
  22. industry_list = {}
  23. for line in project_list_lines:
  24. line = line.strip('\n').split(',')
  25. project_id = int(line[0])
  26. entry_count = int(line[1])
  27. file = open(project_dir + "project_" + str(project_id) + ".txt", "r")
  28. htmlcode = file.read()
  29. file.close()
  30. text = json.loads(htmlcode)
  31. project_info[project_id] = {}
  32. project_info[project_id]["sub_category"] = int(text["sub_category"]) #% project sub_category
  33. project_info[project_id]["category"] = int(text["category"]) #% project category
  34. project_info[project_id]["entry_count"] = int(text["entry_count"]) #% project answers in total
  35. project_info[project_id]["start_date"] = parse(text["start_date"]) #% project start date
  36. project_info[project_id]["deadline"] = parse(text["deadline"]) #% project end date
  37. if text["industry"] not in industry_list:
  38. industry_list[text["industry"]] = len(industry_list)
  39. project_info[project_id]["industry"] = industry_list[text["industry"]] #% project domain
  40. entry_info[project_id] = {}
  41. k = 0
  42. while k < entry_count:
  43. file = open(entry_dir + "entry_" + str(project_id) + "_" + str(k) + ".txt", "r")
  44. htmlcode = file.read()
  45. file.close()
  46. text = json.loads(htmlcode)
  47. for item in text["results"]:
  48. entry_number = int(item["entry_number"])
  49. entry_info[project_id][entry_number] = {}
  50. entry_info[project_id][entry_number]["entry_created_at"] = parse(item["entry_created_at"]) #% worker answer_time
  51. entry_info[project_id][entry_number]["id"] = int(item["id"]) #% work_id,id为猜测参数,原参数为worker
  52. k += limit
  53. print("finish read_data")

text for project

  1. {
  2. "sub_category":17,
  3. "title":"I AM FITNESS Template Powerpoint Presentation",
  4. "industry":"physical-fitness",
  5. "featured":false,
  6. "status":"completed",
  7. "deadline":"2018-01-02T15:14:23.901031Z",
  8. "deadline_original":null,
  9. "start_date":"2017-12-26T22:21:20.408368Z",
  10. "category":5,
  11. "nda_auto_approve":true,
  12. "nda_portfolio_use_allowed":true,
  13. "original_package":79,
  14. "client_legal_name":"I AM FITNESS",
  15. "client_legal_country":"us",
  16. "one_to_one_negotiation_value":"0.00",
  17. "one_to_one_creative":null,
  18. "entry_ids":[
  19. 9940264,
  20. 9940049,
  21. 9940663,
  22. 9942277,
  23. 9942278,
  24. 9942281,
  25. 9941535,
  26. 9940292,
  27. 9941542,
  28. 9940127,
  29. 9942279,
  30. 9942275,
  31. 9942280,
  32. 9942576,
  33. 9942276,
  34. 9942335
  35. ],
  36. "client_feedback":43.75,
  37. "invoice_note":null,
  38. "brief_answers":{
  39. "company":"Wellness Coach",
  40. "top_3":"Clean, smart, black and white",
  41. "vision":"Clean template",
  42. "select_fonts":[
  43. "serif"
  44. ],
  45. "how_presentation_used":"All 3 ways",
  46. "industry":"physical-fitness",
  47. "select_colors":[
  48. [
  49. "eeeeee",
  50. "d0d0d0",
  51. "b2b2b2",
  52. "949494",
  53. "777777",
  54. "595959",
  55. "3B3B3B",
  56. "1D1D1D",
  57. "000000"
  58. ]
  59. ],
  60. "output":"powerpoint",
  61. "anything_else":"www.iamfitnessss.com",
  62. "initial_content":"Template Presentation - I need 20 pages including my logo in various designs and a template for my business"
  63. },
  64. "brief_questions":[
  65. {
  66. "description":"Please provide a 2-3 sentence summary of your project. This will be publicly visible, so don't share anything confidential.",
  67. "name":"description",
  68. "validations":[
  69. "required"
  70. ],
  71. "answer_label":"Project Summary",
  72. "type":"textarea",
  73. "label":"Summarize your project.",
  74. "help":""
  75. },
  76. {
  77. "validations":[
  78. "required"
  79. ],
  80. "help":"",
  81. "name":"industry",
  82. "options":[
  83. {
  84. "field":"advertising-and-marketing",
  85. "label":"Advertising & Marketing"
  86. },
  87. {
  88. "field":"agriculture",
  89. "label":"Agriculture"
  90. },
  91. {
  92. "field":"animal-pet",
  93. "label":"Animal & Pet"
  94. },
  95. {
  96. "field":"architectural",
  97. "label":"Architectural"
  98. },
  99. {
  100. "field":"art-design",
  101. "label":"Art & Design"
  102. },
  103. {
  104. "field":"automotive",
  105. "label":"Automotive"
  106. },
  107. {
  108. "field":"bar-nightclub",
  109. "label":"Bar & Nightclub"
  110. },
  111. {
  112. "field":"cleaning-maintenance",
  113. "label":"Cleaning & Maintenance"
  114. },
  115. {
  116. "field":"communications",
  117. "label":"Communications"
  118. },
  119. {
  120. "field":"community-non-profit",
  121. "label":"Community & Non-Profit"
  122. },
  123. {
  124. "field":"consulting-and-professional-services",
  125. "label":"Consulting & Professional Services"
  126. },
  127. {
  128. "field":"cosmetics-beauty",
  129. "label":"Cosmetics & Beauty"
  130. },
  131. {
  132. "field":"education-and-universities",
  133. "label":"Education"
  134. },
  135. {
  136. "field":"entertainment-and-sports",
  137. "label":"Entertainment & Sports"
  138. },
  139. {
  140. "field":"environmental",
  141. "label":"Environmental"
  142. },
  143. {
  144. "field":"fashion",
  145. "label":"Fashion"
  146. },
  147. {
  148. "field":"financial-services",
  149. "label":"Financial Services"
  150. },
  151. {
  152. "field":"food-and-beverage",
  153. "label":"Food & Beverage"
  154. },
  155. {
  156. "field":"games-recreational",
  157. "label":"Games & Recreational"
  158. },
  159. {
  160. "field":"government-and-municipal",
  161. "label":"Government & Municipal"
  162. },
  163. {
  164. "field":"health-care-and-biotech",
  165. "label":"Health Care & Biotech"
  166. },
  167. {
  168. "field":"home-furnishing",
  169. "label":"Home Furnishing"
  170. },
  171. {
  172. "field":"industrial",
  173. "label":"Industrial"
  174. },
  175. {
  176. "field":"internet",
  177. "label":"Internet"
  178. },
  179. {
  180. "field":"landscaping",
  181. "label":"Landscaping"
  182. },
  183. {
  184. "field":"legal",
  185. "label":"Legal"
  186. },
  187. {
  188. "field":"photography",
  189. "label":"Photography"
  190. },
  191. {
  192. "field":"physical-fitness",
  193. "label":"Physical Fitness"
  194. },
  195. {
  196. "field":"publishing-and-media",
  197. "label":"Publishing & Media"
  198. },
  199. {
  200. "field":"real-estate-and-construction",
  201. "label":"Real Estate & Construction"
  202. },
  203. {
  204. "field":"religious",
  205. "label":"Religious"
  206. },
  207. {
  208. "field":"retail",
  209. "label":"Retail"
  210. },
  211. {
  212. "field":"software-and-information-technology",
  213. "label":"Software & Technology"
  214. },
  215. {
  216. "field":"travel-hotel",
  217. "label":"Travel & Hotel"
  218. },
  219. {
  220. "field":"wedding-service",
  221. "label":"Wedding Service"
  222. },
  223. {
  224. "field":"other",
  225. "label":"Other"
  226. }
  227. ],
  228. "answer_label":"Industry",
  229. "type":"select",
  230. "label":"What industry do you work in?",
  231. "description":"Which industry most closely aligns with your company/organization?"
  232. },
  233. {
  234. "description":"What do you do? Who is your target audience?",
  235. "name":"company",
  236. "validations":[
  237. "required"
  238. ],
  239. "answer_label":"About Your Company",
  240. "type":"textarea",
  241. "label":"Tell us about your company/organization.",
  242. "help":"This more you share, the better your results will be."
  243. },
  244. {
  245. "description":"Will it be delivered in person, on screen, projected?",
  246. "name":"how_presentation_used",
  247. "validations":[
  248. "required"
  249. ],
  250. "answer_label":"How presentation will be used",
  251. "type":"textarea",
  252. "label":"How will your presentation be used?",
  253. "help":""
  254. },
  255. {
  256. "validations":[
  257. "required"
  258. ],
  259. "help":"",
  260. "name":"output",
  261. "options":[
  262. {
  263. "field":"pdf",
  264. "label":"PDF"
  265. },
  266. {
  267. "field":"keynote",
  268. "label":"Keynote"
  269. },
  270. {
  271. "field":"powerpoint",
  272. "label":"PowerPoint"
  273. },
  274. {
  275. "field":"other",
  276. "label":"Other"
  277. }
  278. ],
  279. "answer_label":"Output",
  280. "type":"radio",
  281. "label":"What is the desired output?",
  282. "description":"What filetype do you need? Select all that apply."
  283. },
  284. {
  285. "validations":[
  286. "required"
  287. ],
  288. "help":"",
  289. "name":"select_colors",
  290. "options":[
  291. {
  292. "colors":[
  293. "ffcdd2",
  294. "ef9a9a",
  295. "e57373",
  296. "ef5350",
  297. "f44336",
  298. "e53935",
  299. "d32f2f",
  300. "c62828",
  301. "b71c1c"
  302. ],
  303. "label":"Reds",
  304. "name":"Red"
  305. },
  306. {
  307. "colors":[
  308. "F8BBD0",
  309. "F48FB1",
  310. "F06292",
  311. "EC407A",
  312. "E91E63",
  313. "D81B60",
  314. "C2185B",
  315. "AD1457",
  316. "880E4F"
  317. ],
  318. "label":"Pinks",
  319. "name":"Pink"
  320. },
  321. {
  322. "colors":[
  323. "D1C4E9",
  324. "B39DDB",
  325. "9575CD",
  326. "7E57C2",
  327. "673AB7",
  328. "5E35B1",
  329. "512DA8",
  330. "4527A0",
  331. "311B92"
  332. ],
  333. "label":"Purples",
  334. "name":"Purple"
  335. },
  336. {
  337. "colors":[
  338. "BBDEFB",
  339. "90CAF9",
  340. "64B5F6",
  341. "42A5F5",
  342. "2196F3",
  343. "1E88E5",
  344. "1976D2",
  345. "1565C0",
  346. "0D47A1"
  347. ],
  348. "label":"Blues",
  349. "name":"Blue"
  350. },
  351. {
  352. "colors":[
  353. "B2EBF2",
  354. "80DEEA",
  355. "4DD0E1",
  356. "26C6DA",
  357. "00BCD4",
  358. "00ACC1",
  359. "0097A7",
  360. "00838F",
  361. "006064"
  362. ],
  363. "label":"Aquas",
  364. "name":"Aqua"
  365. },
  366. {
  367. "colors":[
  368. "DCEDC8",
  369. "C5E1A5",
  370. "AED581",
  371. "9CCC65",
  372. "8BC34A",
  373. "7CB342",
  374. "689F38",
  375. "558B2F",
  376. "33691E"
  377. ],
  378. "label":"Greens",
  379. "name":"Green"
  380. },
  381. {
  382. "colors":[
  383. "FFF9C4",
  384. "FFF59D",
  385. "FFF176",
  386. "FFEE58",
  387. "FFEB3B",
  388. "FDD835",
  389. "FBC02D",
  390. "F9A825",
  391. "F57F17"
  392. ],
  393. "label":"Yellows",
  394. "name":"Yellow"
  395. },
  396. {
  397. "colors":[
  398. "FFE0B2",
  399. "FFCC80",
  400. "FFB74D",
  401. "FFA726",
  402. "FF9800",
  403. "FB8C00",
  404. "F57C00",
  405. "EF6C00",
  406. "E65100"
  407. ],
  408. "label":"Oranges",
  409. "name":"Orange"
  410. },
  411. {
  412. "colors":[
  413. "D7CCC8",
  414. "BCAAA4",
  415. "A1887F",
  416. "8D6E63",
  417. "795548",
  418. "6D4C41",
  419. "5D4037",
  420. "4E342E",
  421. "3E2723"
  422. ],
  423. "label":"Browns",
  424. "name":"Brown"
  425. },
  426. {
  427. "colors":[
  428. "eeeeee",
  429. "d0d0d0",
  430. "b2b2b2",
  431. "949494",
  432. "777777",
  433. "595959",
  434. "3B3B3B",
  435. "1D1D1D",
  436. "000000"
  437. ],
  438. "label":"Greys",
  439. "name":"Grey"
  440. },
  441. {
  442. "colors":[
  443. "f44336",
  444. "4CAF50",
  445. "2196F3",
  446. "FFEB3B",
  447. "673AB7",
  448. "FF9800",
  449. "00BCD4",
  450. "795548",
  451. "777777"
  452. ],
  453. "label":"Designer's Choice",
  454. "name":"Designer"
  455. }
  456. ],
  457. "answer_label":"Colors to Explore",
  458. "type":"color-selector",
  459. "label":"Which colors do you prefer?",
  460. "description":"What colors do you want creatives to explore? Select up to 3."
  461. },
  462. {
  463. "validations":[
  464. "required"
  465. ],
  466. "help":"",
  467. "name":"select_fonts",
  468. "options":[
  469. {
  470. "icon":"font-sans",
  471. "field":"sans_serif",
  472. "label":"Sans-serif"
  473. },
  474. {
  475. "icon":"font-serif",
  476. "field":"serif",
  477. "label":"Serif"
  478. },
  479. {
  480. "icon":"font-block",
  481. "field":"block_serif",
  482. "label":"Block Serif"
  483. },
  484. {
  485. "icon":"font-script",
  486. "field":"script",
  487. "label":"Script"
  488. },
  489. {
  490. "icon":"font-mono",
  491. "field":"mono",
  492. "label":"Mono"
  493. },
  494. {
  495. "icon":"no-preference",
  496. "field":"no_preference",
  497. "label":"No Preference"
  498. }
  499. ],
  500. "answer_label":"Preferred Fonts",
  501. "type":"multi-grid-select",
  502. "label":"Which fonts do you prefer?",
  503. "description":"Select all that apply."
  504. },
  505. {
  506. "description":"Summarize the content you plan to upload, or list the specific content you need included, such as written copy, existing logo, photography, etc.",
  507. "name":"initial_content",
  508. "validations":[
  509. "required"
  510. ],
  511. "answer_label":"Content",
  512. "type":"textarea",
  513. "label":"What content should your presentation include?",
  514. "help":"You can also upload a file in a later step."
  515. },
  516. {
  517. "description":"What are the top 3 things you want to communicate through your presentation?",
  518. "name":"top_3",
  519. "validations":[
  520. "required"
  521. ],
  522. "answer_label":"Top 3 Things",
  523. "type":"textarea",
  524. "label":"What are your top 3 things?",
  525. "help":"Examples: Modernity, Professionalism, Strength."
  526. },
  527. {
  528. "description":"What does the winning presentation look like? Anything you don't want to see?",
  529. "name":"vision",
  530. "validations":[
  531. "required"
  532. ],
  533. "answer_label":"Vision",
  534. "type":"textarea",
  535. "label":"What is your vision for your presentation?",
  536. "help":""
  537. },
  538. {
  539. "description":"The more information, the better your results will be. Include links to things that inspired you, competitor information, or any other info. Remember to include any special file formats you will need.",
  540. "name":"anything_else",
  541. "validations":[
  542. ],
  543. "answer_label":"Additional Info",
  544. "type":"textarea",
  545. "label":"Do you want to provide any additional info?",
  546. "help":""
  547. },
  548. {
  549. "description":"Share files like sketches, screenshots, examples or other reference material.",
  550. "name":"file_upload",
  551. "validations":[
  552. ],
  553. "answer_label":"Files",
  554. "type":"files",
  555. "label":"Do you want to share any files?",
  556. "help":""
  557. }
  558. ],
  559. "id":2892548,
  560. "client":3064387,
  561. "created_at":"2017-12-26T22:15:17.998456Z",
  562. "updated_at":"2018-12-17T19:37:15.936835Z",
  563. "slug":"i-am-fitness-template-powerpoint-presentation",
  564. "entry_count":16,
  565. "creative_count":4,
  566. "unscored_entry_count":9,
  567. "nda_pending_creative_count":0,
  568. "creative_ids":[],
  569. "watchers_count":8,
  570. "average_score":3.3,
  571. "entry_type":"image",
  572. "is_one_to_one":false,
  573. "is_legacy":false,
  574. "one_to_one_negotiation_status":"not_started",
  575. "total_awards":200,
  576. "total_package_tips":0,
  577. "assured":false,
  578. "private_gallery":false,
  579. "search_exclusion":false,
  580. "nda_required":false,
  581. "package_name":"Silver",
  582. "message_stream_id":1304068,
  583. "collaboration_allowed":false,
  584. "platinum_only":false,
  585. "elite_only":false,
  586. "visible":true,
  587. "billables":[],
  588. "nda_manual_approval_allowed":false,
  589. "elite_reservations":{},
  590. "one_to_one_declined_creative_ids":[],
  591. "project_thumbnail":"https://crowdspring3-production.s3.amazonaws.com/project_entries/fd/e6f9a4689ec942e88b657cd6186c8020",
  592. "presentations_allowed":false,
  593. "can_create_focus_group":true,
  594. "give_back":false,
  595. "removed_creative_ids":[],
  596. "attachments_zip":"",
  597. "attachments_zip_created_at":"",
  598. "elite_participants":[],
  599. "total_awards_and_tips":200,
  600. "award_rules":[
  601. {
  602. "order":0,
  603. "uuid":"eca7fbdb-2c4b-4a18-892c-696b6c7cf29f",
  604. "id":303,
  605. "feature":{
  606. "common_name":null,
  607. "fee_rules":[
  608. {
  609. "price":"15.00",
  610. "start":200,
  611. "id":320,
  612. "price_calculation":"PERCENTAGE",
  613. "end":null
  614. },
  615. {
  616. "price":"0.00",
  617. "start":0,
  618. "id":319,
  619. "price_calculation":"FLAT",
  620. "end":200
  621. }
  622. ],
  623. "normal_price":null,
  624. "active":true,
  625. "default":true,
  626. "pricing_algorithm":"first match",
  627. "value":"200",
  628. "id":346,
  629. "included":true,
  630. "price":"0.00",
  631. "provides":[
  632. {
  633. "name":"Award",
  634. "id":20,
  635. "code":"AWARD"
  636. }
  637. ],
  638. "description":"",
  639. "visible":true,
  640. "value_display":null,
  641. "overrides":[
  642. ],
  643. "min":200,
  644. "requires":null,
  645. "read_only":false,
  646. "fee_algorithm":"ranged",
  647. "internal_name":"Presentation Award $200 (Silver)",
  648. "options":[
  649. ],
  650. "type":"free value",
  651. "minimum_fee":null,
  652. "position":1,
  653. "group":null,
  654. "name":"Award",
  655. "pricing_rules":[
  656. {
  657. "price":"1.00",
  658. "start":0,
  659. "id":159,
  660. "price_calculation":"UNITY",
  661. "end":null
  662. }
  663. ],
  664. "max":null,
  665. "fee":"0.00"
  666. }
  667. },
  668. {
  669. "order":1,
  670. "uuid":"02b7f23f-76b8-49de-9fbc-3a79fe53ab40",
  671. "id":304,
  672. "feature":{
  673. "common_name":null,
  674. "fee_rules":[
  675. {
  676. "price":"15.00",
  677. "start":200,
  678. "id":304,
  679. "price_calculation":"PERCENTAGE",
  680. "end":null
  681. },
  682. {
  683. "price":"15.00",
  684. "start":0,
  685. "id":303,
  686. "price_calculation":"PERCENTAGE",
  687. "end":200
  688. }
  689. ],
  690. "normal_price":null,
  691. "active":false,
  692. "default":false,
  693. "pricing_algorithm":"first match",
  694. "value":"200",
  695. "id":338,
  696. "included":false,
  697. "price":"0.00",
  698. "provides":[
  699. {
  700. "name":"Award",
  701. "id":20,
  702. "code":"AWARD"
  703. }
  704. ],
  705. "description":"",
  706. "visible":false,
  707. "value_display":null,
  708. "overrides":[
  709. ],
  710. "min":200,
  711. "requires":null,
  712. "read_only":false,
  713. "fee_algorithm":"ranged",
  714. "internal_name":"Presentation Silver $200 Extra Award",
  715. "options":[
  716. ],
  717. "type":"free value",
  718. "minimum_fee":null,
  719. "position":0,
  720. "group":null,
  721. "name":"Award",
  722. "pricing_rules":[
  723. {
  724. "price":"1.00",
  725. "start":0,
  726. "id":151,
  727. "price_calculation":"UNITY",
  728. "end":null
  729. }
  730. ],
  731. "max":null,
  732. "fee":"0.00"
  733. }
  734. }
  735. ],
  736. "features":[
  737. {
  738. "order":0,
  739. "uuid":"7f8d7ae0-54e1-43c4-98a8-b2dd1a47823a",
  740. "id":1599,
  741. "feature":{
  742. "common_name":null,
  743. "fee_rules":[
  744. ],
  745. "normal_price":null,
  746. "active":true,
  747. "default":true,
  748. "pricing_algorithm":"first match",
  749. "value":null,
  750. "id":179,
  751. "included":true,
  752. "price":"99.00",
  753. "provides":[
  754. {
  755. "name":"Fee",
  756. "id":19,
  757. "code":"FEE"
  758. }
  759. ],
  760. "description":"",
  761. "visible":false,
  762. "value_display":null,
  763. "overrides":[
  764. ],
  765. "min":null,
  766. "requires":null,
  767. "read_only":true,
  768. "fee_algorithm":"first match",
  769. "internal_name":"Fee $99 (Presentation Silver)",
  770. "options":[
  771. ],
  772. "type":"simple",
  773. "minimum_fee":null,
  774. "position":0,
  775. "group":null,
  776. "name":"Fee",
  777. "pricing_rules":[
  778. ],
  779. "max":null,
  780. "fee":"0.00"
  781. }
  782. },
  783. {
  784. "order":0,
  785. "uuid":"29b2b773-f179-4739-98ee-1cf2f800f7e8",
  786. "id":1584,
  787. "feature":{
  788. "common_name":null,
  789. "fee_rules":[
  790. ],
  791. "normal_price":null,
  792. "active":true,
  793. "default":true,
  794. "pricing_algorithm":"first match",
  795. "value":"60",
  796. "id":13,
  797. "included":true,
  798. "price":"0.00",
  799. "provides":[
  800. ],
  801. "description":"",
  802. "visible":true,
  803. "value_display":"~60",
  804. "overrides":[
  805. {
  806. "name":"Designs to Expect",
  807. "id":4,
  808. "code":"DESIGNS_TO_EXPECT"
  809. }
  810. ],
  811. "min":null,
  812. "requires":null,
  813. "read_only":true,
  814. "fee_algorithm":"first match",
  815. "internal_name":"Designs to expect ~60",
  816. "options":[
  817. ],
  818. "type":"simple",
  819. "minimum_fee":null,
  820. "position":0,
  821. "group":null,
  822. "name":"Designs to expect",
  823. "pricing_rules":[
  824. ],
  825. "max":null,
  826. "fee":"0.00"
  827. }
  828. },
  829. {
  830. "order":1,
  831. "uuid":"65b3d166-7f6d-4aff-ae8d-0a8722024f48",
  832. "id":1585,
  833. "feature":{
  834. "common_name":null,
  835. "fee_rules":[
  836. ],
  837. "normal_price":null,
  838. "active":true,
  839. "default":true,
  840. "pricing_algorithm":"first match",
  841. "value":"1",
  842. "id":1,
  843. "included":true,
  844. "price":"0.00",
  845. "provides":[
  846. {
  847. "name":"Money back guarantee",
  848. "id":1,
  849. "code":"MONEY_BACK_GUARANTEE"
  850. }
  851. ],
  852. "description":"If you're not completely happy with your design project, we'll promptly refund all your money. Promise.",
  853. "visible":true,
  854. "value_display":null,
  855. "overrides":[
  856. ],
  857. "min":null,
  858. "requires":null,
  859. "read_only":false,
  860. "fee_algorithm":"first match",
  861. "internal_name":null,
  862. "options":[
  863. ],
  864. "type":"simple",
  865. "minimum_fee":null,
  866. "position":0,
  867. "group":null,
  868. "name":"Money back guarantee",
  869. "pricing_rules":[
  870. ],
  871. "max":null,
  872. "fee":"0.00"
  873. }
  874. },
  875. {
  876. "order":2,
  877. "uuid":"34f87766-d2aa-4c08-9d37-7c68e8759bd4",
  878. "id":1586,
  879. "feature":{
  880. "common_name":null,
  881. "fee_rules":[
  882. ],
  883. "normal_price":null,
  884. "active":true,
  885. "default":true,
  886. "pricing_algorithm":"first match",
  887. "value":"0",
  888. "id":10,
  889. "included":true,
  890. "price":"0.00",
  891. "provides":[
  892. {
  893. "name":"Creatives",
  894. "id":5,
  895. "code":"CREATIVES"
  896. }
  897. ],
  898. "description":"we'll invite our entire community to participate in your project.",
  899. "visible":true,
  900. "value_display":"Unlimited",
  901. "overrides":[
  902. ],
  903. "min":null,
  904. "requires":null,
  905. "read_only":true,
  906. "fee_algorithm":"first match",
  907. "internal_name":"Creatives unlimited",
  908. "options":[
  909. ],
  910. "type":"simple",
  911. "minimum_fee":null,
  912. "position":0,
  913. "group":null,
  914. "name":"Creatives",
  915. "pricing_rules":[
  916. ],
  917. "max":null,
  918. "fee":"0.00"
  919. }
  920. },
  921. {
  922. "order":3,
  923. "uuid":"1aaf0627-d33e-4b34-bf7a-9071cc329acd",
  924. "id":1587,
  925. "feature":{
  926. "common_name":null,
  927. "fee_rules":[
  928. ],
  929. "normal_price":null,
  930. "active":true,
  931. "default":true,
  932. "pricing_algorithm":"first match",
  933. "value":"1",
  934. "id":63,
  935. "included":true,
  936. "price":"0.00",
  937. "provides":[
  938. {
  939. "name":"Limited Focus Group",
  940. "id":24,
  941. "code":"FOCUS_GROUPS_LIMITED"
  942. }
  943. ],
  944. "description":"",
  945. "visible":true,
  946. "value_display":null,
  947. "overrides":[
  948. ],
  949. "min":null,
  950. "requires":null,
  951. "read_only":true,
  952. "fee_algorithm":"first match",
  953. "internal_name":null,
  954. "options":[
  955. ],
  956. "type":"simple",
  957. "minimum_fee":null,
  958. "position":0,
  959. "group":null,
  960. "name":"One Focus Group",
  961. "pricing_rules":[
  962. ],
  963. "max":1,
  964. "fee":"0.00"
  965. }
  966. },
  967. {
  968. "order":4,
  969. "uuid":"0929b7c7-97c2-494d-b485-2a584ac0cfd1",
  970. "id":1588,
  971. "feature":{
  972. "common_name":null,
  973. "fee_rules":[
  974. ],
  975. "normal_price":null,
  976. "active":true,
  977. "default":true,
  978. "pricing_algorithm":"first match",
  979. "value":"7",
  980. "id":4,
  981. "included":true,
  982. "price":"0.00",
  983. "provides":[
  984. {
  985. "name":"Length",
  986. "id":3,
  987. "code":"PROJECT_LENGTH"
  988. }
  989. ],
  990. "description":"",
  991. "visible":false,
  992. "value_display":null,
  993. "overrides":[
  994. ],
  995. "min":null,
  996. "requires":null,
  997. "read_only":false,
  998. "fee_algorithm":"first match",
  999. "internal_name":"7 day project - FREE",
  1000. "options":[
  1001. ],
  1002. "type":"simple",
  1003. "minimum_fee":null,
  1004. "position":0,
  1005. "group":"LENGTH",
  1006. "name":"7 day project",
  1007. "pricing_rules":[
  1008. ],
  1009. "max":null,
  1010. "fee":"0.00"
  1011. }
  1012. },
  1013. {
  1014. "order":11,
  1015. "uuid":"26956bf9-ac5b-4864-ae90-984acbd672cd",
  1016. "id":1589,
  1017. "feature":{
  1018. "common_name":null,
  1019. "fee_rules":[
  1020. ],
  1021. "normal_price":null,
  1022. "active":false,
  1023. "default":false,
  1024. "pricing_algorithm":"first match",
  1025. "value":"1",
  1026. "id":8,
  1027. "included":false,
  1028. "price":"79.00",
  1029. "provides":[
  1030. {
  1031. "name":"Length",
  1032. "id":3,
  1033. "code":"PROJECT_LENGTH"
  1034. }
  1035. ],
  1036. "description":"",
  1037. "visible":true,
  1038. "value_display":null,
  1039. "overrides":[
  1040. ],
  1041. "min":null,
  1042. "requires":null,
  1043. "read_only":false,
  1044. "fee_algorithm":"first match",
  1045. "internal_name":"1 day project - $79",
  1046. "options":[
  1047. ],
  1048. "type":"simple",
  1049. "minimum_fee":null,
  1050. "position":0,
  1051. "group":"LENGTH",
  1052. "name":"1 day project",
  1053. "pricing_rules":[
  1054. ],
  1055. "max":null,
  1056. "fee":"0.00"
  1057. }
  1058. },
  1059. {
  1060. "order":12,
  1061. "uuid":"af766492-645d-433c-9231-daee419a5048",
  1062. "id":1590,
  1063. "feature":{
  1064. "common_name":null,
  1065. "fee_rules":[
  1066. ],
  1067. "normal_price":null,
  1068. "active":false,
  1069. "default":false,
  1070. "pricing_algorithm":"first match",
  1071. "value":"2",
  1072. "id":7,
  1073. "included":false,
  1074. "price":"59.00",
  1075. "provides":[
  1076. {
  1077. "name":"Length",
  1078. "id":3,
  1079. "code":"PROJECT_LENGTH"
  1080. }
  1081. ],
  1082. "description":"",
  1083. "visible":true,
  1084. "value_display":null,
  1085. "overrides":[
  1086. ],
  1087. "min":null,
  1088. "requires":null,
  1089. "read_only":false,
  1090. "fee_algorithm":"first match",
  1091. "internal_name":"2 day project $59",
  1092. "options":[
  1093. ],
  1094. "type":"simple",
  1095. "minimum_fee":null,
  1096. "position":0,
  1097. "group":"LENGTH",
  1098. "name":"2 day project",
  1099. "pricing_rules":[
  1100. ],
  1101. "max":null,
  1102. "fee":"0.00"
  1103. }
  1104. },
  1105. {
  1106. "order":13,
  1107. "uuid":"5f6a8e53-ccad-46da-98a1-a9d762f5c713",
  1108. "id":1591,
  1109. "feature":{
  1110. "common_name":null,
  1111. "fee_rules":[
  1112. ],
  1113. "normal_price":null,
  1114. "active":false,
  1115. "default":false,
  1116. "pricing_algorithm":"first match",
  1117. "value":"3",
  1118. "id":5,
  1119. "included":false,
  1120. "price":"39.00",
  1121. "provides":[
  1122. {
  1123. "name":"Length",
  1124. "id":3,
  1125. "code":"PROJECT_LENGTH"
  1126. }
  1127. ],
  1128. "description":"",
  1129. "visible":true,
  1130. "value_display":null,
  1131. "overrides":[
  1132. ],
  1133. "min":null,
  1134. "requires":null,
  1135. "read_only":false,
  1136. "fee_algorithm":"first match",
  1137. "internal_name":"3 day project - $39",
  1138. "options":[
  1139. ],
  1140. "type":"simple",
  1141. "minimum_fee":null,
  1142. "position":0,
  1143. "group":"LENGTH",
  1144. "name":"3 day project",
  1145. "pricing_rules":[
  1146. ],
  1147. "max":null,
  1148. "fee":"0.00"
  1149. }
  1150. },
  1151. {
  1152. "order":20,
  1153. "uuid":"74d44b46-812d-45ce-9289-7e9616e23ab1",
  1154. "id":1593,
  1155. "feature":{
  1156. "common_name":null,
  1157. "fee_rules":[
  1158. ],
  1159. "normal_price":null,
  1160. "active":false,
  1161. "default":false,
  1162. "pricing_algorithm":"first match",
  1163. "value":"1",
  1164. "id":66,
  1165. "included":false,
  1166. "price":"39.00",
  1167. "provides":[
  1168. {
  1169. "name":"Search Engine Exclusion",
  1170. "id":11,
  1171. "code":"SEARCH_EXCLUSION"
  1172. }
  1173. ],
  1174. "description":"If you don’t want others to know about your project, hide it from search engines. Project titles can't be hidden, so please be sure that your project title doesn't contain any confidential information.",
  1175. "visible":true,
  1176. "value_display":null,
  1177. "overrides":[
  1178. ],
  1179. "min":null,
  1180. "requires":null,
  1181. "read_only":false,
  1182. "fee_algorithm":"first match",
  1183. "internal_name":"Search Exclusion - Optional",
  1184. "options":[
  1185. ],
  1186. "type":"simple",
  1187. "minimum_fee":null,
  1188. "position":0,
  1189. "group":null,
  1190. "name":"Search Exclusion",
  1191. "pricing_rules":[
  1192. ],
  1193. "max":null,
  1194. "fee":"0.00"
  1195. }
  1196. },
  1197. {
  1198. "order":20,
  1199. "uuid":"7980abba-5a07-4b9f-afb6-a5dd11ec3210",
  1200. "id":1592,
  1201. "feature":{
  1202. "common_name":null,
  1203. "fee_rules":[
  1204. ],
  1205. "normal_price":null,
  1206. "active":false,
  1207. "default":false,
  1208. "pricing_algorithm":"first match",
  1209. "value":"1",
  1210. "id":33,
  1211. "included":false,
  1212. "price":"0.00",
  1213. "provides":[
  1214. {
  1215. "name":"Assure Your Award",
  1216. "id":16,
  1217. "code":"BUYER_ASSURED"
  1218. }
  1219. ],
  1220. "description":"By assuring someone will win the award, you show creatives that you're a commited buyer.",
  1221. "visible":true,
  1222. "value_display":"FREE",
  1223. "overrides":[
  1224. ],
  1225. "min":null,
  1226. "requires":null,
  1227. "read_only":false,
  1228. "fee_algorithm":"first match",
  1229. "internal_name":"Assure Your Award - Optional",
  1230. "options":[
  1231. ],
  1232. "type":"simple",
  1233. "minimum_fee":null,
  1234. "position":0,
  1235. "group":null,
  1236. "name":"Assure Your Award",
  1237. "pricing_rules":[
  1238. ],
  1239. "max":null,
  1240. "fee":"0.00"
  1241. }
  1242. },
  1243. {
  1244. "order":20,
  1245. "uuid":"4d598324-a98a-4c87-a311-45fece547485",
  1246. "id":1594,
  1247. "feature":{
  1248. "common_name":null,
  1249. "fee_rules":[
  1250. ],
  1251. "normal_price":null,
  1252. "active":false,
  1253. "default":false,
  1254. "pricing_algorithm":"first match",
  1255. "value":null,
  1256. "id":68,
  1257. "included":false,
  1258. "price":"29.00",
  1259. "provides":[
  1260. {
  1261. "name":"Unlimited Focus Groups",
  1262. "id":10,
  1263. "code":"FOCUS_GROUPS"
  1264. }
  1265. ],
  1266. "description":"",
  1267. "visible":true,
  1268. "value_display":null,
  1269. "overrides":[
  1270. ],
  1271. "min":null,
  1272. "requires":null,
  1273. "read_only":false,
  1274. "fee_algorithm":"first match",
  1275. "internal_name":"Unlimited Focus Groups - Optional",
  1276. "options":[
  1277. ],
  1278. "type":"simple",
  1279. "minimum_fee":null,
  1280. "position":0,
  1281. "group":null,
  1282. "name":"Unlimited Focus Groups",
  1283. "pricing_rules":[
  1284. ],
  1285. "max":null,
  1286. "fee":"0.00"
  1287. }
  1288. },
  1289. {
  1290. "order":30,
  1291. "uuid":"3bd34026-e7d0-4598-bf32-ad22d92bf5e3",
  1292. "id":1595,
  1293. "feature":{
  1294. "common_name":null,
  1295. "fee_rules":[
  1296. ],
  1297. "normal_price":null,
  1298. "active":false,
  1299. "default":false,
  1300. "pricing_algorithm":"first match",
  1301. "value":"1",
  1302. "id":16,
  1303. "included":false,
  1304. "price":"69.00",
  1305. "provides":[
  1306. {
  1307. "name":"Starter Promotion (Twitter)",
  1308. "id":6,
  1309. "code":"STARTER_PROMO"
  1310. },
  1311. {
  1312. "name":"Post on Twitter",
  1313. "id":26,
  1314. "code":"POST_TWITTER"
  1315. }
  1316. ],
  1317. "description":"<ul style='list-style: null;'>\r\n<li>Your project in lights - we\"ll tweet your project to a huge online community! </li>\r\n<li>The power of the social web at your command.</li>\r\n</ul>",
  1318. "visible":true,
  1319. "value_display":null,
  1320. "overrides":[
  1321. ],
  1322. "min":null,
  1323. "requires":null,
  1324. "read_only":false,
  1325. "fee_algorithm":"first match",
  1326. "internal_name":"Starter Promotion - Optional",
  1327. "options":[
  1328. ],
  1329. "type":"simple",
  1330. "minimum_fee":null,
  1331. "position":0,
  1332. "group":"PROMOTION",
  1333. "name":"Starter Promotion (Twitter)",
  1334. "pricing_rules":[
  1335. ],
  1336. "max":null,
  1337. "fee":"0.00"
  1338. }
  1339. },
  1340. {
  1341. "order":31,
  1342. "uuid":"a8c6aa93-dc2d-4eff-b7bb-d6536649bcb7",
  1343. "id":1596,
  1344. "feature":{
  1345. "common_name":null,
  1346. "fee_rules":[
  1347. ],
  1348. "normal_price":null,
  1349. "active":false,
  1350. "default":false,
  1351. "pricing_algorithm":"first match",
  1352. "value":"1",
  1353. "id":17,
  1354. "included":false,
  1355. "price":"49.00",
  1356. "provides":[
  1357. {
  1358. "name":"Basic Promotion",
  1359. "id":7,
  1360. "code":"BASIC_PROMO"
  1361. },
  1362. {
  1363. "name":"Featured Project",
  1364. "id":22,
  1365. "code":"FEATURED_PROJECT"
  1366. }
  1367. ],
  1368. "description":"<ul style='list-style: null;'>\r\n<li><strong>25% more entries</strong> and <strong>27% more creatives</strong> on average.</li>\r\n<li>Highlighted listing on our Explore page to give your project more visibility.</li>\r\n</ul>",
  1369. "visible":true,
  1370. "value_display":null,
  1371. "overrides":[
  1372. ],
  1373. "min":null,
  1374. "requires":null,
  1375. "read_only":false,
  1376. "fee_algorithm":"first match",
  1377. "internal_name":"Basic Promotion - Optional",
  1378. "options":[
  1379. ],
  1380. "type":"simple",
  1381. "minimum_fee":null,
  1382. "position":0,
  1383. "group":"PROMOTION",
  1384. "name":"Basic Promotion",
  1385. "pricing_rules":[
  1386. ],
  1387. "max":null,
  1388. "fee":"0.00"
  1389. }
  1390. },
  1391. {
  1392. "order":32,
  1393. "uuid":"5c4e4566-2f28-4bf0-b9f6-ec08d2bea58c",
  1394. "id":1597,
  1395. "feature":{
  1396. "common_name":null,
  1397. "fee_rules":[
  1398. ],
  1399. "normal_price":null,
  1400. "active":false,
  1401. "default":false,
  1402. "pricing_algorithm":"first match",
  1403. "value":"1",
  1404. "id":19,
  1405. "included":false,
  1406. "price":"99.00",
  1407. "provides":[
  1408. {
  1409. "name":"Top Creatives Invited",
  1410. "id":28,
  1411. "code":"TOP_CREATIVES_INVITED"
  1412. },
  1413. {
  1414. "name":"Advanced Promotion",
  1415. "id":8,
  1416. "code":"ADVANCED_PROMO"
  1417. },
  1418. {
  1419. "name":"Featured Project",
  1420. "id":22,
  1421. "code":"FEATURED_PROJECT"
  1422. },
  1423. {
  1424. "name":"Include in promo newsletter",
  1425. "id":25,
  1426. "code":"INCLUDE_NEWSLETTER"
  1427. }
  1428. ],
  1429. "description":"<ul style='list-style: null;'>\r\n<li><strong>80% more entries</strong> and <strong>70% more creatives</strong> on average.</li>\r\n<li>Everything in our Basic Promotion package.</li>\r\n<li>Inclusion in our Featured Projects newsletter sent to thousands of creatives.</li>\r\n<li>We automatically invite the top creatives in your category to your project.</li>\r\n</ul>",
  1430. "visible":true,
  1431. "value_display":null,
  1432. "overrides":[
  1433. ],
  1434. "min":null,
  1435. "requires":null,
  1436. "read_only":false,
  1437. "fee_algorithm":"first match",
  1438. "internal_name":"Advanced Promotion - Optional",
  1439. "options":[
  1440. ],
  1441. "type":"simple",
  1442. "minimum_fee":null,
  1443. "position":0,
  1444. "group":"PROMOTION",
  1445. "name":"Advanced Promotion",
  1446. "pricing_rules":[
  1447. ],
  1448. "max":null,
  1449. "fee":"0.00"
  1450. }
  1451. },
  1452. {
  1453. "order":33,
  1454. "uuid":"c89e9901-6fdd-40a0-9ffa-d4664a095dba",
  1455. "id":1598,
  1456. "feature":{
  1457. "common_name":null,
  1458. "fee_rules":[
  1459. ],
  1460. "normal_price":null,
  1461. "active":false,
  1462. "default":false,
  1463. "pricing_algorithm":"first match",
  1464. "value":"1",
  1465. "id":21,
  1466. "included":false,
  1467. "price":"139.00",
  1468. "provides":[
  1469. {
  1470. "name":"Ultimate Promotion",
  1471. "id":9,
  1472. "code":"ULTIMATE_PROMO"
  1473. },
  1474. {
  1475. "name":"Featured Project",
  1476. "id":22,
  1477. "code":"FEATURED_PROJECT"
  1478. },
  1479. {
  1480. "name":"Include in promo newsletter",
  1481. "id":25,
  1482. "code":"INCLUDE_NEWSLETTER"
  1483. },
  1484. {
  1485. "name":"Post on Twitter",
  1486. "id":26,
  1487. "code":"POST_TWITTER"
  1488. },
  1489. {
  1490. "name":"Top Creatives Invited",
  1491. "id":28,
  1492. "code":"TOP_CREATIVES_INVITED"
  1493. }
  1494. ],
  1495. "description":"<ul style='list-style: null;'>\r\n<li>Our most popular promotion bundle. <span class='text-highlight'>Save 18%</span></li>\r\n<li>Includes everything in Starter, Basic and Advanced promotion packages.</li>\r\n</ul>",
  1496. "visible":true,
  1497. "value_display":null,
  1498. "overrides":[],
  1499. "min":null,
  1500. "requires":null,
  1501. "read_only":false,
  1502. "fee_algorithm":"first match",
  1503. "internal_name":"Ultimate Promotion - Optional",
  1504. "options":[],
  1505. "type":"simple",
  1506. "minimum_fee":null,
  1507. "position":0,
  1508. "group":"PROMOTION",
  1509. "name":"Ultimate Promotion",
  1510. "pricing_rules":[
  1511. ],
  1512. "max":null,
  1513. "fee":"0.00"
  1514. }
  1515. }
  1516. ],
  1517. "package_tips":[],
  1518. "client_username":"iamfitnessss",
  1519. "client_first_name":"Debbie",
  1520. "client_last_name":"Collins",
  1521. "client_avatar":"",
  1522. "collaborator_permissions":null,
  1523. "participants":[
  1524. "camisa15",
  1525. "imazing",
  1526. "smarikaahuja",
  1527. "studio1hub"
  1528. ],
  1529. "one_to_one_creative_updated_at":null,
  1530. "one_to_one_creative_username":"",
  1531. "one_to_one_creative_first_name":"",
  1532. "one_to_one_creative_last_name":"",
  1533. "one_to_one_creative_avatar":"",
  1534. "one_to_one_creative_reputation":0,
  1535. "one_to_one_creative_is_platinum":false,
  1536. "one_to_one_creative_is_elite":false,
  1537. "one_to_one_creative_country":"",
  1538. "client_country":"us",
  1539. "nda_request_status":null,
  1540. "client_country_full_name":"United States",
  1541. "one_to_one_creative_country_full_name":"",
  1542. "client_date_joined":"2017-12-24T22:21:12.490567Z",
  1543. "elite_reservation_window_minutes":0
  1544. }

text for entry

{
    "limit":24,
    "count":83,
    "next":24,
    "previous":null,
    "results":[
        {
            "id":24871,
            "revisions":[
                {
                    "id":24871,
                    "created_at":"2008-05-28T16:44:27+00:00",
                    "additional_costs":{

                    },
                    "width":800,
                    "new":false,
                    "entry":24871,
                    "description":"Blue Sky logo incorporating abstract ideas of a beaker, a though bubble, and a cloud, with shaded text.",
                    "score":4,
                    "is_entirely_original":true,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/2d/fac895a8ceed4d90b67ccc7a3b43b2d3.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/ea/6d7bdb782b094634bcb2ef11a96b4cc2.jpg"
                    ],
                    "revision_number":65,
                    "height":800,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/2e/c3a0365726e144ffb882a780b34bd7bc.jpg"
                }
            ],
            "award_value":300,
            "entry_created_at":"2008-05-28T16:44:27+00:00",
            "updated_at":"2008-05-28T16:44:27+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":65,
            "author":22944,
            "finalist":true,
            "winner":true,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"lightbox",
            "entry_type":"image",
            "offer_value":0
        },
        {
            "id":25845,
            "revisions":[
                {
                    "id":25845,
                    "created_at":"2008-05-29T15:51:53+00:00",
                    "additional_costs":{

                    },
                    "width":801,
                    "new":false,
                    "entry":25845,
                    "description":"...",
                    "score":0,
                    "is_entirely_original":true,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/ed/c5f0cc2edaba43de8481499fc94964d8.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/52/0db68d5f522a45d8aeb9ed075a8c351c.jpg"
                    ],
                    "revision_number":84,
                    "height":800,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/fb/52315ac4fc6c4691867069ed6e715b33.jpg"
                }
            ],
            "award_value":null,
            "entry_created_at":"2008-05-29T15:51:53+00:00",
            "updated_at":"2008-05-29T15:51:53+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":84,
            "author":25098,
            "finalist":false,
            "winner":false,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"NancyCarterDesign",
            "entry_type":"image",
            "offer_value":0
        },
        {
            "id":25766,
            "revisions":[
                {
                    "id":25766,
                    "created_at":"2008-05-29T14:33:49+00:00",
                    "additional_costs":{

                    },
                    "width":612,
                    "new":false,
                    "entry":25766,
                    "description":"Hi, I have submitted 5 different options for your review. \r\nI offer unlimited revisions until you are 100% happy!\r\n\r\nLet me know what you think!\r\n\r\nLaurie",
                    "score":0,
                    "is_entirely_original":true,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/fc/9e1479ff6d6640b38a33f5013ceefa8d.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/d7/893d4cb0fc314b9bbbcacccde071738d.jpg"
                    ],
                    "revision_number":83,
                    "height":1080,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/1e/caec595aa1c1454d817056567bb29a3d.png"
                }
            ],
            "award_value":null,
            "entry_created_at":"2008-05-29T14:33:49+00:00",
            "updated_at":"2008-05-29T14:33:49+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":83,
            "author":8082,
            "finalist":false,
            "winner":false,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"gardline",
            "entry_type":"image",
            "offer_value":0
        },
        {
            "id":25748,
            "revisions":[
                {
                    "id":25748,
                    "created_at":"2008-05-29T14:17:29+00:00",
                    "additional_costs":{

                    },
                    "width":1667,
                    "new":false,
                    "entry":25748,
                    "description":"-",
                    "score":0,
                    "is_entirely_original":true,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/bf/50dda1bf219f4d869405059c3c3e2fd6.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/98/0044c169afdc4091bb7463f48390981e.jpg"
                    ],
                    "revision_number":82,
                    "height":1667,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/92/a042267f44514083b0e6e706f27a5390.jpg"
                }
            ],
            "award_value":null,
            "entry_created_at":"2008-05-29T14:17:29+00:00",
            "updated_at":"2008-05-29T14:17:29+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":82,
            "author":14233,
            "finalist":false,
            "winner":false,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"Su",
            "entry_type":"image",
            "offer_value":0
        },
        {
            "id":25712,
            "revisions":[
                {
                    "id":25712,
                    "created_at":"2008-05-29T13:29:00+00:00",
                    "additional_costs":{

                    },
                    "width":800,
                    "new":false,
                    "entry":25712,
                    "description":"type exploration. color can change as well.",
                    "score":0,
                    "is_entirely_original":true,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/b0/63b496cdd3034ed282037e4992a033e8.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/19/3fcc5de593994b2284b1aee73bcb17bd.jpg"
                    ],
                    "revision_number":81,
                    "height":800,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/02/3ee4507995a74fb69d6096c37302d9e2.jpg"
                }
            ],
            "award_value":null,
            "entry_created_at":"2008-05-29T13:29:00+00:00",
            "updated_at":"2008-05-29T13:29:00+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":81,
            "author":15108,
            "finalist":false,
            "winner":false,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"cbnc",
            "entry_type":"image",
            "offer_value":0
        },
        {
            "id":25656,
            "revisions":[
                {
                    "id":25656,
                    "created_at":"2008-05-29T12:09:41+00:00",
                    "additional_costs":{

                    },
                    "width":800,
                    "new":false,
                    "entry":25656,
                    "description":"Using royalty free stock photography of the Northern Lights.\r\nLet me know if you want to see a more corporate typeface.",
                    "score":0,
                    "is_entirely_original":false,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/35/8d015e60a56142969aff1cf07ef33732.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/66/a4604d336d1e45a8b67dd360e8e91641.jpg"
                    ],
                    "revision_number":80,
                    "height":800,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/be/bc1d40b998384c73abe4f19dc18c03bd.png"
                }
            ],
            "award_value":null,
            "entry_created_at":"2008-05-29T12:09:41+00:00",
            "updated_at":"2008-05-29T12:09:41+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":80,
            "author":20184,
            "finalist":false,
            "winner":false,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"OpenHead",
            "entry_type":"image",
            "offer_value":0
        },
        {
            "id":25648,
            "revisions":[
                {
                    "id":25648,
                    "created_at":"2008-05-29T11:43:31+00:00",
                    "additional_costs":{

                    },
                    "width":793,
                    "new":false,
                    "entry":25648,
                    "description":"2nd proposal. Rays of light forming a flask.",
                    "score":0,
                    "is_entirely_original":true,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/b9/09896cedc8044cfd8f9cbbed56cb5198.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/da/4de452d1f85243ae960e1d177c5ab947.jpg"
                    ],
                    "revision_number":79,
                    "height":708,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/0c/a17a8b548eb2482a9207acf078d385d0.jpg"
                }
            ],
            "award_value":null,
            "entry_created_at":"2008-05-29T11:43:31+00:00",
            "updated_at":"2008-05-29T11:43:31+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":79,
            "author":8108,
            "finalist":false,
            "winner":false,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"Den-do",
            "entry_type":"image",
            "offer_value":0
        },
        {
            "id":25633,
            "revisions":[
                {
                    "id":25633,
                    "created_at":"2008-05-29T11:32:35+00:00",
                    "additional_costs":{

                    },
                    "width":793,
                    "new":false,
                    "entry":25633,
                    "description":"My proposal.",
                    "score":0,
                    "is_entirely_original":true,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/a8/373cb606ef7a45d3acf3f93bf66f6a77.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/c8/13f6d1c261904a03af893984864dea9c.jpg"
                    ],
                    "revision_number":78,
                    "height":708,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/2b/f3dc7d7e32f441688a6544f6259860fd.jpg"
                }
            ],
            "award_value":null,
            "entry_created_at":"2008-05-29T11:32:35+00:00",
            "updated_at":"2008-05-29T11:32:35+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":78,
            "author":8108,
            "finalist":false,
            "winner":false,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"Dendo",
            "entry_type":"image",
            "offer_value":0
        },
        {
            "id":25511,
            "revisions":[
                {
                    "id":25511,
                    "created_at":"2008-05-29T08:22:02+00:00",
                    "additional_costs":{

                    },
                    "width":800,
                    "new":false,
                    "entry":25511,
                    "description":"A high tec kite symbol is used to reflect the freedom that BlueSky can give. This could be used in a wide variety of ways from nice flash animation to promotional items with real giveaway kites etc.",
                    "score":0,
                    "is_entirely_original":true,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/47/3535aa38870242be9d8a8d1a9ddf6fca.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/ee/9ca80cce66e74cc0829d9f3b25859dfe.jpg"
                    ],
                    "revision_number":77,
                    "height":800,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/25/fd0929ab880147178aef8e385c7c46d8.png"
                }
            ],
            "award_value":null,
            "entry_created_at":"2008-05-29T08:22:02+00:00",
            "updated_at":"2008-05-29T08:22:02+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":77,
            "author":19220,
            "finalist":false,
            "winner":false,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"hollter",
            "entry_type":"image",
            "offer_value":0
        },
        {
            "id":25509,
            "revisions":[
                {
                    "id":25509,
                    "created_at":"2008-05-29T08:17:28+00:00",
                    "additional_costs":{

                    },
                    "width":682,
                    "new":false,
                    "entry":25509,
                    "description":"Simple, elegant with the symbol representing a bird or butterfly taking off into the sky. Reflecting the way that BlueSky could take on and help to take off a business",
                    "score":0,
                    "is_entirely_original":true,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/80/8f84b73333864c068584c2e9f057a727.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/4a/b753c8fddb154622832d5d00294acbd3.jpg"
                    ],
                    "revision_number":76,
                    "height":672,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/d3/12a6be88ecc74cfaa6b60c32636da8cf.png"
                }
            ],
            "award_value":null,
            "entry_created_at":"2008-05-29T08:17:28+00:00",
            "updated_at":"2008-05-29T08:17:28+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":76,
            "author":19220,
            "finalist":false,
            "winner":false,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"hollter",
            "entry_type":"image",
            "offer_value":0
        },
        {
            "id":25507,
            "revisions":[
                {
                    "id":25507,
                    "created_at":"2008-05-29T08:15:02+00:00",
                    "additional_costs":{

                    },
                    "width":800,
                    "new":false,
                    "entry":25507,
                    "description":"The idea behind this is that Blue Skys could lead to a brighter future for your company. Investing in someone is believing in what is on the horizon, that there will be a good outcome - I believe this idea reflects this.",
                    "score":0,
                    "is_entirely_original":true,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/11/890e306b1ea04e3b8f7503abd1d40b36.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/5c/582f20817b7848e081a0830034eefe3f.jpg"
                    ],
                    "revision_number":75,
                    "height":800,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/62/bce97235b2e943e7a1582d91492d46d3.png"
                }
            ],
            "award_value":null,
            "entry_created_at":"2008-05-29T08:15:02+00:00",
            "updated_at":"2008-05-29T08:15:02+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":75,
            "author":19220,
            "finalist":false,
            "winner":false,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"hollter",
            "entry_type":"image",
            "offer_value":0
        },
        {
            "id":25316,
            "revisions":[
                {
                    "id":25316,
                    "created_at":"2008-05-29T02:28:25+00:00",
                    "additional_costs":{

                    },
                    "width":852,
                    "new":false,
                    "entry":25316,
                    "description":"BLUESKAY",
                    "score":0,
                    "is_entirely_original":true,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/08/2f2ec4a1b8154ffa856b99c3fcc42f00.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/15/aa29b153d1d548578f1d34e1a79b0e20.jpg"
                    ],
                    "revision_number":74,
                    "height":663,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/b9/e1706f738b8649a0964cc45dd39e13b8.jpg"
                }
            ],
            "award_value":null,
            "entry_created_at":"2008-05-29T02:28:25+00:00",
            "updated_at":"2008-05-29T02:28:25+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":74,
            "author":24024,
            "finalist":false,
            "winner":false,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"djoki",
            "entry_type":"image",
            "offer_value":0
        },
        {
            "id":25314,
            "revisions":[
                {
                    "id":25314,
                    "created_at":"2008-05-29T02:25:56+00:00",
                    "additional_costs":{

                    },
                    "width":852,
                    "new":false,
                    "entry":25314,
                    "description":"BLUESKAY",
                    "score":0,
                    "is_entirely_original":true,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/59/05ad1c0c0a8d45c49e4eda8af2f5d516.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/cd/c01569f75f964ff98fde1df6486d0b18.jpg"
                    ],
                    "revision_number":73,
                    "height":663,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/dc/981bad7e76874b57bd3fec121116e0f2.jpg"
                }
            ],
            "award_value":null,
            "entry_created_at":"2008-05-29T02:25:56+00:00",
            "updated_at":"2008-05-29T02:25:56+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":73,
            "author":24024,
            "finalist":false,
            "winner":false,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"djoki",
            "entry_type":"image",
            "offer_value":0
        },
        {
            "id":25309,
            "revisions":[
                {
                    "id":25309,
                    "created_at":"2008-05-29T02:22:39+00:00",
                    "additional_costs":{

                    },
                    "width":800,
                    "new":false,
                    "entry":25309,
                    "description":"An alternative configuration of my previous entry.",
                    "score":0,
                    "is_entirely_original":true,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/d9/890e16e5cb0343719982aee5058bade0.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/46/8cb510a010d34b418ec35a5aaa6e3a0f.jpg"
                    ],
                    "revision_number":72,
                    "height":800,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/8b/702910409ca144ca9be2d89aeb8e7c42.jpg"
                }
            ],
            "award_value":null,
            "entry_created_at":"2008-05-29T02:22:39+00:00",
            "updated_at":"2008-05-29T02:22:39+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":72,
            "author":15640,
            "finalist":false,
            "winner":false,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"jpfaraco",
            "entry_type":"image",
            "offer_value":0
        },
        {
            "id":25307,
            "revisions":[
                {
                    "id":25307,
                    "created_at":"2008-05-29T02:22:31+00:00",
                    "additional_costs":{

                    },
                    "width":852,
                    "new":false,
                    "entry":25307,
                    "description":"BLUESKY",
                    "score":0,
                    "is_entirely_original":true,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/dd/52ae7ce3ad454c27afe5bb754b47f1ad.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/84/0f1d4e50c8c84c498f7dde10b98098f0.jpg"
                    ],
                    "revision_number":71,
                    "height":663,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/3e/64f172eb7417467ead6333fc4538ad8c.jpg"
                }
            ],
            "award_value":null,
            "entry_created_at":"2008-05-29T02:22:31+00:00",
            "updated_at":"2008-05-29T02:22:31+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":71,
            "author":24024,
            "finalist":false,
            "winner":false,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"djoki",
            "entry_type":"image",
            "offer_value":0
        },
        {
            "id":25303,
            "revisions":[
                {
                    "id":25303,
                    "created_at":"2008-05-29T02:19:54+00:00",
                    "additional_costs":{

                    },
                    "width":800,
                    "new":false,
                    "entry":25303,
                    "description":"An abstract \"B\" inside a blue circle. A blue sky.",
                    "score":0,
                    "is_entirely_original":true,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/42/efc5c7b5aebe42b883e5df1c0262e977.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/42/8fc7db21797d46cf9ce6a7456a875e56.jpg"
                    ],
                    "revision_number":70,
                    "height":800,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/1b/170cdcd7544642ebaa3721cf7be2118e.jpg"
                }
            ],
            "award_value":null,
            "entry_created_at":"2008-05-29T02:19:54+00:00",
            "updated_at":"2008-05-29T02:19:54+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":70,
            "author":15640,
            "finalist":false,
            "winner":false,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"jpfaraco",
            "entry_type":"image",
            "offer_value":0
        },
        {
            "id":25270,
            "revisions":[
                {
                    "id":25270,
                    "created_at":"2008-05-29T01:11:51+00:00",
                    "additional_costs":{

                    },
                    "width":800,
                    "new":false,
                    "entry":25270,
                    "description":"Bluesky contest entry",
                    "score":0,
                    "is_entirely_original":true,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/f6/9241d324b13e4165856ff7621fb2b678.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/10/5764e5a19c0b4080b23f32b8dcee70ee.jpg"
                    ],
                    "revision_number":69,
                    "height":800,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/c9/d90b338ff0fa43309d6d048c5e9258cc.png"
                }
            ],
            "award_value":null,
            "entry_created_at":"2008-05-29T01:11:51+00:00",
            "updated_at":"2008-05-29T01:11:51+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":69,
            "author":8099,
            "finalist":false,
            "winner":false,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"angrypuppy",
            "entry_type":"image",
            "offer_value":0
        },
        {
            "id":24899,
            "revisions":[
                {
                    "id":24899,
                    "created_at":"2008-05-28T17:05:51+00:00",
                    "additional_costs":{

                    },
                    "width":533,
                    "new":false,
                    "entry":24899,
                    "description":"Logo idea.",
                    "score":0,
                    "is_entirely_original":true,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/a9/9966ad823ecf46ad889369b7c9bf6d10.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/da/b45c92d7fa3a4bfa87aa9bf7c3435c4c.jpg"
                    ],
                    "revision_number":66,
                    "height":454,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/4e/17478b9e5b9240b29436674e4cb5263a.jpg"
                }
            ],
            "award_value":null,
            "entry_created_at":"2008-05-28T17:05:51+00:00",
            "updated_at":"2008-05-28T17:05:51+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":66,
            "author":20418,
            "finalist":false,
            "winner":false,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"glowstars",
            "entry_type":"image",
            "offer_value":0
        },
        {
            "id":24867,
            "revisions":[
                {
                    "id":24867,
                    "created_at":"2008-05-28T16:43:36+00:00",
                    "additional_costs":{

                    },
                    "width":800,
                    "new":false,
                    "entry":24867,
                    "description":"Blue Sky logo incorporating abstract ideas of a beaker, a though bubble, and a cloud",
                    "score":0,
                    "is_entirely_original":true,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/cf/972e23e2dbed4bf5adc1e929c1149638.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/c0/3b841e8835de4ecb836c04d1244bd560.jpg"
                    ],
                    "revision_number":64,
                    "height":800,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/da/7eae5a16688b4bd8b2d1af8b9d08488c.jpg"
                }
            ],
            "award_value":null,
            "entry_created_at":"2008-05-28T16:43:36+00:00",
            "updated_at":"2008-05-28T16:43:36+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":64,
            "author":22944,
            "finalist":false,
            "winner":false,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"lightbox",
            "entry_type":"image",
            "offer_value":0
        },
        {
            "id":24714,
            "revisions":[
                {
                    "id":24714,
                    "created_at":"2008-05-28T14:44:08+00:00",
                    "additional_costs":{

                    },
                    "width":800,
                    "new":false,
                    "entry":24714,
                    "description":"Here's my entry",
                    "score":0,
                    "is_entirely_original":true,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/1c/d513261dd37a4734a7da07c4d5ed56e2.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/0c/dcb3822da24a410eac5e904bbefa9a92.jpg"
                    ],
                    "revision_number":63,
                    "height":800,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/fe/4d788b7baccd483db76cbfef60234881.jpg"
                }
            ],
            "award_value":null,
            "entry_created_at":"2008-05-28T14:44:08+00:00",
            "updated_at":"2008-05-28T14:44:08+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":63,
            "author":20747,
            "finalist":false,
            "winner":false,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"F599GTB",
            "entry_type":"image",
            "offer_value":0
        },
        {
            "id":23693,
            "revisions":[
                {
                    "id":23693,
                    "created_at":"2008-05-27T22:34:37+00:00",
                    "additional_costs":{

                    },
                    "width":983,
                    "new":false,
                    "entry":23693,
                    "description":"thanks:)",
                    "score":4,
                    "is_entirely_original":true,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/f2/9e1f1f04f88f48fcbfb7f3313f0d859b.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/e3/d2507814e4434d2eaab1c323706dcd3c.jpg"
                    ],
                    "revision_number":60,
                    "height":560,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/d8/0c65e138cfc74b719841746a87c8b6a6.jpg"
                }
            ],
            "award_value":null,
            "entry_created_at":"2008-05-27T22:34:37+00:00",
            "updated_at":"2008-05-27T22:34:37+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":60,
            "author":8112,
            "finalist":false,
            "winner":false,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"tini1",
            "entry_type":"image",
            "offer_value":0
        },
        {
            "id":23686,
            "revisions":[
                {
                    "id":23686,
                    "created_at":"2008-05-27T22:24:29+00:00",
                    "additional_costs":{

                    },
                    "width":800,
                    "new":false,
                    "entry":23686,
                    "description":"Hi this is another version. Here I've decided to present to you more imposing version of the logo. Hope you like it. Comments and feedback are welcome. Thanks",
                    "score":0,
                    "is_entirely_original":true,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/e8/6af6c4f2ceef4193a069f759336f9195.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/20/375bb337ddd742d5b4d8ee34aff1c708.jpg"
                    ],
                    "revision_number":59,
                    "height":800,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/a6/5d3d035fb4ca4cdbbc43fb63c30a828a.jpg"
                }
            ],
            "award_value":null,
            "entry_created_at":"2008-05-27T22:24:29+00:00",
            "updated_at":"2008-05-27T22:24:29+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":59,
            "author":19472,
            "finalist":false,
            "winner":false,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"baks",
            "entry_type":"image",
            "offer_value":0
        },
        {
            "id":23676,
            "revisions":[
                {
                    "id":23676,
                    "created_at":"2008-05-27T22:16:35+00:00",
                    "additional_costs":{

                    },
                    "width":384,
                    "new":false,
                    "entry":23676,
                    "description":"feedback appreciated\")",
                    "score":0,
                    "is_entirely_original":true,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/6a/313bc54e148c48018229ce97d4d500bb.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/3e/dfc3d1b28ad64e288bc69a358ebf269a.jpg"
                    ],
                    "revision_number":58,
                    "height":315,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/04/9da499f65f4f43668fe381937fbd08dc.jpg"
                }
            ],
            "award_value":null,
            "entry_created_at":"2008-05-27T22:16:35+00:00",
            "updated_at":"2008-05-27T22:16:35+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":58,
            "author":8112,
            "finalist":false,
            "winner":false,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"tini1",
            "entry_type":"image",
            "offer_value":0
        },
        {
            "id":23671,
            "revisions":[
                {
                    "id":23671,
                    "created_at":"2008-05-27T21:54:53+00:00",
                    "additional_costs":{

                    },
                    "width":520,
                    "new":false,
                    "entry":23671,
                    "description":":)",
                    "score":3,
                    "is_entirely_original":true,
                    "thumbnails":[
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/19/d3b45b71aed7499bbf0e0ab28f6e18cf.jpg",
                        "https://s3.amazonaws.com/crowdspring3-production/project_entries/bd/59b7089e5b3a4651b5fbb63da7845e3a.jpg"
                    ],
                    "revision_number":57,
                    "height":309,
                    "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/69/291d73ee71ab4be8be6c3174cfbf1407.jpg"
                }
            ],
            "award_value":null,
            "entry_created_at":"2008-05-27T21:54:53+00:00",
            "updated_at":"2008-05-27T21:54:53+00:00",
            "withdrawn":false,
            "tip_value":0,
            "withdrawn_by_admin":false,
            "project":19393,
            "entry_number":57,
            "author":8112,
            "finalist":false,
            "winner":false,
            "eliminated":false,
            "entry_feedback":{

            },
            "author_username":"tini1",
            "entry_type":"image",
            "offer_value":0
        }
      ]
}
{
  "limit": 24,
  "count": 317,
  "next": 48,
  "previous": 0,
  "results": [
    {
      "entry_created_at": "2018-07-02T09:59:30.228987+00:00",
      "author": 2518435,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/3b/d44802e58a4c4c479264f22019edabd8.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": ""
          },
          "width": 3200,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/56/0927e26862eb4a5da15d57511c373f10",
          "score": 0,
          "is_entirely_original": true,
          "description": ":)",
          "id": 10048470,
          "created_at": "2018-07-02T09:59:30.247357+00:00",
          "revision_number": 305,
          "height": 2176,
          "entry": 10073783
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "and_1",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 295,
      "id": 10073783,
      "entry_feedback": {},
      "winner": false,
      "updated_at": "2018-07-02T18:15:20.730036+00:00"
    },
    {
      "entry_created_at": "2018-07-02T09:05:59.347621+00:00",
      "author": 2540258,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/5f/24e3843e97cd4074a94db24904706d61.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": ""
          },
          "width": 900,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/cf/0e7b9bf8abc54cc8b717a8f701f6e1ad",
          "score": 4,
          "is_entirely_original": true,
          "description": "",
          "id": 10048443,
          "created_at": "2018-07-02T09:05:59.366211+00:00",
          "revision_number": 302,
          "height": 900,
          "entry": 10073752
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "logogod",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 292,
      "id": 10073752,
      "entry_feedback": {
        "feedback": "Looks good."
      },
      "winner": false,
      "updated_at": "2018-07-02T18:13:30.870722+00:00"
    },
    {
      "entry_created_at": "2018-07-02T09:04:56.850178+00:00",
      "author": 3071186,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/9d/ec03ccdfe59a4ee0998ef32e6acf17cb.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": ""
          },
          "width": 1496,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/d9/5a7cb5d1199c4117949524c8eb9918e8",
          "score": 0,
          "is_entirely_original": true,
          "description": "Hope you have herd of an expression \"as sure as sunrise\",I was guiding with that idea.\nHope you'll like it",
          "id": 10048440,
          "created_at": "2018-07-02T09:04:56.871005+00:00",
          "revision_number": 301,
          "height": 1061,
          "entry": 10073749
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "Fisekovic",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 291,
      "id": 10073749,
      "entry_feedback": {},
      "winner": false,
      "updated_at": "2018-07-02T18:12:43.699980+00:00"
    },
    {
      "entry_created_at": "2018-07-02T08:55:05.356449+00:00",
      "author": 3069957,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/34/b9691744bdc6479b93c8b604a4a51047.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": ""
          },
          "width": 1199,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/b7/f5bddd31aaa04742b584b3b5517c0709",
          "score": 0,
          "is_entirely_original": true,
          "description": ":)",
          "id": 10048429,
          "created_at": "2018-07-02T08:55:05.373852+00:00",
          "revision_number": 300,
          "height": 1199,
          "entry": 10073737
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "MheaDeesign",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 290,
      "id": 10073737,
      "entry_feedback": {},
      "winner": false,
      "updated_at": "2018-07-02T18:12:32.971474+00:00"
    },
    {
      "entry_created_at": "2018-07-02T08:30:46.242467+00:00",
      "author": 2525252,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/32/ea0f51bddf224f0399c353320215a68f.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": ""
          },
          "width": 1148,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/a7/c310e367a5944b5da29c573896306f9b",
          "score": 0,
          "is_entirely_original": true,
          "description": ":)",
          "id": 10048410,
          "created_at": "2018-07-02T08:30:46.261156+00:00",
          "revision_number": 299,
          "height": 882,
          "entry": 10073712
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "alfatih",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 289,
      "id": 10073712,
      "entry_feedback": {},
      "winner": false,
      "updated_at": "2018-07-02T18:12:23.170055+00:00"
    },
    {
      "entry_created_at": "2018-07-02T08:23:10.959371+00:00",
      "author": 2525252,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/70/7007dd627cf44234a00f4674f57d04f5.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": ""
          },
          "width": 1148,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/7e/79f20726b66a44e397eacafc088b718e",
          "score": 0,
          "is_entirely_original": true,
          "description": ":)",
          "id": 10048401,
          "created_at": "2018-07-02T08:23:10.978156+00:00",
          "revision_number": 297,
          "height": 882,
          "entry": 10073703
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "alfatih",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 287,
      "id": 10073703,
      "entry_feedback": {},
      "winner": false,
      "updated_at": "2018-07-02T18:09:23.078977+00:00"
    },
    {
      "entry_created_at": "2018-07-02T08:17:44.084751+00:00",
      "author": 2525252,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/37/ef58dee940004c19828318a8fce3dcee.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": ""
          },
          "width": 1148,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/ce/da81dd7f0d98456ebe1fd4abf0d82fbe",
          "score": 0,
          "is_entirely_original": true,
          "description": ":)",
          "id": 10048399,
          "created_at": "2018-07-02T08:17:44.101692+00:00",
          "revision_number": 296,
          "height": 882,
          "entry": 10073701
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "alfatih",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 286,
      "id": 10073701,
      "entry_feedback": {},
      "winner": false,
      "updated_at": "2018-07-02T18:09:11.335907+00:00"
    },
    {
      "entry_created_at": "2018-07-02T08:16:26.745262+00:00",
      "author": 2525252,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/a6/2908a18c5b894643b205d4580ea08cb8.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": ""
          },
          "width": 1147,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/26/6c5a420dafad4f648867555a7f879f9e",
          "score": 0,
          "is_entirely_original": true,
          "description": ":)",
          "id": 10048397,
          "created_at": "2018-07-02T08:16:26.764592+00:00",
          "revision_number": 295,
          "height": 882,
          "entry": 10073698
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "alfatih",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 285,
      "id": 10073698,
      "entry_feedback": {},
      "winner": false,
      "updated_at": "2018-07-02T18:08:29.347362+00:00"
    },
    {
      "entry_created_at": "2018-07-02T07:44:31.621043+00:00",
      "author": 2407019,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/a4/3b285efbe5c342d4a757340c88b3ab63.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": ""
          },
          "width": 1754,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/f7/6932b9184e2243bcaf513697653302ff",
          "score": 0,
          "is_entirely_original": true,
          "description": "like a number one in your business....",
          "id": 10048378,
          "created_at": "2018-07-02T07:44:31.641253+00:00",
          "revision_number": 292,
          "height": 1241,
          "entry": 10073675
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "srdjanplavsic",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 282,
      "id": 10073675,
      "entry_feedback": {},
      "winner": false,
      "updated_at": "2018-07-02T18:07:34.363909+00:00"
    },
    {
      "entry_created_at": "2018-07-02T07:43:39.871609+00:00",
      "author": 2407019,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/c5/bf7bcbbc5bb0442a91f5ea98faa74cb2.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": ""
          },
          "width": 1754,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/2d/0db7109e07cb4f0093ba7a468823a29c",
          "score": 0,
          "is_entirely_original": true,
          "description": "checked as assure...",
          "id": 10048377,
          "created_at": "2018-07-02T07:43:39.888929+00:00",
          "revision_number": 291,
          "height": 1241,
          "entry": 10073674
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "srdjanplavsic",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 281,
      "id": 10073674,
      "entry_feedback": {},
      "winner": false,
      "updated_at": "2018-07-02T18:07:26.355842+00:00"
    },
    {
      "entry_created_at": "2018-07-02T07:42:22.348831+00:00",
      "author": 2407019,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/e4/9ce31ea4abd648be9896147ade6ab3cb.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": ""
          },
          "width": 1754,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/ec/f655c2dc6f294710893dedb4f59da500",
          "score": 0,
          "is_entirely_original": true,
          "description": "something simple and clean...",
          "id": 10048376,
          "created_at": "2018-07-02T07:42:22.366503+00:00",
          "revision_number": 290,
          "height": 1241,
          "entry": 10073673
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "srdjanplavsic",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 280,
      "id": 10073673,
      "entry_feedback": {},
      "winner": false,
      "updated_at": "2018-07-02T18:07:17.919882+00:00"
    },
    {
      "entry_created_at": "2018-07-02T07:34:30.982200+00:00",
      "author": 2407019,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/63/d9f1a9b1462d46a0b07747e2f12f9f04.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": ""
          },
          "width": 1751,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/66/b6f91e130ff141168aa3ac397c89e477",
          "score": 0,
          "is_entirely_original": true,
          "description": "something new...",
          "id": 10048370,
          "created_at": "2018-07-02T07:34:31.000388+00:00",
          "revision_number": 289,
          "height": 1241,
          "entry": 10073665
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "srdjanplavsic",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 279,
      "id": 10073665,
      "entry_feedback": {},
      "winner": false,
      "updated_at": "2018-07-02T18:07:07.456119+00:00"
    },
    {
      "entry_created_at": "2018-07-02T07:31:46.206455+00:00",
      "author": 2407019,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/2e/90def94d9b594c349004647abcf78853.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": ""
          },
          "width": 1754,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/5d/5f0ab52567b14dfc9d382518a0e9df06",
          "score": 0,
          "is_entirely_original": true,
          "description": "here is something simple and clean so it can be used in many ways...\nat the same time it's bold enough to stand for itself and represent what you are doing.",
          "id": 10048367,
          "created_at": "2018-07-02T07:31:46.224786+00:00",
          "revision_number": 288,
          "height": 1241,
          "entry": 10073661
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "srdjanplavsic",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 278,
      "id": 10073661,
      "entry_feedback": {},
      "winner": false,
      "updated_at": "2018-07-02T09:39:08.051434+00:00"
    },
    {
      "entry_created_at": "2018-07-02T07:26:09.222619+00:00",
      "author": 2407019,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/35/4808556fbf1d429181d020319477a404.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": ""
          },
          "width": 1754,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/13/047642074b67459dbdc00475792da512",
          "score": 0,
          "is_entirely_original": true,
          "description": "something different...",
          "id": 10048363,
          "created_at": "2018-07-02T07:26:09.240635+00:00",
          "revision_number": 287,
          "height": 1241,
          "entry": 10073656
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "srdjanplavsic",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 277,
      "id": 10073656,
      "entry_feedback": {},
      "winner": false,
      "updated_at": "2018-07-02T18:06:57.434029+00:00"
    },
    {
      "entry_created_at": "2018-07-02T07:22:20.052119+00:00",
      "author": 2407019,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/84/aea48b90d21f4f4383113b32926b2f91.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": ""
          },
          "width": 1754,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/71/2134092810ef41219c027666ae8086d1",
          "score": 0,
          "is_entirely_original": true,
          "description": "color are optional, off course",
          "id": 10048358,
          "created_at": "2018-07-02T07:22:20.069344+00:00",
          "revision_number": 286,
          "height": 1241,
          "entry": 10073650
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "srdjanplavsic",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 276,
      "id": 10073650,
      "entry_feedback": {},
      "winner": false,
      "updated_at": "2018-07-02T18:06:48.148060+00:00"
    },
    {
      "entry_created_at": "2018-07-02T07:17:49.855576+00:00",
      "author": 2407019,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/5b/e6fcbc2c61ee4f8da19ae04144a77824.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": ""
          },
          "width": 1754,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/41/1e5f7ba5fc0f48bb831b48c11c83e686",
          "score": 0,
          "is_entirely_original": true,
          "description": "something abstract....",
          "id": 10048354,
          "created_at": "2018-07-02T07:17:49.873158+00:00",
          "revision_number": 285,
          "height": 1241,
          "entry": 10073646
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "srdjanplavsic",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 275,
      "id": 10073646,
      "entry_feedback": {},
      "winner": false,
      "updated_at": "2018-07-02T18:06:32.325731+00:00"
    },
    {
      "entry_created_at": "2018-07-02T07:13:34.320518+00:00",
      "author": 2407019,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/d6/cf316149c6a247df94b2ca021752d1c5.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": ""
          },
          "width": 1754,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/89/c279b52f01044a71924d7dba06e61194",
          "score": 0,
          "is_entirely_original": true,
          "description": "hi there,\nhere is some late entry and I hope it not to late....",
          "id": 10048352,
          "created_at": "2018-07-02T07:13:34.339362+00:00",
          "revision_number": 284,
          "height": 1241,
          "entry": 10073642
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "srdjanplavsic",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 274,
      "id": 10073642,
      "entry_feedback": {},
      "winner": false,
      "updated_at": "2018-07-02T09:39:26.119999+00:00"
    },
    {
      "entry_created_at": "2018-07-02T04:56:43.264043+00:00",
      "author": 2518435,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/e5/be4d602646704cc582bb6225efeebe74.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": ""
          },
          "width": 1504,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/a5/0261866f9b004e82a22aed46f3a6e9d1",
          "score": 4,
          "is_entirely_original": true,
          "description": "Halo sir,\nHow about my design?\nplease give me feedback\nthanks :)",
          "id": 10048300,
          "created_at": "2018-07-02T04:56:43.282265+00:00",
          "revision_number": 281,
          "height": 1494,
          "entry": 10073587
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "and_1",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 271,
      "id": 10073587,
      "entry_feedback": {
        "feedback": "Looks good."
      },
      "winner": false,
      "updated_at": "2018-07-02T18:06:03.858341+00:00"
    },
    {
      "entry_created_at": "2018-07-02T04:51:22.963266+00:00",
      "author": 2518435,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/11/cc6b1752e5b14d82a72ede2e4c6d1306.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": ""
          },
          "width": 1504,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/4e/5ffa53ad39ba416681690d4e9f97f018",
          "score": 3,
          "is_entirely_original": true,
          "description": "Halo sir,\nHow about my design?\nplease give me feedback\nthanks :)",
          "id": 10048298,
          "created_at": "2018-07-02T04:51:22.989302+00:00",
          "revision_number": 280,
          "height": 1504,
          "entry": 10073584
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "and_1",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 270,
      "id": 10073584,
      "entry_feedback": {},
      "winner": false,
      "updated_at": "2018-07-02T06:56:27.614250+00:00"
    },
    {
      "entry_created_at": "2018-07-02T03:18:23.785127+00:00",
      "author": 2540258,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/c2/644e81c8e90c480c95608b45be855917.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": ""
          },
          "width": 900,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/49/3e029ea7c0e64f769d8520783f02a760",
          "score": 3,
          "is_entirely_original": true,
          "description": "the General form of the composition is inscribed in the square, which gives a sense of confidence and reliability, there is also a dynamics of development up, reflects the innovation and digital industry, the overall composition is a rocket in flight, as is known in space can not make mistakes and the route to the goal should be laid as well thought-out without any mistakes, I tried to invest in the metaphor of the logo, when a new client appeals to you, he gets a perfectly thought-out course of development of his project \" from start to landing his rocket\"",
          "id": 10048264,
          "created_at": "2018-07-02T03:18:23.802327+00:00",
          "revision_number": 277,
          "height": 1495,
          "entry": 10073545
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "logogod",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 267,
      "id": 10073545,
      "entry_feedback": {},
      "winner": false,
      "updated_at": "2018-07-02T07:27:56.081667+00:00"
    },
    {
      "entry_created_at": "2018-07-02T02:44:12.561211+00:00",
      "author": 2460080,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/31/f910a023bacf46a8b8db6bd0465c938d.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": ""
          },
          "width": 1800,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/9e/5023dee38f2447deb222fee28c85084c",
          "score": 3,
          "is_entirely_original": true,
          "description": "Stong modern logo and one color variation. Logo concept comes from the idea of the legend of William Tell - great confidence and courage under pressure - and he hits the mark. I thought a story connected icon would open additional communication and promotional opportunities. Enjoy.",
          "id": 10048255,
          "created_at": "2018-07-02T02:44:12.578753+00:00",
          "revision_number": 276,
          "height": 1650,
          "entry": 10073534
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "Dogwings",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 266,
      "id": 10073534,
      "entry_feedback": {},
      "winner": false,
      "updated_at": "2018-07-02T06:55:08.457433+00:00"
    },
    {
      "entry_created_at": "2018-07-02T02:43:23.086177+00:00",
      "author": 2460080,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/ca/dc2edaf9ee834cae87594ae2257ae1f4.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": ""
          },
          "width": 1800,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/cc/2f1bbda5b7c04078a1307e3238441bd0",
          "score": 3,
          "is_entirely_original": true,
          "description": "Stong modern logo and one color variation. Logo concept comes from the idea of the legend of William Tell - great confidence and courage under pressure - and he hits the mark. I thought a story connected icon would open additional communication and promotional opportunities. Enjoy.",
          "id": 10048254,
          "created_at": "2018-07-02T02:43:23.103949+00:00",
          "revision_number": 275,
          "height": 1650,
          "entry": 10073533
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "Dogwings",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 265,
      "id": 10073533,
      "entry_feedback": {},
      "winner": false,
      "updated_at": "2018-07-02T07:27:47.351413+00:00"
    },
    {
      "entry_created_at": "2018-07-02T02:10:45.915219+00:00",
      "author": 2455264,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/cb/95350265960846678e4aebb0ac55cd11.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": ""
          },
          "width": 800,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/59/b7b56e572c324ed7b034b91e2c3e0762",
          "score": 3,
          "is_entirely_original": true,
          "description": "Assure_PMC_3",
          "id": 10048241,
          "created_at": "2018-07-02T02:10:45.932441+00:00",
          "revision_number": 272,
          "height": 800,
          "entry": 10073517
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "tomblue",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 262,
      "id": 10073517,
      "entry_feedback": {},
      "winner": false,
      "updated_at": "2018-07-02T06:56:04.121234+00:00"
    },
    {
      "entry_created_at": "2018-07-02T01:20:33.197737+00:00",
      "author": 2364454,
      "withdrawn": false,
      "project": 2900415,
      "offer_value": 0,
      "entry_type": "image",
      "finalist": false,
      "revisions": [
        {
          "thumbnails": [
            "https://s3.amazonaws.com/crowdspring3-production/project_entries/89/1fccb21c505d4881af75fd31119d8f24.jpg"
          ],
          "additional_costs": {
            "images": "",
            "fonts": 10
          },
          "width": 1355,
          "new": false,
          "image": "https://s3.amazonaws.com/crowdspring3-production/project_entries/c2/7be28cfa3e1b4bc291dca46ad15523f8",
          "score": 5,
          "is_entirely_original": false,
          "description": "",
          "id": 10048228,
          "created_at": "2018-07-02T01:20:33.223076+00:00",
          "revision_number": 270,
          "height": 1250,
          "entry": 10073504
        }
      ],
      "withdrawn_by_admin": false,
      "award_value": null,
      "author_username": "diselgl",
      "tip_value": 0,
      "eliminated": true,
      "entry_number": 260,
      "id": 10073504,
      "entry_feedback": {
        "feedback": "Thank you"
      },
      "winner": false,
      "updated_at": "2018-07-02T18:34:28.885254+00:00"
    }
  ]
}

item for entry text

{
    "id":9942250,
    "revisions":[
        {
            "id":9930258,
            "created_at":"2018-01-01T17:19:20.434476+00:00",
            "additional_costs":{
                "images":"",
                "fonts":""
            },
            "width":1200,
            "new":false,
            "entry":9942250,
            "description":"Dear CH,\n\nPlease find the attached conceptual logo for your business !\nwaiting for your feedback.\n\nThanks",
            "score":4,
            "is_entirely_original":true,
            "thumbnails":[
                "https://s3.amazonaws.com/crowdspring3-production/project_entries/6a/4a931356a7054ce1b2465e7eb255a78d.jpg"
            ],
            "revision_number":2,
            "height":1063,
            "image":"https://s3.amazonaws.com/crowdspring3-production/project_entries/de/3c7a09b4a6a44c4781887e91b27cd8d7"
        }
    ],
    "award_value":null,
    "entry_created_at":"2018-01-01T17:19:20.408239+00:00",
    "updated_at":"2018-10-01T21:34:42.443841+00:00",
    "withdrawn":true,
    "tip_value":0,
    "withdrawn_by_admin":true,
    "project":2892707,
    "entry_number":1,
    "author":2541384,
    "finalist":false,
    "winner":false,
    "eliminated":false,
    "entry_feedback":{},
    "author_username":"destiny2487",
    "entry_type":"image",
    "offer_value":0
}