1 /*
2  *  Make.org Core API
3  *  Copyright (C) 2018 Make.org
4  *
5  * This program is free software: you can redistribute it and/or modify
6  *  it under the terms of the GNU Affero General Public License as
7  *  published by the Free Software Foundation, either version 3 of the
8  *  License, or (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU Affero General Public License for more details.
14  *
15  *  You should have received a copy of the GNU Affero General Public License
16  *  along with this program.  If not, see <https://www.gnu.org/licenses/>.
17  *
18  */
19 
20 package org.make.core.technical
21 package generator
22 
23 import _root_.enumeratum.values.scalacheck._
24 import cats.data.{NonEmptyList => Nel}
25 import cats.implicits._
26 import eu.timepit.refined.refineV
27 import eu.timepit.refined.api.{RefType, Refined}
28 import eu.timepit.refined.auto._
29 import eu.timepit.refined.collection._
30 import eu.timepit.refined.scalacheck.numeric._
31 import eu.timepit.refined.types.numeric.{NonNegInt, PosInt}
32 import org.make.core.DateHelper._
33 import org.make.core.job.Job
34 import org.make.core.job.Job.{JobId, JobStatus}
35 import org.make.core.operation._
36 import org.make.core.proposal._
37 import org.make.core.question.{Question, QuestionId}
38 import org.make.core.reference.{Country, Language}
39 import org.make.core.tag.{Tag, TagDisplay, TagId, TagTypeId}
40 import org.make.core.technical.generator.CustomGenerators.ImageUrl
41 import org.make.core.user.{Role, User, UserType}
42 import org.make.core.{BusinessConfig, DateHelper, RequestContext, RequestContextLanguage, SlugHelper}
43 import org.scalacheck.Arbitrary.arbitrary
44 import org.scalacheck.{Arbitrary, Gen}
45 
46 import java.net.URI
47 import java.time.temporal.ChronoUnit
48 import java.time.{Period, ZoneOffset, ZonedDateTime}
49 import scala.concurrent.duration.FiniteDuration
50 
51 trait EntitiesGen extends DateGenerators {
52 
53   def genCountryLanguage: Gen[(Country, Language)] =
54     Gen.oneOf(for {
55       supportedCountry <- BusinessConfig.supportedCountries
56       language         <- supportedCountry.supportedLanguages
57     } yield (supportedCountry.countryCode, language))
58 
59   def genCountriesLanguage(
60     forceCountries: Option[Nel[Country]],
61     forceLanguage: Option[Language]
62   ): Gen[(Nel[Country], Nel[Language])] =
63     (forceCountries, forceLanguage) match {
64       case (Some(countries), Some(language)) => countries -> Nel.of(language)
65       case (Some(countries), None) =>
66         Gen.oneOf(
67           BusinessConfig.supportedCountries
68             .filter(conf => countries.exists(_ == conf.countryCode))
69             .map(c => countries -> Nel.of(c.defaultLanguage))
70         )
71       case (None, Some(language)) =>
72         BusinessConfig.supportedCountries
73           .find(_.supportedLanguages.contains(language))
74           .fold(Gen.oneOf(BusinessConfig.supportedCountries.map(conf => Nel.of(conf.countryCode) -> Nel.of(language))))(
75             conf => Gen.const(Nel.of(conf.countryCode) -> Nel.of(language))
76           )
77       case (None, None) => genCountryLanguage.map { case (country, language) => Nel.of(country) -> Nel.of(language) }
78     }
79 
80   Gen.oneOf(for {
81     supportedCountry <- BusinessConfig.supportedCountries
82     language         <- supportedCountry.supportedLanguages
83   } yield (supportedCountry.countryCode, language))
84 
85   def genSimpleOperation: Gen[SimpleOperation] =
86     for {
87       slug          <- CustomGenerators.LoremIpsumGen.slug(maxLength = Some(20))
88       operationKind <- arbitrary[OperationKind]
89       date          <- Gen.calendar.map(_.toZonedDateTime)
90     } yield SimpleOperation(
91       operationId = IdGenerator.uuidGenerator.nextOperationId(),
92       slug = slug,
93       operationKind = operationKind,
94       operationAuthentication = None,
95       createdAt = Some(date),
96       updatedAt = Some(date)
97     )
98 
99   private def genQuestion(operationId: Option[OperationId]): Gen[Question] =
100     for {
101       slug                <- CustomGenerators.LoremIpsumGen.slug(maxLength = Some(30))
102       (country, language) <- genCountryLanguage
103       question            <- CustomGenerators.LoremIpsumGen.sentence()
104       shortTitle          <- CustomGenerators.LoremIpsumGen.sentence(maxLength = Some(30))
105     } yield Question(
106       questionId = IdGenerator.uuidGenerator.nextQuestionId(),
107       slug = slug,
108       countries = Nel.of(country),
109       defaultLanguage = language,
110       languages = Nel.of(language),
111       questions = Multilingual(language -> refineV[NonEmpty](question).getOrElse("?": String Refined NonEmpty)),
112       shortTitles =
113         Some(Multilingual(language -> refineV[NonEmpty](shortTitle).getOrElse("?": String Refined NonEmpty))),
114       operationId = operationId
115     )
116 
117   private def genTimelineElement(fromDate: ZonedDateTime): Gen[TimelineElement] =
118     for {
119       date        <- genDateWithOffset(lowerOffset = Period.ofYears(0), upperOffset = Period.ofYears(3), fromDate = fromDate)
120       dateText    <- CustomGenerators.LoremIpsumGen.sentence(Some(20)).map(refineV[MaxSize[20]].unsafeFrom(_))
121       description <- CustomGenerators.LoremIpsumGen.sentence(Some(150)).map(refineV[MaxSize[150]].unsafeFrom(_))
122     } yield TimelineElement(
123       date = date.toLocalDate,
124       dateTexts = Multilingual.fromDefault(dateText),
125       descriptions = Multilingual.fromDefault(description)
126     )
127 
128   private def genOOQTimeline(startDate: ZonedDateTime): Gen[OperationOfQuestionTimeline] =
129     for {
130       result <- genTimelineElement(startDate).asOption
131       action <- genTimelineElement(result.fold(startDate)(_.date.atStartOfDay(ZoneOffset.UTC))).asOption
132       workshop <- genTimelineElement(
133         action
134           .map(_.date.atStartOfDay(ZoneOffset.UTC))
135           .orElse(result.map(_.date.atStartOfDay(ZoneOffset.UTC)))
136           .getOrElse(startDate)
137       ).asOption
138     } yield OperationOfQuestionTimeline(action = action, result = result, workshop = workshop)
139 
140   def genOperationOfQuestion: Gen[OperationOfQuestion] =
141     for {
142       operation <- genSimpleOperation
143       question  <- genQuestion(Some(operation.operationId))
144       startDate <- genDateWithOffset(lowerOffset = Period.ofYears(-3), upperOffset = Period.ofYears(1))
145       endDate <- genDateWithOffset(
146         lowerOffset = Period.ofMonths(1),
147         upperOffset = Period.ofMonths(6),
148         fromDate = startDate
149       )
150       title             <- CustomGenerators.LoremIpsumGen.sentence()
151       proposalPrefix    <- CustomGenerators.LoremIpsumGen.sentence(maxLength = Some(15))
152       canPropose        <- arbitrary[Boolean]
153       resultsLink       <- genResultsLink.asOption
154       proposalsCount    <- arbitrary[NonNegInt]
155       participantsCount <- arbitrary[NonNegInt]
156       featured          <- arbitrary[Boolean]
157       votesTarget       <- Gen.choose(0, 100_000_000)
158       votesCount        <- Gen.choose(0, 100_000_000)
159       timeline          <- genOOQTimeline(startDate)
160     } yield {
161       val language = question.languages.head
162       OperationOfQuestion(
163         questionId = question.questionId,
164         operationId = operation.operationId,
165         startDate = startDate,
166         endDate = endDate,
167         operationTitles = Multilingual(language -> title),
168         proposalPrefixes = Multilingual(language -> proposalPrefix),
169         canPropose = canPropose,
170         sequenceCardsConfiguration = SequenceCardsConfiguration.default,
171         aboutUrls = None,
172         metas = Metas(None, None, None),
173         theme = QuestionTheme.default,
174         descriptions = None,
175         consultationImages = None,
176         consultationImageAlts = None,
177         descriptionImages = None,
178         descriptionImageAlts = None,
179         partnersLogos = None,
180         partnersLogosAlt = None,
181         initiatorsLogos = None,
182         initiatorsLogosAlt = None,
183         consultationHeader = None,
184         consultationHeaderAlts = None,
185         cobrandingLogo = None,
186         cobrandingLogoAlt = None,
187         resultsLink = resultsLink,
188         proposalsCount = proposalsCount,
189         participantsCount = participantsCount,
190         actions = None,
191         featured = featured,
192         votesCount = votesCount,
193         votesTarget = votesTarget,
194         timeline = timeline,
195         createdAt = DateHelper.now(),
196         sessionBindingMode = false,
197         reportUrl = None,
198         actionsUrl = None
199       )
200     }
201 
202   private val genResultsLink: Gen[ResultsLink] = Gen.frequency(
203     (4, Gen.oneOf(ResultsLink.Internal.values)),
204     (1, ImageUrl.gen(100, 100).map(url => ResultsLink.External(new URI(url))))
205   )
206 
207   def genRoles: Gen[Seq[Role]] = {
208     val roles = Gen.frequency(
209       (1, Role.RoleActor),
210       (1, Role.RoleAdmin),
211       (9, Role.RoleCitizen),
212       (2, Role.RoleModerator),
213       (1, Role.RolePolitical)
214     )
215     Gen.listOfN(3, roles).map(_.distinct)
216   }
217 
218   private val SumCounterUpperBound = 600
219   private val SimpleCountUpperBound = SumCounterUpperBound / 3
220   private def getMaxCount(getter: Counts => Int, countsNel: Nel[Counts]): Int =
221     getter(countsNel.maximumBy(getter))
222 
223   private def genSimpleCounts: Gen[Counts] =
224     for {
225       count         <- Gen.chooseNum(0, SimpleCountUpperBound)
226       countVerified <- Gen.chooseNum(0, count)
227       countSequence <- Gen.chooseNum(0, countVerified)
228       countSegment  <- Gen.chooseNum(0, countSequence)
229     } yield Counts(count, countVerified, countSequence, countSegment)
230 
231   private def genSumCounts(counters: Nel[Counts]): Gen[Counts] =
232     for {
233       count         <- Gen.chooseNum(getMaxCount(_.count, counters), SumCounterUpperBound)
234       countVerified <- Gen.chooseNum(getMaxCount(_.verified, counters), count)
235       countSequence <- Gen.chooseNum(getMaxCount(_.sequence, counters), countVerified)
236       countSegment  <- Gen.chooseNum(getMaxCount(_.segment, counters), countSequence)
237     } yield Counts(count, countVerified, countSequence, countSegment)
238 
239   private def genProposalVotes: Gen[VotingOptions] =
240     for {
241       likeItCounts            <- genSimpleCounts
242       doableCounts            <- genSimpleCounts
243       platitudeAgreeCounts    <- genSimpleCounts
244       agreeCounts             <- genSumCounts(Nel.of(likeItCounts, doableCounts, platitudeAgreeCounts))
245       doNotUnderstandCounts   <- genSimpleCounts
246       doNotCareCounts         <- genSimpleCounts
247       noOpinionCounts         <- genSimpleCounts
248       neutralCounts           <- genSumCounts(Nel.of(doNotUnderstandCounts, doNotCareCounts, noOpinionCounts))
249       noWayCounts             <- genSimpleCounts
250       impossibleCount         <- genSimpleCounts
251       platitudeDisagreeCounts <- genSimpleCounts
252       disagreeCounts          <- genSumCounts(Nel.of(noWayCounts, impossibleCount, platitudeDisagreeCounts))
253     } yield VotingOptions(
254       AgreeWrapper(
255         vote = Vote(
256           key = VoteKey.Agree,
257           count = agreeCounts.count,
258           countVerified = agreeCounts.verified,
259           countSequence = agreeCounts.sequence,
260           countSegment = agreeCounts.segment
261         ),
262         likeIt = Qualification(
263           QualificationKey.LikeIt,
264           likeItCounts.count,
265           likeItCounts.verified,
266           likeItCounts.sequence,
267           likeItCounts.segment
268         ),
269         doable = Qualification(
270           QualificationKey.Doable,
271           doableCounts.count,
272           doableCounts.verified,
273           doableCounts.sequence,
274           doableCounts.segment
275         ),
276         platitudeAgree = Qualification(
277           QualificationKey.PlatitudeAgree,
278           platitudeAgreeCounts.count,
279           platitudeAgreeCounts.verified,
280           platitudeAgreeCounts.sequence,
281           platitudeAgreeCounts.segment
282         )
283       ),
284       NeutralWrapper(
285         vote = Vote(
286           key = VoteKey.Neutral,
287           count = neutralCounts.count,
288           countVerified = neutralCounts.verified,
289           countSequence = neutralCounts.sequence,
290           countSegment = neutralCounts.segment
291         ),
292         doNotUnderstand = Qualification(
293           QualificationKey.DoNotUnderstand,
294           doNotUnderstandCounts.count,
295           doNotUnderstandCounts.verified,
296           doNotUnderstandCounts.sequence,
297           doNotUnderstandCounts.segment
298         ),
299         doNotCare = Qualification(
300           QualificationKey.DoNotCare,
301           doNotCareCounts.count,
302           doNotCareCounts.verified,
303           doNotCareCounts.sequence,
304           doNotCareCounts.segment
305         ),
306         noOpinion = Qualification(
307           QualificationKey.NoOpinion,
308           noOpinionCounts.count,
309           noOpinionCounts.verified,
310           noOpinionCounts.sequence,
311           noOpinionCounts.segment
312         )
313       ),
314       DisagreeWrapper(
315         vote = Vote(
316           key = VoteKey.Disagree,
317           count = disagreeCounts.count,
318           countVerified = disagreeCounts.verified,
319           countSequence = disagreeCounts.sequence,
320           countSegment = disagreeCounts.segment
321         ),
322         noWay = Qualification(
323           QualificationKey.NoWay,
324           noWayCounts.count,
325           noWayCounts.verified,
326           noWayCounts.sequence,
327           noWayCounts.segment
328         ),
329         impossible = Qualification(
330           QualificationKey.Impossible,
331           impossibleCount.count,
332           impossibleCount.verified,
333           impossibleCount.sequence,
334           impossibleCount.segment
335         ),
336         platitudeDisagree = Qualification(
337           QualificationKey.PlatitudeDisagree,
338           disagreeCounts.count,
339           disagreeCounts.verified,
340           disagreeCounts.sequence,
341           disagreeCounts.segment
342         )
343       )
344     )
345 
346   implicit val arbProposalStatus: Arbitrary[ProposalStatus] = Arbitrary(
347     Gen.frequency(
348       (10, ProposalStatus.Pending),
349       (5, ProposalStatus.Postponed),
350       (70, ProposalStatus.Accepted),
351       (14, ProposalStatus.Refused),
352       (1, ProposalStatus.Archived)
353     )
354   )
355 
356   implicit val arbProposalType: Arbitrary[ProposalType] = Arbitrary(
357     Gen.frequency(
358       (70, ProposalType.ProposalTypeSubmitted),
359       (25, ProposalType.ProposalTypeInitial),
360       (5, ProposalType.ProposalTypeExternal)
361     )
362   )
363 
364   def genProposal(question: Question, users: Seq[User], tagsIds: Seq[TagId]): Gen[Proposal] = {
365     val maxLength: Option[PosInt] = RefType.applyRef[PosInt](BusinessConfig.defaultProposalMaxLength).toOption
366     for {
367       content         <- CustomGenerators.LoremIpsumGen.sentence(maxLength).map(sentence => s"Il faut ${sentence.toLowerCase}")
368       author          <- Gen.oneOf(users.map(_.userId))
369       status          <- arbitrary[ProposalStatus]
370       refusalReason   <- CustomGenerators.LoremIpsumGen.word
371       tags            <- Gen.someOf(tagsIds)
372       votes           <- genProposalVotes
373       organisationIds <- Gen.someOf(users.filter(_.userType == UserType.UserTypeOrganisation).map(_.userId))
374       date            <- Gen.calendar.map(_.toZonedDateTime).asOption
375       initialProposal <- Gen.frequency((9, false), (1, true))
376       isAnonymous     <- Gen.oneOf(true, false)
377       proposalType    <- arbitrary[ProposalType]
378       keywords        <- Gen.listOf(genKeyword)
379       country         <- Gen.option(Gen.oneOf(question.countries.toList))
380       language        <- Gen.oneOf(question.languages.toList)
381     } yield Proposal(
382       proposalId = IdGenerator.uuidGenerator.nextProposalId(),
383       slug = SlugHelper(content),
384       content = content,
385       submittedAsLanguage = Some(language),
386       contentTranslations = None,
387       author = author,
388       status = status,
389       refusalReason = if (status == ProposalStatus.Refused) Some(refusalReason) else None,
390       tags = tags.toSeq,
391       isAnonymous = isAnonymous,
392       votingOptions = Some(votes),
393       organisationIds = organisationIds.toSeq,
394       questionId = Some(question.questionId),
395       creationContext = RequestContext.empty
396         .copy(country = country, languageContext = RequestContextLanguage(language = Some(question.languages.head))),
397       idea = None,
398       operation = question.operationId,
399       proposalType = proposalType,
400       createdAt = date,
401       updatedAt = date,
402       validatedAt = date.filter(_ => status == ProposalStatus.Accepted || status == ProposalStatus.Refused),
403       postponedAt = date.filter(_ => status == ProposalStatus.Postponed),
404       events = List.empty,
405       initialProposal = initialProposal,
406       keywords = keywords
407     )
408   }
409 
410   val genJob: Gen[Job] = {
411     val genJobStatus: Gen[JobStatus] = Gen.oneOf(
412       Arbitrary.arbitrary[Job.Progress].map(JobStatus.Running.apply),
413       Arbitrary.arbitrary[Option[String]].map(JobStatus.Finished.apply)
414     )
415     for {
416       id        <- Gen.uuid
417       status    <- genJobStatus
418       createdAt <- genDateWithOffset(lowerOffset = Period.ofYears(-2), upperOffset = Period.ZERO).asOption
419       update <- Arbitrary
420         .arbitrary[Option[FiniteDuration]]
421         .map(_.flatMap(u => createdAt.map(_.plusNanos(u.toNanos).truncatedTo(ChronoUnit.MILLIS))))
422     } yield Job(JobId(id.toString), status, createdAt, update)
423   }
424 
425   private val stake = TagTypeId("c0d8d858-8b04-4dd9-add6-fa65443b622b")
426   private val solution = TagTypeId("cc6a16a5-cfa7-495b-a235-08affb3551af")
427   private val moment = TagTypeId("5e539923-c265-45d2-9d0b-77f29c8b0a06")
428   private val target = TagTypeId("226070ac-51b0-4e92-883a-f0a24d5b8525")
429   private val actor = TagTypeId("982e6860-eb66-407e-bafb-461c2d927478")
430   private val legacy = TagTypeId("8405aba4-4192-41d2-9a0d-b5aa6cb98d37")
431 
432   def genTag(operationId: Option[OperationId], questionId: Option[QuestionId]): Gen[Tag] =
433     for {
434       label     <- CustomGenerators.LoremIpsumGen.sentence(maxLength = Some(20))
435       weight    <- Gen.posNum[Float]
436       display   <- Gen.frequency((8, TagDisplay.Inherit), (1, TagDisplay.Displayed), (1, TagDisplay.Hidden))
437       tagTypeId <- Gen.oneOf(Seq(stake, solution, moment, target, actor, legacy))
438     } yield Tag(
439       tagId = IdGenerator.uuidGenerator.nextTagId(),
440       label = label,
441       display = display,
442       tagTypeId = tagTypeId,
443       weight = weight,
444       operationId = operationId,
445       questionId = questionId
446     )
447 
448   private def genKeyword: Gen[ProposalKeyword] = {
449     for {
450       key   <- CustomGenerators.LoremIpsumGen.word.map(ProposalKeywordKey.apply)
451       label <- CustomGenerators.LoremIpsumGen.word
452     } yield ProposalKeyword(key = key, label = label)
453   }
454 
455 }
456 
457 final case class Counts(count: Int, verified: Int, sequence: Int, segment: Int)
Line Stmt Id Pos Tree Symbol Tests Code
54 2259 2067 - 2258 Apply org.scalacheck.Gen.oneOf org.make.core.operation.operationofquestiontest org.scalacheck.Gen.oneOf[(org.make.core.reference.Country, org.make.core.reference.Language)](org.make.core.BusinessConfig.supportedCountries.flatMap[(org.make.core.reference.Country, org.make.core.reference.Language)](((supportedCountry: org.make.core.CountryConfiguration) => supportedCountry.supportedLanguages.map[(org.make.core.reference.Country, org.make.core.reference.Language)](((language: org.make.core.reference.Language) => scala.Tuple2.apply[org.make.core.reference.Country, org.make.core.reference.Language](supportedCountry.countryCode, language))))))
55 3092 2077 - 2257 Apply scala.collection.IterableOps.flatMap org.make.core.operation.operationofquestiontest org.make.core.BusinessConfig.supportedCountries.flatMap[(org.make.core.reference.Country, org.make.core.reference.Language)](((supportedCountry: org.make.core.CountryConfiguration) => supportedCountry.supportedLanguages.map[(org.make.core.reference.Country, org.make.core.reference.Language)](((language: org.make.core.reference.Language) => scala.Tuple2.apply[org.make.core.reference.Country, org.make.core.reference.Language](supportedCountry.countryCode, language)))))
56 5136 2149 - 2257 Apply scala.collection.IterableOps.map org.make.core.operation.operationofquestiontest supportedCountry.supportedLanguages.map[(org.make.core.reference.Country, org.make.core.reference.Language)](((language: org.make.core.reference.Language) => scala.Tuple2.apply[org.make.core.reference.Country, org.make.core.reference.Language](supportedCountry.countryCode, language)))
57 1888 2217 - 2257 Apply scala.Tuple2.apply org.make.core.operation.operationofquestiontest scala.Tuple2.apply[org.make.core.reference.Country, org.make.core.reference.Language](supportedCountry.countryCode, language)
57 3759 2218 - 2246 Select org.make.core.CountryConfiguration.countryCode org.make.core.operation.operationofquestiontest supportedCountry.countryCode
64 1455 2500 - 2529 ApplyImplicitView org.scalacheck.Gen.const scalacheck.this.Gen.const[(cats.data.NonEmptyList[org.make.core.reference.Country], cats.data.NonEmptyList[org.make.core.reference.Language])](scala.Predef.ArrowAssoc[cats.data.NonEmptyList[org.make.core.reference.Country]](countries).->[cats.data.NonEmptyList[org.make.core.reference.Language]](cats.data.NonEmptyList.of[org.make.core.reference.Language](language)))
64 5408 2513 - 2529 Apply cats.data.NonEmptyList.of cats.data.NonEmptyList.of[org.make.core.reference.Language](language)
64 3529 2500 - 2529 Apply scala.Predef.ArrowAssoc.-> scala.Predef.ArrowAssoc[cats.data.NonEmptyList[org.make.core.reference.Country]](countries).->[cats.data.NonEmptyList[org.make.core.reference.Language]](cats.data.NonEmptyList.of[org.make.core.reference.Language](language))
66 3470 2576 - 2771 Apply org.scalacheck.Gen.oneOf org.scalacheck.Gen.oneOf[(cats.data.NonEmptyList[org.make.core.reference.Country], cats.data.NonEmptyList[org.make.core.reference.Language])](org.make.core.BusinessConfig.supportedCountries.filter(((conf: org.make.core.CountryConfiguration) => countries.exists(((x$1: org.make.core.reference.Country) => x$1.==(conf.countryCode))))).map[(cats.data.NonEmptyList[org.make.core.reference.Country], cats.data.NonEmptyList[org.make.core.reference.Language])](((c: org.make.core.CountryConfiguration) => scala.Predef.ArrowAssoc[cats.data.NonEmptyList[org.make.core.reference.Country]](countries).->[cats.data.NonEmptyList[org.make.core.reference.Language]](cats.data.NonEmptyList.of[org.make.core.reference.Language](c.defaultLanguage)))))
68 3773 2676 - 2697 Apply java.lang.Object.== x$1.==(conf.countryCode)
68 4726 2681 - 2697 Select org.make.core.CountryConfiguration.countryCode conf.countryCode
68 1816 2659 - 2698 Apply cats.data.NonEmptyList.exists countries.exists(((x$1: org.make.core.reference.Country) => x$1.==(conf.countryCode)))
69 5418 2597 - 2761 Apply scala.collection.IterableOps.map org.make.core.BusinessConfig.supportedCountries.filter(((conf: org.make.core.CountryConfiguration) => countries.exists(((x$1: org.make.core.reference.Country) => x$1.==(conf.countryCode))))).map[(cats.data.NonEmptyList[org.make.core.reference.Country], cats.data.NonEmptyList[org.make.core.reference.Language])](((c: org.make.core.CountryConfiguration) => scala.Predef.ArrowAssoc[cats.data.NonEmptyList[org.make.core.reference.Country]](countries).->[cats.data.NonEmptyList[org.make.core.reference.Language]](cats.data.NonEmptyList.of[org.make.core.reference.Language](c.defaultLanguage))))
69 3100 2735 - 2760 Apply cats.data.NonEmptyList.of cats.data.NonEmptyList.of[org.make.core.reference.Language](c.defaultLanguage)
69 5011 2742 - 2759 Select org.make.core.CountryConfiguration.defaultLanguage c.defaultLanguage
69 2230 2722 - 2760 Apply scala.Predef.ArrowAssoc.-> scala.Predef.ArrowAssoc[cats.data.NonEmptyList[org.make.core.reference.Country]](countries).->[cats.data.NonEmptyList[org.make.core.reference.Language]](cats.data.NonEmptyList.of[org.make.core.reference.Language](c.defaultLanguage))
73 1394 2867 - 2906 Apply scala.collection.SeqOps.contains x$2.supportedLanguages.contains[org.make.core.reference.Language](language)
74 1997 2817 - 3116 Apply scala.Option.fold org.make.core.BusinessConfig.supportedCountries.find(((x$2: org.make.core.CountryConfiguration) => x$2.supportedLanguages.contains[org.make.core.reference.Language](language))).fold[org.scalacheck.Gen[(cats.data.NonEmptyList[org.make.core.reference.Country], cats.data.NonEmptyList[org.make.core.reference.Language])]](org.scalacheck.Gen.oneOf[(cats.data.NonEmptyList[org.make.core.reference.Country], cats.data.NonEmptyList[org.make.core.reference.Language])](org.make.core.BusinessConfig.supportedCountries.map[(cats.data.NonEmptyList[org.make.core.reference.Country], cats.data.NonEmptyList[org.make.core.reference.Language])](((conf: org.make.core.CountryConfiguration) => scala.Predef.ArrowAssoc[cats.data.NonEmptyList[org.make.core.reference.Country]](cats.data.NonEmptyList.of[org.make.core.reference.Country](conf.countryCode)).->[cats.data.NonEmptyList[org.make.core.reference.Language]](cats.data.NonEmptyList.of[org.make.core.reference.Language](language))))))(((conf: org.make.core.CountryConfiguration) => org.scalacheck.Gen.const[(cats.data.NonEmptyList[org.make.core.reference.Country], cats.data.NonEmptyList[org.make.core.reference.Language])](scala.Predef.ArrowAssoc[cats.data.NonEmptyList[org.make.core.reference.Country]](cats.data.NonEmptyList.of[org.make.core.reference.Country](conf.countryCode)).->[cats.data.NonEmptyList[org.make.core.reference.Language]](cats.data.NonEmptyList.of[org.make.core.reference.Language](language)))))
74 3047 2934 - 3025 Apply scala.collection.IterableOps.map org.make.core.BusinessConfig.supportedCountries.map[(cats.data.NonEmptyList[org.make.core.reference.Country], cats.data.NonEmptyList[org.make.core.reference.Language])](((conf: org.make.core.CountryConfiguration) => scala.Predef.ArrowAssoc[cats.data.NonEmptyList[org.make.core.reference.Country]](cats.data.NonEmptyList.of[org.make.core.reference.Country](conf.countryCode)).->[cats.data.NonEmptyList[org.make.core.reference.Language]](cats.data.NonEmptyList.of[org.make.core.reference.Language](language))))
74 2242 2924 - 3026 Apply org.scalacheck.Gen.oneOf org.scalacheck.Gen.oneOf[(cats.data.NonEmptyList[org.make.core.reference.Country], cats.data.NonEmptyList[org.make.core.reference.Language])](org.make.core.BusinessConfig.supportedCountries.map[(cats.data.NonEmptyList[org.make.core.reference.Country], cats.data.NonEmptyList[org.make.core.reference.Language])](((conf: org.make.core.CountryConfiguration) => scala.Predef.ArrowAssoc[cats.data.NonEmptyList[org.make.core.reference.Country]](cats.data.NonEmptyList.of[org.make.core.reference.Country](conf.countryCode)).->[cats.data.NonEmptyList[org.make.core.reference.Language]](cats.data.NonEmptyList.of[org.make.core.reference.Language](language)))))
74 1987 3008 - 3024 Apply cats.data.NonEmptyList.of cats.data.NonEmptyList.of[org.make.core.reference.Language](language)
74 3906 2980 - 3004 Apply cats.data.NonEmptyList.of cats.data.NonEmptyList.of[org.make.core.reference.Country](conf.countryCode)
74 5021 2980 - 3024 Apply scala.Predef.ArrowAssoc.-> scala.Predef.ArrowAssoc[cats.data.NonEmptyList[org.make.core.reference.Country]](cats.data.NonEmptyList.of[org.make.core.reference.Country](conf.countryCode)).->[cats.data.NonEmptyList[org.make.core.reference.Language]](cats.data.NonEmptyList.of[org.make.core.reference.Language](language))
74 4734 2987 - 3003 Select org.make.core.CountryConfiguration.countryCode conf.countryCode
75 3917 3049 - 3104 Apply org.scalacheck.Gen.const org.scalacheck.Gen.const[(cats.data.NonEmptyList[org.make.core.reference.Country], cats.data.NonEmptyList[org.make.core.reference.Language])](scala.Predef.ArrowAssoc[cats.data.NonEmptyList[org.make.core.reference.Country]](cats.data.NonEmptyList.of[org.make.core.reference.Country](conf.countryCode)).->[cats.data.NonEmptyList[org.make.core.reference.Language]](cats.data.NonEmptyList.of[org.make.core.reference.Language](language)))
75 1405 3087 - 3103 Apply cats.data.NonEmptyList.of cats.data.NonEmptyList.of[org.make.core.reference.Language](language)
75 5546 3066 - 3082 Select org.make.core.CountryConfiguration.countryCode conf.countryCode
75 4870 3059 - 3103 Apply scala.Predef.ArrowAssoc.-> scala.Predef.ArrowAssoc[cats.data.NonEmptyList[org.make.core.reference.Country]](cats.data.NonEmptyList.of[org.make.core.reference.Country](conf.countryCode)).->[cats.data.NonEmptyList[org.make.core.reference.Language]](cats.data.NonEmptyList.of[org.make.core.reference.Language](language))
75 3520 3059 - 3083 Apply cats.data.NonEmptyList.of cats.data.NonEmptyList.of[org.make.core.reference.Country](conf.countryCode)
77 3058 3216 - 3232 Apply cats.data.NonEmptyList.of cats.data.NonEmptyList.of[org.make.core.reference.Language](language)
77 5133 3197 - 3212 Apply cats.data.NonEmptyList.of cats.data.NonEmptyList.of[org.make.core.reference.Country](country)
77 5557 3144 - 3234 Apply org.scalacheck.Gen.map EntitiesGen.this.genCountryLanguage.map[(cats.data.NonEmptyList[org.make.core.reference.Country], cats.data.NonEmptyList[org.make.core.reference.Language])](((x0$1: (org.make.core.reference.Country, org.make.core.reference.Language)) => x0$1 match { case (_1: org.make.core.reference.Country, _2: org.make.core.reference.Language): (org.make.core.reference.Country, org.make.core.reference.Language)((country @ _), (language @ _)) => scala.Predef.ArrowAssoc[cats.data.NonEmptyList[org.make.core.reference.Country]](cats.data.NonEmptyList.of[org.make.core.reference.Country](country)).->[cats.data.NonEmptyList[org.make.core.reference.Language]](cats.data.NonEmptyList.of[org.make.core.reference.Language](language)) }))
77 1271 3197 - 3232 Apply scala.Predef.ArrowAssoc.-> scala.Predef.ArrowAssoc[cats.data.NonEmptyList[org.make.core.reference.Country]](cats.data.NonEmptyList.of[org.make.core.reference.Country](country)).->[cats.data.NonEmptyList[org.make.core.reference.Language]](cats.data.NonEmptyList.of[org.make.core.reference.Language](language))
80 1810 3244 - 3429 Apply org.scalacheck.Gen.oneOf org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest org.scalacheck.Gen.oneOf[(org.make.core.reference.Country, org.make.core.reference.Language)](org.make.core.BusinessConfig.supportedCountries.flatMap[(org.make.core.reference.Country, org.make.core.reference.Language)](((supportedCountry: org.make.core.CountryConfiguration) => supportedCountry.supportedLanguages.map[(org.make.core.reference.Country, org.make.core.reference.Language)](((language: org.make.core.reference.Language) => scala.Tuple2.apply[org.make.core.reference.Country, org.make.core.reference.Language](supportedCountry.countryCode, language))))))
81 3845 3254 - 3428 Apply scala.collection.IterableOps.flatMap org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest org.make.core.BusinessConfig.supportedCountries.flatMap[(org.make.core.reference.Country, org.make.core.reference.Language)](((supportedCountry: org.make.core.CountryConfiguration) => supportedCountry.supportedLanguages.map[(org.make.core.reference.Country, org.make.core.reference.Language)](((language: org.make.core.reference.Language) => scala.Tuple2.apply[org.make.core.reference.Country, org.make.core.reference.Language](supportedCountry.countryCode, language)))))
82 4881 3322 - 3428 Apply scala.collection.IterableOps.map org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest supportedCountry.supportedLanguages.map[(org.make.core.reference.Country, org.make.core.reference.Language)](((language: org.make.core.reference.Language) => scala.Tuple2.apply[org.make.core.reference.Country, org.make.core.reference.Language](supportedCountry.countryCode, language)))
83 3526 3389 - 3417 Select org.make.core.CountryConfiguration.countryCode org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest supportedCountry.countryCode
83 1504 3388 - 3428 Apply scala.Tuple2.apply org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest scala.Tuple2.apply[org.make.core.reference.Country, org.make.core.reference.Language](supportedCountry.countryCode, language)
87 5142 3561 - 3569 Apply scala.Some.apply org.make.core.operation.operationofquestiontest scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](20): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))
87 3043 3484 - 3930 Apply org.scalacheck.Gen.flatMap org.make.core.operation.operationofquestiontest CustomGenerators.LoremIpsumGen.slug(scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](20): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))).flatMap[org.make.core.operation.SimpleOperation](((slug: String) => org.scalacheck.Arbitrary.arbitrary[org.make.core.operation.OperationKind](enumeratum.values.scalacheck.arbStringEnumEntry[org.make.core.operation.OperationKind]((OperationKind: enumeratum.values.StringEnum[org.make.core.operation.OperationKind]))).flatMap[org.make.core.operation.SimpleOperation](((operationKind: org.make.core.operation.OperationKind) => org.scalacheck.Gen.calendar.map[java.time.ZonedDateTime](((x$3: java.util.Calendar) => org.make.core.DateHelper.RichCalendar(x$3).toZonedDateTime)).map[org.make.core.operation.SimpleOperation](((date: java.time.ZonedDateTime) => org.make.core.operation.SimpleOperation.apply(IdGenerator.uuidGenerator.nextOperationId(), slug, operationKind, scala.None, scala.Some.apply[java.time.ZonedDateTime](date), scala.Some.apply[java.time.ZonedDateTime](date))))))))
88 5092 3577 - 3930 Apply org.scalacheck.Gen.flatMap org.make.core.operation.operationofquestiontest org.scalacheck.Arbitrary.arbitrary[org.make.core.operation.OperationKind](enumeratum.values.scalacheck.arbStringEnumEntry[org.make.core.operation.OperationKind]((OperationKind: enumeratum.values.StringEnum[org.make.core.operation.OperationKind]))).flatMap[org.make.core.operation.SimpleOperation](((operationKind: org.make.core.operation.OperationKind) => org.scalacheck.Gen.calendar.map[java.time.ZonedDateTime](((x$3: java.util.Calendar) => org.make.core.DateHelper.RichCalendar(x$3).toZonedDateTime)).map[org.make.core.operation.SimpleOperation](((date: java.time.ZonedDateTime) => org.make.core.operation.SimpleOperation.apply(IdGenerator.uuidGenerator.nextOperationId(), slug, operationKind, scala.None, scala.Some.apply[java.time.ZonedDateTime](date), scala.Some.apply[java.time.ZonedDateTime](date))))))
88 3365 3603 - 3603 ApplyToImplicitArgs enumeratum.values.ArbitraryInstances.arbStringEnumEntry org.make.core.operation.operationofquestiontest enumeratum.values.scalacheck.arbStringEnumEntry[org.make.core.operation.OperationKind]((OperationKind: enumeratum.values.StringEnum[org.make.core.operation.OperationKind]))
89 1282 3659 - 3676 Select org.make.core.DateHelper.RichCalendar.toZonedDateTime org.make.core.operation.operationofquestiontest org.make.core.DateHelper.RichCalendar(x$3).toZonedDateTime
89 1822 3625 - 3930 Apply org.scalacheck.Gen.map org.make.core.operation.operationofquestiontest org.scalacheck.Gen.calendar.map[java.time.ZonedDateTime](((x$3: java.util.Calendar) => org.make.core.DateHelper.RichCalendar(x$3).toZonedDateTime)).map[org.make.core.operation.SimpleOperation](((date: java.time.ZonedDateTime) => org.make.core.operation.SimpleOperation.apply(IdGenerator.uuidGenerator.nextOperationId(), slug, operationKind, scala.None, scala.Some.apply[java.time.ZonedDateTime](date), scala.Some.apply[java.time.ZonedDateTime](date))))
90 2934 3690 - 3930 Apply org.make.core.operation.SimpleOperation.apply org.make.core.operation.operationofquestiontest org.make.core.operation.SimpleOperation.apply(IdGenerator.uuidGenerator.nextOperationId(), slug, operationKind, scala.None, scala.Some.apply[java.time.ZonedDateTime](date), scala.Some.apply[java.time.ZonedDateTime](date))
91 5565 3727 - 3770 Apply org.make.core.technical.IdGenerator.nextOperationId org.make.core.operation.operationofquestiontest IdGenerator.uuidGenerator.nextOperationId()
94 3463 3860 - 3864 Select scala.None org.make.core.operation.operationofquestiontest scala.None
95 1513 3884 - 3894 Apply scala.Some.apply org.make.core.operation.operationofquestiontest scala.Some.apply[java.time.ZonedDateTime](date)
96 4999 3914 - 3924 Apply scala.Some.apply org.make.core.operation.operationofquestiontest scala.Some.apply[java.time.ZonedDateTime](date)
101 2930 4013 - 4806 Apply org.scalacheck.Gen.flatMap org.make.core.operation.operationofquestiontest CustomGenerators.LoremIpsumGen.slug(scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](30): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))).flatMap[org.make.core.question.Question](((slug: String) => EntitiesGen.this.genCountryLanguage.withFilter(((check$ifrefutable$1: (org.make.core.reference.Country, org.make.core.reference.Language)) => (check$ifrefutable$1: (org.make.core.reference.Country, org.make.core.reference.Language) @unchecked) match { case (_1: org.make.core.reference.Country, _2: org.make.core.reference.Language): (org.make.core.reference.Country, org.make.core.reference.Language)((country @ _), (language @ _)) => true case _ => false })).flatMap[org.make.core.question.Question](((x$4: (org.make.core.reference.Country, org.make.core.reference.Language)) => (x$4: (org.make.core.reference.Country, org.make.core.reference.Language) @unchecked) match { case (_1: org.make.core.reference.Country, _2: org.make.core.reference.Language): (org.make.core.reference.Country, org.make.core.reference.Language)((country @ _), (language @ _)) => CustomGenerators.LoremIpsumGen.sentence(CustomGenerators.LoremIpsumGen.sentence$default$1).flatMap[org.make.core.question.Question](((question: String) => CustomGenerators.LoremIpsumGen.sentence(scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](30): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))).map[org.make.core.question.Question](((shortTitle: String) => org.make.core.question.Question.apply(IdGenerator.uuidGenerator.nextQuestionId(), slug, cats.data.NonEmptyList.of[org.make.core.reference.Country](country), language, cats.data.NonEmptyList.of[org.make.core.reference.Language](language), Multilingual.apply[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.NonEmpty].apply[String](question)(boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s))))).getOrElse[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](((api.this.RefType.refinedRefType.unsafeWrap[String, eu.timepit.refined.collection.NonEmpty]("?"): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty])))), scala.Some.apply[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]](Multilingual.apply[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.NonEmpty].apply[String](shortTitle)(boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s))))).getOrElse[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](((api.this.RefType.refinedRefType.unsafeWrap[String, eu.timepit.refined.collection.NonEmpty]("?"): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]))))), operationId))))) }))))
101 1114 4096 - 4104 Apply scala.Some.apply org.make.core.operation.operationofquestiontest scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](30): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))
102 4964 4112 - 4806 Apply org.scalacheck.Gen.WithFilter.flatMap org.make.core.operation.operationofquestiontest EntitiesGen.this.genCountryLanguage.withFilter(((check$ifrefutable$1: (org.make.core.reference.Country, org.make.core.reference.Language)) => (check$ifrefutable$1: (org.make.core.reference.Country, org.make.core.reference.Language) @unchecked) match { case (_1: org.make.core.reference.Country, _2: org.make.core.reference.Language): (org.make.core.reference.Country, org.make.core.reference.Language)((country @ _), (language @ _)) => true case _ => false })).flatMap[org.make.core.question.Question](((x$4: (org.make.core.reference.Country, org.make.core.reference.Language)) => (x$4: (org.make.core.reference.Country, org.make.core.reference.Language) @unchecked) match { case (_1: org.make.core.reference.Country, _2: org.make.core.reference.Language): (org.make.core.reference.Country, org.make.core.reference.Language)((country @ _), (language @ _)) => CustomGenerators.LoremIpsumGen.sentence(CustomGenerators.LoremIpsumGen.sentence$default$1).flatMap[org.make.core.question.Question](((question: String) => CustomGenerators.LoremIpsumGen.sentence(scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](30): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))).map[org.make.core.question.Question](((shortTitle: String) => org.make.core.question.Question.apply(IdGenerator.uuidGenerator.nextQuestionId(), slug, cats.data.NonEmptyList.of[org.make.core.reference.Country](country), language, cats.data.NonEmptyList.of[org.make.core.reference.Language](language), Multilingual.apply[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.NonEmpty].apply[String](question)(boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s))))).getOrElse[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](((api.this.RefType.refinedRefType.unsafeWrap[String, eu.timepit.refined.collection.NonEmpty]("?"): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty])))), scala.Some.apply[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]](Multilingual.apply[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.NonEmpty].apply[String](shortTitle)(boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s))))).getOrElse[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](((api.this.RefType.refinedRefType.unsafeWrap[String, eu.timepit.refined.collection.NonEmpty]("?"): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]))))), operationId))))) }))
103 1589 4160 - 4806 Apply org.scalacheck.Gen.flatMap org.make.core.operation.operationofquestiontest CustomGenerators.LoremIpsumGen.sentence(CustomGenerators.LoremIpsumGen.sentence$default$1).flatMap[org.make.core.question.Question](((question: String) => CustomGenerators.LoremIpsumGen.sentence(scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](30): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))).map[org.make.core.question.Question](((shortTitle: String) => org.make.core.question.Question.apply(IdGenerator.uuidGenerator.nextQuestionId(), slug, cats.data.NonEmptyList.of[org.make.core.reference.Country](country), language, cats.data.NonEmptyList.of[org.make.core.reference.Language](language), Multilingual.apply[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.NonEmpty].apply[String](question)(boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s))))).getOrElse[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](((api.this.RefType.refinedRefType.unsafeWrap[String, eu.timepit.refined.collection.NonEmpty]("?"): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty])))), scala.Some.apply[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]](Multilingual.apply[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.NonEmpty].apply[String](shortTitle)(boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s))))).getOrElse[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](((api.this.RefType.refinedRefType.unsafeWrap[String, eu.timepit.refined.collection.NonEmpty]("?"): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]))))), operationId)))))
103 5344 4214 - 4214 Select org.make.core.technical.generator.CustomGenerators.LoremIpsumGen.sentence$default$1 org.make.core.operation.operationofquestiontest CustomGenerators.LoremIpsumGen.sentence$default$1
104 3586 4231 - 4806 Apply org.scalacheck.Gen.map org.make.core.operation.operationofquestiontest CustomGenerators.LoremIpsumGen.sentence(scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](30): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))).map[org.make.core.question.Question](((shortTitle: String) => org.make.core.question.Question.apply(IdGenerator.uuidGenerator.nextQuestionId(), slug, cats.data.NonEmptyList.of[org.make.core.reference.Country](country), language, cats.data.NonEmptyList.of[org.make.core.reference.Language](language), Multilingual.apply[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.NonEmpty].apply[String](question)(boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s))))).getOrElse[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](((api.this.RefType.refinedRefType.unsafeWrap[String, eu.timepit.refined.collection.NonEmpty]("?"): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty])))), scala.Some.apply[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]](Multilingual.apply[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.NonEmpty].apply[String](shortTitle)(boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s))))).getOrElse[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](((api.this.RefType.refinedRefType.unsafeWrap[String, eu.timepit.refined.collection.NonEmpty]("?"): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]))))), operationId)))
104 3475 4306 - 4314 Apply scala.Some.apply org.make.core.operation.operationofquestiontest scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](30): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))
105 4558 4328 - 4806 Apply org.make.core.question.Question.apply org.make.core.operation.operationofquestiontest org.make.core.question.Question.apply(IdGenerator.uuidGenerator.nextQuestionId(), slug, cats.data.NonEmptyList.of[org.make.core.reference.Country](country), language, cats.data.NonEmptyList.of[org.make.core.reference.Language](language), Multilingual.apply[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.NonEmpty].apply[String](question)(boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s))))).getOrElse[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](((api.this.RefType.refinedRefType.unsafeWrap[String, eu.timepit.refined.collection.NonEmpty]("?"): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty])))), scala.Some.apply[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]](Multilingual.apply[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.NonEmpty].apply[String](shortTitle)(boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s))))).getOrElse[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](((api.this.RefType.refinedRefType.unsafeWrap[String, eu.timepit.refined.collection.NonEmpty]("?"): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]))))), operationId)
106 1467 4357 - 4399 Apply org.make.core.technical.IdGenerator.nextQuestionId org.make.core.operation.operationofquestiontest IdGenerator.uuidGenerator.nextQuestionId()
108 4680 4438 - 4453 Apply cats.data.NonEmptyList.of org.make.core.operation.operationofquestiontest cats.data.NonEmptyList.of[org.make.core.reference.Country](country)
110 2765 4507 - 4523 Apply cats.data.NonEmptyList.of org.make.core.operation.operationofquestiontest cats.data.NonEmptyList.of[org.make.core.reference.Language](language)
111 1746 4585 - 4585 Apply scala.LowPriorityImplicits.wrapString org.make.core.operation.operationofquestiontest scala.Predef.wrapString(s)
111 3310 4585 - 4585 ApplyToImplicitArgs eu.timepit.refined.boolean.Not.notValidate org.make.core.operation.operationofquestiontest boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s))))
111 1057 4568 - 4635 Apply scala.util.Either.getOrElse org.make.core.operation.operationofquestiontest eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.NonEmpty].apply[String](question)(boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s))))).getOrElse[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](((api.this.RefType.refinedRefType.unsafeWrap[String, eu.timepit.refined.collection.NonEmpty]("?"): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]))
111 5100 4585 - 4585 ApplyToImplicitArgs eu.timepit.refined.collection.Empty.emptyValidate org.make.core.operation.operationofquestiontest collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s)))
111 3401 4543 - 4636 Apply org.make.core.technical.Multilingual.apply org.make.core.operation.operationofquestiontest Multilingual.apply[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.NonEmpty].apply[String](question)(boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s))))).getOrElse[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](((api.this.RefType.refinedRefType.unsafeWrap[String, eu.timepit.refined.collection.NonEmpty]("?"): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]))))
111 5554 4556 - 4635 Apply scala.Predef.ArrowAssoc.-> org.make.core.operation.operationofquestiontest scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.NonEmpty].apply[String](question)(boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s))))).getOrElse[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](((api.this.RefType.refinedRefType.unsafeWrap[String, eu.timepit.refined.collection.NonEmpty]("?"): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty])))
113 1659 4713 - 4713 Apply scala.LowPriorityImplicits.wrapString org.make.core.operation.operationofquestiontest scala.Predef.wrapString(s)
113 5038 4684 - 4765 Apply scala.Predef.ArrowAssoc.-> org.make.core.operation.operationofquestiontest scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.NonEmpty].apply[String](shortTitle)(boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s))))).getOrElse[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](((api.this.RefType.refinedRefType.unsafeWrap[String, eu.timepit.refined.collection.NonEmpty]("?"): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty])))
113 1066 4666 - 4767 Apply scala.Some.apply org.make.core.operation.operationofquestiontest scala.Some.apply[org.make.core.technical.Multilingual[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]]](Multilingual.apply[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.NonEmpty].apply[String](shortTitle)(boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s))))).getOrElse[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](((api.this.RefType.refinedRefType.unsafeWrap[String, eu.timepit.refined.collection.NonEmpty]("?"): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty])))))
113 1948 4696 - 4765 Apply scala.util.Either.getOrElse org.make.core.operation.operationofquestiontest eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.NonEmpty].apply[String](shortTitle)(boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s))))).getOrElse[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](((api.this.RefType.refinedRefType.unsafeWrap[String, eu.timepit.refined.collection.NonEmpty]("?"): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]))
113 3317 4671 - 4766 Apply org.make.core.technical.Multilingual.apply org.make.core.operation.operationofquestiontest Multilingual.apply[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.NonEmpty].apply[String](shortTitle)(boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s))))).getOrElse[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]](((api.this.RefType.refinedRefType.unsafeWrap[String, eu.timepit.refined.collection.NonEmpty]("?"): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]): eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.NonEmpty]))))
113 2919 4713 - 4713 ApplyToImplicitArgs eu.timepit.refined.boolean.Not.notValidate org.make.core.operation.operationofquestiontest boolean.this.Not.notValidate[String, eu.timepit.refined.collection.Empty, this.R](collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s))))
113 4692 4713 - 4713 ApplyToImplicitArgs eu.timepit.refined.collection.Empty.emptyValidate org.make.core.operation.operationofquestiontest collection.this.Empty.emptyValidate[String](((s: String) => scala.Predef.wrapString(s)))
119 4506 4894 - 5428 Apply org.scalacheck.Gen.flatMap org.make.core.operation.operationofquestiontest EntitiesGen.this.genDateWithOffset(java.time.Period.ofYears(0), java.time.Period.ofYears(3), fromDate).flatMap[org.make.core.operation.TimelineElement](((date: java.time.ZonedDateTime) => CustomGenerators.LoremIpsumGen.sentence(scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](20): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))).map[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[20]]](((x$5: String) => eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.MaxSize[20]].unsafeFrom[String](x$5)(collection.this.Size.sizeValidate[String, eu.timepit.refined.numeric.Interval.Closed[shapeless.nat._0,20], this.R](boolean.this.And.andValidate[Int, eu.timepit.refined.numeric.GreaterEqual[shapeless.nat._0], this.R, eu.timepit.refined.numeric.LessEqual[20], this.R](boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Less[shapeless.nat._0], this.R](numeric.this.Less.lessValidate[Int, shapeless.nat._0](internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral), math.this.Numeric.IntIsIntegral)), boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Greater[20], this.R](numeric.this.Greater.greaterValidate[Int, 20](internal.this.WitnessAs.singletonWitnessAs[Int, 20](Witness.mkWitness[20](20.asInstanceOf[20])), math.this.Numeric.IntIsIntegral))), ((s: String) => scala.Predef.wrapString(s)))))).flatMap[org.make.core.operation.TimelineElement](((dateText: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[20]]) => CustomGenerators.LoremIpsumGen.sentence(scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](150): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))).map[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[150]]](((x$6: String) => eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.MaxSize[150]].unsafeFrom[String](x$6)(collection.this.Size.sizeValidate[String, eu.timepit.refined.numeric.Interval.Closed[shapeless.nat._0,150], this.R](boolean.this.And.andValidate[Int, eu.timepit.refined.numeric.GreaterEqual[shapeless.nat._0], this.R, eu.timepit.refined.numeric.LessEqual[150], this.R](boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Less[shapeless.nat._0], this.R](numeric.this.Less.lessValidate[Int, shapeless.nat._0](internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral), math.this.Numeric.IntIsIntegral)), boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Greater[150], this.R](numeric.this.Greater.greaterValidate[Int, 150](internal.this.WitnessAs.singletonWitnessAs[Int, 150](Witness.mkWitness[150](150.asInstanceOf[150])), math.this.Numeric.IntIsIntegral))), ((s: String) => scala.Predef.wrapString(s)))))).map[org.make.core.operation.TimelineElement](((description: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[150]]) => org.make.core.operation.TimelineElement.apply(date.toLocalDate(), Multilingual.fromDefault[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[20]]](dateText), Multilingual.fromDefault[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[150]]](description))))))))
119 5089 4986 - 5003 Apply java.time.Period.ofYears org.make.core.operation.operationofquestiontest java.time.Period.ofYears(3)
119 1894 4953 - 4970 Apply java.time.Period.ofYears org.make.core.operation.operationofquestiontest java.time.Period.ofYears(0)
120 3107 5132 - 5132 Select scala.math.Numeric.IntIsIntegral org.make.core.operation.operationofquestiontest math.this.Numeric.IntIsIntegral
120 4973 5132 - 5132 Select scala.math.Numeric.IntIsIntegral org.make.core.operation.operationofquestiontest math.this.Numeric.IntIsIntegral
120 4569 5132 - 5132 Select shapeless.ops.nat.ToInt.toInt0 org.make.core.operation.operationofquestiontest nat.this.ToInt.toInt0
120 2861 5132 - 5132 ApplyToImplicitArgs eu.timepit.refined.numeric.Less.lessValidate org.make.core.operation.operationofquestiontest numeric.this.Less.lessValidate[Int, shapeless.nat._0](internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral), math.this.Numeric.IntIsIntegral)
120 2873 5101 - 5135 ApplyToImplicitArgs eu.timepit.refined.internal.RefinePartiallyApplied.unsafeFrom org.make.core.operation.operationofquestiontest eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.MaxSize[20]].unsafeFrom[String](x$5)(collection.this.Size.sizeValidate[String, eu.timepit.refined.numeric.Interval.Closed[shapeless.nat._0,20], this.R](boolean.this.And.andValidate[Int, eu.timepit.refined.numeric.GreaterEqual[shapeless.nat._0], this.R, eu.timepit.refined.numeric.LessEqual[20], this.R](boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Less[shapeless.nat._0], this.R](numeric.this.Less.lessValidate[Int, shapeless.nat._0](internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral), math.this.Numeric.IntIsIntegral)), boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Greater[20], this.R](numeric.this.Greater.greaterValidate[Int, 20](internal.this.WitnessAs.singletonWitnessAs[Int, 20](Witness.mkWitness[20](20.asInstanceOf[20])), math.this.Numeric.IntIsIntegral))), ((s: String) => scala.Predef.wrapString(s))))
120 1201 5132 - 5132 Select shapeless.Witness.witness0 org.make.core.operation.operationofquestiontest shapeless.this.Witness.witness0
120 1464 5132 - 5132 ApplyToImplicitArgs eu.timepit.refined.internal.WitnessAs.natWitnessAs org.make.core.operation.operationofquestiontest internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral)
120 1293 5032 - 5428 Apply org.scalacheck.Gen.flatMap org.make.core.operation.operationofquestiontest CustomGenerators.LoremIpsumGen.sentence(scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](20): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))).map[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[20]]](((x$5: String) => eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.MaxSize[20]].unsafeFrom[String](x$5)(collection.this.Size.sizeValidate[String, eu.timepit.refined.numeric.Interval.Closed[shapeless.nat._0,20], this.R](boolean.this.And.andValidate[Int, eu.timepit.refined.numeric.GreaterEqual[shapeless.nat._0], this.R, eu.timepit.refined.numeric.LessEqual[20], this.R](boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Less[shapeless.nat._0], this.R](numeric.this.Less.lessValidate[Int, shapeless.nat._0](internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral), math.this.Numeric.IntIsIntegral)), boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Greater[20], this.R](numeric.this.Greater.greaterValidate[Int, 20](internal.this.WitnessAs.singletonWitnessAs[Int, 20](Witness.mkWitness[20](20.asInstanceOf[20])), math.this.Numeric.IntIsIntegral))), ((s: String) => scala.Predef.wrapString(s)))))).flatMap[org.make.core.operation.TimelineElement](((dateText: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[20]]) => CustomGenerators.LoremIpsumGen.sentence(scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](150): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))).map[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[150]]](((x$6: String) => eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.MaxSize[150]].unsafeFrom[String](x$6)(collection.this.Size.sizeValidate[String, eu.timepit.refined.numeric.Interval.Closed[shapeless.nat._0,150], this.R](boolean.this.And.andValidate[Int, eu.timepit.refined.numeric.GreaterEqual[shapeless.nat._0], this.R, eu.timepit.refined.numeric.LessEqual[150], this.R](boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Less[shapeless.nat._0], this.R](numeric.this.Less.lessValidate[Int, shapeless.nat._0](internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral), math.this.Numeric.IntIsIntegral)), boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Greater[150], this.R](numeric.this.Greater.greaterValidate[Int, 150](internal.this.WitnessAs.singletonWitnessAs[Int, 150](Witness.mkWitness[150](150.asInstanceOf[150])), math.this.Numeric.IntIsIntegral))), ((s: String) => scala.Predef.wrapString(s)))))).map[org.make.core.operation.TimelineElement](((description: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[150]]) => org.make.core.operation.TimelineElement.apply(date.toLocalDate(), Multilingual.fromDefault[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[20]]](dateText), Multilingual.fromDefault[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[150]]](description))))))
120 5097 5132 - 5132 ApplyToImplicitArgs eu.timepit.refined.internal.WitnessAs.singletonWitnessAs org.make.core.operation.operationofquestiontest internal.this.WitnessAs.singletonWitnessAs[Int, 20](Witness.mkWitness[20](20.asInstanceOf[20]))
120 1903 5132 - 5132 ApplyToImplicitArgs eu.timepit.refined.boolean.Not.notValidate org.make.core.operation.operationofquestiontest boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Less[shapeless.nat._0], this.R](numeric.this.Less.lessValidate[Int, shapeless.nat._0](internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral), math.this.Numeric.IntIsIntegral))
120 3536 5132 - 5132 Select scala.math.Numeric.IntIsIntegral org.make.core.operation.operationofquestiontest math.this.Numeric.IntIsIntegral
120 3395 5132 - 5132 ApplyToImplicitArgs eu.timepit.refined.boolean.And.andValidate org.make.core.operation.operationofquestiontest boolean.this.And.andValidate[Int, eu.timepit.refined.numeric.GreaterEqual[shapeless.nat._0], this.R, eu.timepit.refined.numeric.LessEqual[20], this.R](boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Less[shapeless.nat._0], this.R](numeric.this.Less.lessValidate[Int, shapeless.nat._0](internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral), math.this.Numeric.IntIsIntegral)), boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Greater[20], this.R](numeric.this.Greater.greaterValidate[Int, 20](internal.this.WitnessAs.singletonWitnessAs[Int, 20](Witness.mkWitness[20](20.asInstanceOf[20])), math.this.Numeric.IntIsIntegral)))
120 1215 5132 - 5132 ApplyToImplicitArgs eu.timepit.refined.numeric.Greater.greaterValidate org.make.core.operation.operationofquestiontest numeric.this.Greater.greaterValidate[Int, 20](internal.this.WitnessAs.singletonWitnessAs[Int, 20](Witness.mkWitness[20](20.asInstanceOf[20])), math.this.Numeric.IntIsIntegral)
120 4950 5132 - 5132 ApplyToImplicitArgs eu.timepit.refined.collection.Size.sizeValidate org.make.core.operation.operationofquestiontest collection.this.Size.sizeValidate[String, eu.timepit.refined.numeric.Interval.Closed[shapeless.nat._0,20], this.R](boolean.this.And.andValidate[Int, eu.timepit.refined.numeric.GreaterEqual[shapeless.nat._0], this.R, eu.timepit.refined.numeric.LessEqual[20], this.R](boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Less[shapeless.nat._0], this.R](numeric.this.Less.lessValidate[Int, shapeless.nat._0](internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral), math.this.Numeric.IntIsIntegral)), boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Greater[20], this.R](numeric.this.Greater.greaterValidate[Int, 20](internal.this.WitnessAs.singletonWitnessAs[Int, 20](Witness.mkWitness[20](20.asInstanceOf[20])), math.this.Numeric.IntIsIntegral))), ((s: String) => scala.Predef.wrapString(s)))
120 3329 5087 - 5095 Apply scala.Some.apply org.make.core.operation.operationofquestiontest scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](20): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))
120 4510 5132 - 5132 ApplyToImplicitArgs eu.timepit.refined.boolean.Not.notValidate org.make.core.operation.operationofquestiontest boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Greater[20], this.R](numeric.this.Greater.greaterValidate[Int, 20](internal.this.WitnessAs.singletonWitnessAs[Int, 20](Witness.mkWitness[20](20.asInstanceOf[20])), math.this.Numeric.IntIsIntegral))
120 1471 5132 - 5132 Apply scala.LowPriorityImplicits.wrapString org.make.core.operation.operationofquestiontest scala.Predef.wrapString(s)
121 1342 5245 - 5245 Select scala.math.Numeric.IntIsIntegral org.make.core.operation.operationofquestiontest math.this.Numeric.IntIsIntegral
121 1414 5245 - 5245 ApplyToImplicitArgs eu.timepit.refined.numeric.Less.lessValidate org.make.core.operation.operationofquestiontest numeric.this.Less.lessValidate[Int, shapeless.nat._0](internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral), math.this.Numeric.IntIsIntegral)
121 1423 5213 - 5248 ApplyToImplicitArgs eu.timepit.refined.internal.RefinePartiallyApplied.unsafeFrom org.make.core.operation.operationofquestiontest eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.MaxSize[150]].unsafeFrom[String](x$6)(collection.this.Size.sizeValidate[String, eu.timepit.refined.numeric.Interval.Closed[shapeless.nat._0,150], this.R](boolean.this.And.andValidate[Int, eu.timepit.refined.numeric.GreaterEqual[shapeless.nat._0], this.R, eu.timepit.refined.numeric.LessEqual[150], this.R](boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Less[shapeless.nat._0], this.R](numeric.this.Less.lessValidate[Int, shapeless.nat._0](internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral), math.this.Numeric.IntIsIntegral)), boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Greater[150], this.R](numeric.this.Greater.greaterValidate[Int, 150](internal.this.WitnessAs.singletonWitnessAs[Int, 150](Witness.mkWitness[150](150.asInstanceOf[150])), math.this.Numeric.IntIsIntegral))), ((s: String) => scala.Predef.wrapString(s))))
121 3238 5245 - 5245 ApplyToImplicitArgs eu.timepit.refined.boolean.Not.notValidate org.make.core.operation.operationofquestiontest boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Greater[150], this.R](numeric.this.Greater.greaterValidate[Int, 150](internal.this.WitnessAs.singletonWitnessAs[Int, 150](Witness.mkWitness[150](150.asInstanceOf[150])), math.this.Numeric.IntIsIntegral))
121 3112 5245 - 5245 Select shapeless.ops.nat.ToInt.toInt0 org.make.core.operation.operationofquestiontest nat.this.ToInt.toInt0
121 4960 5245 - 5245 ApplyToImplicitArgs eu.timepit.refined.boolean.Not.notValidate org.make.core.operation.operationofquestiontest boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Less[shapeless.nat._0], this.R](numeric.this.Less.lessValidate[Int, shapeless.nat._0](internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral), math.this.Numeric.IntIsIntegral))
121 5032 5245 - 5245 Select shapeless.Witness.witness0 org.make.core.operation.operationofquestiontest shapeless.this.Witness.witness0
121 746 5245 - 5245 Select scala.math.Numeric.IntIsIntegral org.make.core.operation.operationofquestiontest math.this.Numeric.IntIsIntegral
121 1350 5245 - 5245 ApplyToImplicitArgs eu.timepit.refined.boolean.And.andValidate org.make.core.operation.operationofquestiontest boolean.this.And.andValidate[Int, eu.timepit.refined.numeric.GreaterEqual[shapeless.nat._0], this.R, eu.timepit.refined.numeric.LessEqual[150], this.R](boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Less[shapeless.nat._0], this.R](numeric.this.Less.lessValidate[Int, shapeless.nat._0](internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral), math.this.Numeric.IntIsIntegral)), boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Greater[150], this.R](numeric.this.Greater.greaterValidate[Int, 150](internal.this.WitnessAs.singletonWitnessAs[Int, 150](Witness.mkWitness[150](150.asInstanceOf[150])), math.this.Numeric.IntIsIntegral)))
121 3252 5143 - 5428 Apply org.scalacheck.Gen.map org.make.core.operation.operationofquestiontest CustomGenerators.LoremIpsumGen.sentence(scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](150): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))).map[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[150]]](((x$6: String) => eu.timepit.refined.`package`.refineV[eu.timepit.refined.collection.MaxSize[150]].unsafeFrom[String](x$6)(collection.this.Size.sizeValidate[String, eu.timepit.refined.numeric.Interval.Closed[shapeless.nat._0,150], this.R](boolean.this.And.andValidate[Int, eu.timepit.refined.numeric.GreaterEqual[shapeless.nat._0], this.R, eu.timepit.refined.numeric.LessEqual[150], this.R](boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Less[shapeless.nat._0], this.R](numeric.this.Less.lessValidate[Int, shapeless.nat._0](internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral), math.this.Numeric.IntIsIntegral)), boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Greater[150], this.R](numeric.this.Greater.greaterValidate[Int, 150](internal.this.WitnessAs.singletonWitnessAs[Int, 150](Witness.mkWitness[150](150.asInstanceOf[150])), math.this.Numeric.IntIsIntegral))), ((s: String) => scala.Predef.wrapString(s)))))).map[org.make.core.operation.TimelineElement](((description: eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[150]]) => org.make.core.operation.TimelineElement.apply(date.toLocalDate(), Multilingual.fromDefault[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[20]]](dateText), Multilingual.fromDefault[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[150]]](description))))
121 886 5198 - 5207 Apply scala.Some.apply org.make.core.operation.operationofquestiontest scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](150): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))
121 5043 5245 - 5245 ApplyToImplicitArgs eu.timepit.refined.numeric.Greater.greaterValidate org.make.core.operation.operationofquestiontest numeric.this.Greater.greaterValidate[Int, 150](internal.this.WitnessAs.singletonWitnessAs[Int, 150](Witness.mkWitness[150](150.asInstanceOf[150])), math.this.Numeric.IntIsIntegral)
121 2991 5245 - 5245 ApplyToImplicitArgs eu.timepit.refined.internal.WitnessAs.singletonWitnessAs org.make.core.operation.operationofquestiontest internal.this.WitnessAs.singletonWitnessAs[Int, 150](Witness.mkWitness[150](150.asInstanceOf[150]))
121 4522 5245 - 5245 ApplyToImplicitArgs eu.timepit.refined.internal.WitnessAs.natWitnessAs org.make.core.operation.operationofquestiontest internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral)
121 2396 5245 - 5245 ApplyToImplicitArgs eu.timepit.refined.collection.Size.sizeValidate org.make.core.operation.operationofquestiontest collection.this.Size.sizeValidate[String, eu.timepit.refined.numeric.Interval.Closed[shapeless.nat._0,150], this.R](boolean.this.And.andValidate[Int, eu.timepit.refined.numeric.GreaterEqual[shapeless.nat._0], this.R, eu.timepit.refined.numeric.LessEqual[150], this.R](boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Less[shapeless.nat._0], this.R](numeric.this.Less.lessValidate[Int, shapeless.nat._0](internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral), math.this.Numeric.IntIsIntegral)), boolean.this.Not.notValidate[Int, eu.timepit.refined.numeric.Greater[150], this.R](numeric.this.Greater.greaterValidate[Int, 150](internal.this.WitnessAs.singletonWitnessAs[Int, 150](Witness.mkWitness[150](150.asInstanceOf[150])), math.this.Numeric.IntIsIntegral))), ((s: String) => scala.Predef.wrapString(s)))
121 3409 5245 - 5245 Select scala.math.Numeric.IntIsIntegral org.make.core.operation.operationofquestiontest math.this.Numeric.IntIsIntegral
121 4620 5245 - 5245 Apply scala.LowPriorityImplicits.wrapString org.make.core.operation.operationofquestiontest scala.Predef.wrapString(s)
122 5291 5262 - 5428 Apply org.make.core.operation.TimelineElement.apply org.make.core.operation.operationofquestiontest org.make.core.operation.TimelineElement.apply(date.toLocalDate(), Multilingual.fromDefault[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[20]]](dateText), Multilingual.fromDefault[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[150]]](description))
123 4893 5292 - 5308 Apply java.time.ZonedDateTime.toLocalDate org.make.core.operation.operationofquestiontest date.toLocalDate()
124 2998 5328 - 5362 Apply org.make.core.technical.Multilingual.fromDefault org.make.core.operation.operationofquestiontest Multilingual.fromDefault[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[20]]](dateText)
125 934 5385 - 5422 Apply org.make.core.technical.Multilingual.fromDefault org.make.core.operation.operationofquestiontest Multilingual.fromDefault[eu.timepit.refined.api.Refined[String,eu.timepit.refined.collection.MaxSize[150]]](description)
130 1411 5525 - 6006 Apply org.scalacheck.Gen.flatMap org.make.core.operation.operationofquestiontest generator.this.`package`.RichGenerators[org.make.core.operation.TimelineElement](EntitiesGen.this.genTimelineElement(startDate)).asOption.flatMap[org.make.core.operation.OperationOfQuestionTimeline](((result: Option[org.make.core.operation.TimelineElement]) => generator.this.`package`.RichGenerators[org.make.core.operation.TimelineElement](EntitiesGen.this.genTimelineElement(result.fold[java.time.ZonedDateTime](startDate)(((x$7: org.make.core.operation.TimelineElement) => x$7.date.atStartOfDay(java.time.ZoneOffset.UTC))))).asOption.flatMap[org.make.core.operation.OperationOfQuestionTimeline](((action: Option[org.make.core.operation.TimelineElement]) => generator.this.`package`.RichGenerators[org.make.core.operation.TimelineElement](EntitiesGen.this.genTimelineElement(action.map[java.time.ZonedDateTime](((x$8: org.make.core.operation.TimelineElement) => x$8.date.atStartOfDay(java.time.ZoneOffset.UTC))).orElse[java.time.ZonedDateTime](result.map[java.time.ZonedDateTime](((x$9: org.make.core.operation.TimelineElement) => x$9.date.atStartOfDay(java.time.ZoneOffset.UTC)))).getOrElse[java.time.ZonedDateTime](startDate))).asOption.map[org.make.core.operation.OperationOfQuestionTimeline](((workshop: Option[org.make.core.operation.TimelineElement]) => org.make.core.operation.OperationOfQuestionTimeline.apply(action, result, workshop)))))))
130 2568 5547 - 5576 Apply org.make.core.technical.generator.EntitiesGen.genTimelineElement org.make.core.operation.operationofquestiontest EntitiesGen.this.genTimelineElement(startDate)
131 2517 5592 - 6006 Apply org.scalacheck.Gen.flatMap org.make.core.operation.operationofquestiontest generator.this.`package`.RichGenerators[org.make.core.operation.TimelineElement](EntitiesGen.this.genTimelineElement(result.fold[java.time.ZonedDateTime](startDate)(((x$7: org.make.core.operation.TimelineElement) => x$7.date.atStartOfDay(java.time.ZoneOffset.UTC))))).asOption.flatMap[org.make.core.operation.OperationOfQuestionTimeline](((action: Option[org.make.core.operation.TimelineElement]) => generator.this.`package`.RichGenerators[org.make.core.operation.TimelineElement](EntitiesGen.this.genTimelineElement(action.map[java.time.ZonedDateTime](((x$8: org.make.core.operation.TimelineElement) => x$8.date.atStartOfDay(java.time.ZoneOffset.UTC))).orElse[java.time.ZonedDateTime](result.map[java.time.ZonedDateTime](((x$9: org.make.core.operation.TimelineElement) => x$9.date.atStartOfDay(java.time.ZoneOffset.UTC)))).getOrElse[java.time.ZonedDateTime](startDate))).asOption.map[org.make.core.operation.OperationOfQuestionTimeline](((workshop: Option[org.make.core.operation.TimelineElement]) => org.make.core.operation.OperationOfQuestionTimeline.apply(action, result, workshop)))))
131 3007 5621 - 5680 Apply scala.Option.fold org.make.core.operation.operationofquestiontest result.fold[java.time.ZonedDateTime](startDate)(((x$7: org.make.core.operation.TimelineElement) => x$7.date.atStartOfDay(java.time.ZoneOffset.UTC)))
131 1682 5664 - 5678 Select java.time.ZoneOffset.UTC org.make.core.operation.operationofquestiontest java.time.ZoneOffset.UTC
131 4903 5644 - 5679 Apply java.time.LocalDate.atStartOfDay org.make.core.operation.operationofquestiontest x$7.date.atStartOfDay(java.time.ZoneOffset.UTC)
131 883 5602 - 5681 Apply org.make.core.technical.generator.EntitiesGen.genTimelineElement org.make.core.operation.operationofquestiontest EntitiesGen.this.genTimelineElement(result.fold[java.time.ZonedDateTime](startDate)(((x$7: org.make.core.operation.TimelineElement) => x$7.date.atStartOfDay(java.time.ZoneOffset.UTC))))
132 4517 5697 - 6006 Apply org.scalacheck.Gen.map org.make.core.operation.operationofquestiontest generator.this.`package`.RichGenerators[org.make.core.operation.TimelineElement](EntitiesGen.this.genTimelineElement(action.map[java.time.ZonedDateTime](((x$8: org.make.core.operation.TimelineElement) => x$8.date.atStartOfDay(java.time.ZoneOffset.UTC))).orElse[java.time.ZonedDateTime](result.map[java.time.ZonedDateTime](((x$9: org.make.core.operation.TimelineElement) => x$9.date.atStartOfDay(java.time.ZoneOffset.UTC)))).getOrElse[java.time.ZonedDateTime](startDate))).asOption.map[org.make.core.operation.OperationOfQuestionTimeline](((workshop: Option[org.make.core.operation.TimelineElement]) => org.make.core.operation.OperationOfQuestionTimeline.apply(action, result, workshop)))
132 3176 5709 - 5902 Apply org.make.core.technical.generator.EntitiesGen.genTimelineElement org.make.core.operation.operationofquestiontest EntitiesGen.this.genTimelineElement(action.map[java.time.ZonedDateTime](((x$8: org.make.core.operation.TimelineElement) => x$8.date.atStartOfDay(java.time.ZoneOffset.UTC))).orElse[java.time.ZonedDateTime](result.map[java.time.ZonedDateTime](((x$9: org.make.core.operation.TimelineElement) => x$9.date.atStartOfDay(java.time.ZoneOffset.UTC)))).getOrElse[java.time.ZonedDateTime](startDate))
136 5158 5737 - 5894 Apply scala.Option.getOrElse org.make.core.operation.operationofquestiontest action.map[java.time.ZonedDateTime](((x$8: org.make.core.operation.TimelineElement) => x$8.date.atStartOfDay(java.time.ZoneOffset.UTC))).orElse[java.time.ZonedDateTime](result.map[java.time.ZonedDateTime](((x$9: org.make.core.operation.TimelineElement) => x$9.date.atStartOfDay(java.time.ZoneOffset.UTC)))).getOrElse[java.time.ZonedDateTime](startDate)
138 1302 5924 - 6006 Apply org.make.core.operation.OperationOfQuestionTimeline.apply org.make.core.operation.operationofquestiontest org.make.core.operation.OperationOfQuestionTimeline.apply(action, result, workshop)
142 4050 6069 - 8417 Apply org.scalacheck.Gen.flatMap org.make.core.operation.operationofquestiontest EntitiesGen.this.genSimpleOperation.flatMap[org.make.core.operation.OperationOfQuestion](((operation: org.make.core.operation.SimpleOperation) => EntitiesGen.this.genQuestion(scala.Some.apply[org.make.core.operation.OperationId](operation.operationId)).flatMap[org.make.core.operation.OperationOfQuestion](((question: org.make.core.question.Question) => EntitiesGen.this.genDateWithOffset(java.time.Period.ofYears(-3), java.time.Period.ofYears(1), EntitiesGen.this.genDateWithOffset$default$3).flatMap[org.make.core.operation.OperationOfQuestion](((startDate: java.time.ZonedDateTime) => EntitiesGen.this.genDateWithOffset(java.time.Period.ofMonths(1), java.time.Period.ofMonths(6), startDate).flatMap[org.make.core.operation.OperationOfQuestion](((endDate: java.time.ZonedDateTime) => CustomGenerators.LoremIpsumGen.sentence(CustomGenerators.LoremIpsumGen.sentence$default$1).flatMap[org.make.core.operation.OperationOfQuestion](((title: String) => CustomGenerators.LoremIpsumGen.sentence(scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](15): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))).flatMap[org.make.core.operation.OperationOfQuestion](((proposalPrefix: String) => org.scalacheck.Arbitrary.arbitrary[Boolean](scalacheck.this.Arbitrary.arbBool).flatMap[org.make.core.operation.OperationOfQuestion](((canPropose: Boolean) => generator.this.`package`.RichGenerators[org.make.core.operation.ResultsLink](EntitiesGen.this.genResultsLink).asOption.flatMap[org.make.core.operation.OperationOfQuestion](((resultsLink: Option[org.make.core.operation.ResultsLink]) => org.scalacheck.Arbitrary.arbitrary[eu.timepit.refined.types.numeric.NonNegInt](eu.timepit.refined.scalacheck.numeric.greaterEqualArbitrary[eu.timepit.refined.api.Refined, Int, shapeless.nat._0](api.this.RefType.refinedRefType, math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt, api.this.Max.intMax, internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral))).flatMap[org.make.core.operation.OperationOfQuestion](((proposalsCount: eu.timepit.refined.types.numeric.NonNegInt) => org.scalacheck.Arbitrary.arbitrary[eu.timepit.refined.types.numeric.NonNegInt](eu.timepit.refined.scalacheck.numeric.greaterEqualArbitrary[eu.timepit.refined.api.Refined, Int, shapeless.nat._0](api.this.RefType.refinedRefType, math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt, api.this.Max.intMax, internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral))).flatMap[org.make.core.operation.OperationOfQuestion](((participantsCount: eu.timepit.refined.types.numeric.NonNegInt) => org.scalacheck.Arbitrary.arbitrary[Boolean](scalacheck.this.Arbitrary.arbBool).flatMap[org.make.core.operation.OperationOfQuestion](((featured: Boolean) => org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesTarget: Int) => org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesCount: Int) => EntitiesGen.this.genOOQTimeline(startDate).map[org.make.core.operation.OperationOfQuestion](((timeline: org.make.core.operation.OperationOfQuestionTimeline) => { val language: org.make.core.reference.Language = question.languages.head; org.make.core.operation.OperationOfQuestion.apply(question.questionId, operation.operationId, startDate, endDate, Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](title)), Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](proposalPrefix)), canPropose, org.make.core.operation.SequenceCardsConfiguration.default, scala.None, org.make.core.operation.Metas.apply(scala.None, scala.None, scala.None), org.make.core.operation.QuestionTheme.default, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, resultsLink, eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](proposalsCount)(api.this.RefType.refinedRefType), eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](participantsCount)(api.this.RefType.refinedRefType), scala.None, featured, votesCount, votesTarget, timeline, org.make.core.DateHelper.now(), false, scala.None, scala.None) }))))))))))))))))))))))))))))
143 2794 6144 - 6171 Apply scala.Some.apply org.make.core.operation.operationofquestiontest scala.Some.apply[org.make.core.operation.OperationId](operation.operationId)
143 909 6119 - 8417 Apply org.scalacheck.Gen.flatMap org.make.core.operation.operationofquestiontest EntitiesGen.this.genQuestion(scala.Some.apply[org.make.core.operation.OperationId](operation.operationId)).flatMap[org.make.core.operation.OperationOfQuestion](((question: org.make.core.question.Question) => EntitiesGen.this.genDateWithOffset(java.time.Period.ofYears(-3), java.time.Period.ofYears(1), EntitiesGen.this.genDateWithOffset$default$3).flatMap[org.make.core.operation.OperationOfQuestion](((startDate: java.time.ZonedDateTime) => EntitiesGen.this.genDateWithOffset(java.time.Period.ofMonths(1), java.time.Period.ofMonths(6), startDate).flatMap[org.make.core.operation.OperationOfQuestion](((endDate: java.time.ZonedDateTime) => CustomGenerators.LoremIpsumGen.sentence(CustomGenerators.LoremIpsumGen.sentence$default$1).flatMap[org.make.core.operation.OperationOfQuestion](((title: String) => CustomGenerators.LoremIpsumGen.sentence(scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](15): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))).flatMap[org.make.core.operation.OperationOfQuestion](((proposalPrefix: String) => org.scalacheck.Arbitrary.arbitrary[Boolean](scalacheck.this.Arbitrary.arbBool).flatMap[org.make.core.operation.OperationOfQuestion](((canPropose: Boolean) => generator.this.`package`.RichGenerators[org.make.core.operation.ResultsLink](EntitiesGen.this.genResultsLink).asOption.flatMap[org.make.core.operation.OperationOfQuestion](((resultsLink: Option[org.make.core.operation.ResultsLink]) => org.scalacheck.Arbitrary.arbitrary[eu.timepit.refined.types.numeric.NonNegInt](eu.timepit.refined.scalacheck.numeric.greaterEqualArbitrary[eu.timepit.refined.api.Refined, Int, shapeless.nat._0](api.this.RefType.refinedRefType, math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt, api.this.Max.intMax, internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral))).flatMap[org.make.core.operation.OperationOfQuestion](((proposalsCount: eu.timepit.refined.types.numeric.NonNegInt) => org.scalacheck.Arbitrary.arbitrary[eu.timepit.refined.types.numeric.NonNegInt](eu.timepit.refined.scalacheck.numeric.greaterEqualArbitrary[eu.timepit.refined.api.Refined, Int, shapeless.nat._0](api.this.RefType.refinedRefType, math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt, api.this.Max.intMax, internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral))).flatMap[org.make.core.operation.OperationOfQuestion](((participantsCount: eu.timepit.refined.types.numeric.NonNegInt) => org.scalacheck.Arbitrary.arbitrary[Boolean](scalacheck.this.Arbitrary.arbBool).flatMap[org.make.core.operation.OperationOfQuestion](((featured: Boolean) => org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesTarget: Int) => org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesCount: Int) => EntitiesGen.this.genOOQTimeline(startDate).map[org.make.core.operation.OperationOfQuestion](((timeline: org.make.core.operation.OperationOfQuestionTimeline) => { val language: org.make.core.reference.Language = question.languages.head; org.make.core.operation.OperationOfQuestion.apply(question.questionId, operation.operationId, startDate, endDate, Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](title)), Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](proposalPrefix)), canPropose, org.make.core.operation.SequenceCardsConfiguration.default, scala.None, org.make.core.operation.Metas.apply(scala.None, scala.None, scala.None), org.make.core.operation.QuestionTheme.default, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, resultsLink, eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](proposalsCount)(api.this.RefType.refinedRefType), eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](participantsCount)(api.this.RefType.refinedRefType), scala.None, featured, votesCount, votesTarget, timeline, org.make.core.DateHelper.now(), false, scala.None, scala.None) }))))))))))))))))))))))))))
143 4830 6149 - 6170 Select org.make.core.operation.SimpleOperation.operationId org.make.core.operation.operationofquestiontest operation.operationId
144 3064 6192 - 6192 Select org.make.core.technical.generator.DateGenerators.genDateWithOffset$default$3 org.make.core.operation.operationofquestiontest EntitiesGen.this.genDateWithOffset$default$3
144 2811 6179 - 8417 Apply org.scalacheck.Gen.flatMap org.make.core.operation.operationofquestiontest EntitiesGen.this.genDateWithOffset(java.time.Period.ofYears(-3), java.time.Period.ofYears(1), EntitiesGen.this.genDateWithOffset$default$3).flatMap[org.make.core.operation.OperationOfQuestion](((startDate: java.time.ZonedDateTime) => EntitiesGen.this.genDateWithOffset(java.time.Period.ofMonths(1), java.time.Period.ofMonths(6), startDate).flatMap[org.make.core.operation.OperationOfQuestion](((endDate: java.time.ZonedDateTime) => CustomGenerators.LoremIpsumGen.sentence(CustomGenerators.LoremIpsumGen.sentence$default$1).flatMap[org.make.core.operation.OperationOfQuestion](((title: String) => CustomGenerators.LoremIpsumGen.sentence(scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](15): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))).flatMap[org.make.core.operation.OperationOfQuestion](((proposalPrefix: String) => org.scalacheck.Arbitrary.arbitrary[Boolean](scalacheck.this.Arbitrary.arbBool).flatMap[org.make.core.operation.OperationOfQuestion](((canPropose: Boolean) => generator.this.`package`.RichGenerators[org.make.core.operation.ResultsLink](EntitiesGen.this.genResultsLink).asOption.flatMap[org.make.core.operation.OperationOfQuestion](((resultsLink: Option[org.make.core.operation.ResultsLink]) => org.scalacheck.Arbitrary.arbitrary[eu.timepit.refined.types.numeric.NonNegInt](eu.timepit.refined.scalacheck.numeric.greaterEqualArbitrary[eu.timepit.refined.api.Refined, Int, shapeless.nat._0](api.this.RefType.refinedRefType, math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt, api.this.Max.intMax, internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral))).flatMap[org.make.core.operation.OperationOfQuestion](((proposalsCount: eu.timepit.refined.types.numeric.NonNegInt) => org.scalacheck.Arbitrary.arbitrary[eu.timepit.refined.types.numeric.NonNegInt](eu.timepit.refined.scalacheck.numeric.greaterEqualArbitrary[eu.timepit.refined.api.Refined, Int, shapeless.nat._0](api.this.RefType.refinedRefType, math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt, api.this.Max.intMax, internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral))).flatMap[org.make.core.operation.OperationOfQuestion](((participantsCount: eu.timepit.refined.types.numeric.NonNegInt) => org.scalacheck.Arbitrary.arbitrary[Boolean](scalacheck.this.Arbitrary.arbBool).flatMap[org.make.core.operation.OperationOfQuestion](((featured: Boolean) => org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesTarget: Int) => org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesCount: Int) => EntitiesGen.this.genOOQTimeline(startDate).map[org.make.core.operation.OperationOfQuestion](((timeline: org.make.core.operation.OperationOfQuestionTimeline) => { val language: org.make.core.reference.Language = question.languages.head; org.make.core.operation.OperationOfQuestion.apply(question.questionId, operation.operationId, startDate, endDate, Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](title)), Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](proposalPrefix)), canPropose, org.make.core.operation.SequenceCardsConfiguration.default, scala.None, org.make.core.operation.Metas.apply(scala.None, scala.None, scala.None), org.make.core.operation.QuestionTheme.default, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, resultsLink, eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](proposalsCount)(api.this.RefType.refinedRefType), eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](participantsCount)(api.this.RefType.refinedRefType), scala.None, featured, votesCount, votesTarget, timeline, org.make.core.DateHelper.now(), false, scala.None, scala.None) }))))))))))))))))))))))))
144 4157 6258 - 6275 Apply java.time.Period.ofYears org.make.core.operation.operationofquestiontest java.time.Period.ofYears(1)
144 894 6224 - 6242 Apply java.time.Period.ofYears org.make.core.operation.operationofquestiontest java.time.Period.ofYears(-3)
145 4004 6283 - 8417 Apply org.scalacheck.Gen.flatMap org.make.core.operation.operationofquestiontest EntitiesGen.this.genDateWithOffset(java.time.Period.ofMonths(1), java.time.Period.ofMonths(6), startDate).flatMap[org.make.core.operation.OperationOfQuestion](((endDate: java.time.ZonedDateTime) => CustomGenerators.LoremIpsumGen.sentence(CustomGenerators.LoremIpsumGen.sentence$default$1).flatMap[org.make.core.operation.OperationOfQuestion](((title: String) => CustomGenerators.LoremIpsumGen.sentence(scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](15): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))).flatMap[org.make.core.operation.OperationOfQuestion](((proposalPrefix: String) => org.scalacheck.Arbitrary.arbitrary[Boolean](scalacheck.this.Arbitrary.arbBool).flatMap[org.make.core.operation.OperationOfQuestion](((canPropose: Boolean) => generator.this.`package`.RichGenerators[org.make.core.operation.ResultsLink](EntitiesGen.this.genResultsLink).asOption.flatMap[org.make.core.operation.OperationOfQuestion](((resultsLink: Option[org.make.core.operation.ResultsLink]) => org.scalacheck.Arbitrary.arbitrary[eu.timepit.refined.types.numeric.NonNegInt](eu.timepit.refined.scalacheck.numeric.greaterEqualArbitrary[eu.timepit.refined.api.Refined, Int, shapeless.nat._0](api.this.RefType.refinedRefType, math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt, api.this.Max.intMax, internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral))).flatMap[org.make.core.operation.OperationOfQuestion](((proposalsCount: eu.timepit.refined.types.numeric.NonNegInt) => org.scalacheck.Arbitrary.arbitrary[eu.timepit.refined.types.numeric.NonNegInt](eu.timepit.refined.scalacheck.numeric.greaterEqualArbitrary[eu.timepit.refined.api.Refined, Int, shapeless.nat._0](api.this.RefType.refinedRefType, math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt, api.this.Max.intMax, internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral))).flatMap[org.make.core.operation.OperationOfQuestion](((participantsCount: eu.timepit.refined.types.numeric.NonNegInt) => org.scalacheck.Arbitrary.arbitrary[Boolean](scalacheck.this.Arbitrary.arbBool).flatMap[org.make.core.operation.OperationOfQuestion](((featured: Boolean) => org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesTarget: Int) => org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesCount: Int) => EntitiesGen.this.genOOQTimeline(startDate).map[org.make.core.operation.OperationOfQuestion](((timeline: org.make.core.operation.OperationOfQuestionTimeline) => { val language: org.make.core.reference.Language = question.languages.head; org.make.core.operation.OperationOfQuestion.apply(question.questionId, operation.operationId, startDate, endDate, Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](title)), Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](proposalPrefix)), canPropose, org.make.core.operation.SequenceCardsConfiguration.default, scala.None, org.make.core.operation.Metas.apply(scala.None, scala.None, scala.None), org.make.core.operation.QuestionTheme.default, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, resultsLink, eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](proposalsCount)(api.this.RefType.refinedRefType), eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](participantsCount)(api.this.RefType.refinedRefType), scala.None, featured, votesCount, votesTarget, timeline, org.make.core.DateHelper.now(), false, scala.None, scala.None) }))))))))))))))))))))))
146 1312 6335 - 6353 Apply java.time.Period.ofMonths org.make.core.operation.operationofquestiontest java.time.Period.ofMonths(1)
147 4450 6377 - 6395 Apply java.time.Period.ofMonths org.make.core.operation.operationofquestiontest java.time.Period.ofMonths(6)
150 626 6440 - 8417 Apply org.scalacheck.Gen.flatMap org.make.core.operation.operationofquestiontest CustomGenerators.LoremIpsumGen.sentence(CustomGenerators.LoremIpsumGen.sentence$default$1).flatMap[org.make.core.operation.OperationOfQuestion](((title: String) => CustomGenerators.LoremIpsumGen.sentence(scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](15): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))).flatMap[org.make.core.operation.OperationOfQuestion](((proposalPrefix: String) => org.scalacheck.Arbitrary.arbitrary[Boolean](scalacheck.this.Arbitrary.arbBool).flatMap[org.make.core.operation.OperationOfQuestion](((canPropose: Boolean) => generator.this.`package`.RichGenerators[org.make.core.operation.ResultsLink](EntitiesGen.this.genResultsLink).asOption.flatMap[org.make.core.operation.OperationOfQuestion](((resultsLink: Option[org.make.core.operation.ResultsLink]) => org.scalacheck.Arbitrary.arbitrary[eu.timepit.refined.types.numeric.NonNegInt](eu.timepit.refined.scalacheck.numeric.greaterEqualArbitrary[eu.timepit.refined.api.Refined, Int, shapeless.nat._0](api.this.RefType.refinedRefType, math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt, api.this.Max.intMax, internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral))).flatMap[org.make.core.operation.OperationOfQuestion](((proposalsCount: eu.timepit.refined.types.numeric.NonNegInt) => org.scalacheck.Arbitrary.arbitrary[eu.timepit.refined.types.numeric.NonNegInt](eu.timepit.refined.scalacheck.numeric.greaterEqualArbitrary[eu.timepit.refined.api.Refined, Int, shapeless.nat._0](api.this.RefType.refinedRefType, math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt, api.this.Max.intMax, internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral))).flatMap[org.make.core.operation.OperationOfQuestion](((participantsCount: eu.timepit.refined.types.numeric.NonNegInt) => org.scalacheck.Arbitrary.arbitrary[Boolean](scalacheck.this.Arbitrary.arbBool).flatMap[org.make.core.operation.OperationOfQuestion](((featured: Boolean) => org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesTarget: Int) => org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesCount: Int) => EntitiesGen.this.genOOQTimeline(startDate).map[org.make.core.operation.OperationOfQuestion](((timeline: org.make.core.operation.OperationOfQuestionTimeline) => { val language: org.make.core.reference.Language = question.languages.head; org.make.core.operation.OperationOfQuestion.apply(question.questionId, operation.operationId, startDate, endDate, Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](title)), Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](proposalPrefix)), canPropose, org.make.core.operation.SequenceCardsConfiguration.default, scala.None, org.make.core.operation.Metas.apply(scala.None, scala.None, scala.None), org.make.core.operation.QuestionTheme.default, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, resultsLink, eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](proposalsCount)(api.this.RefType.refinedRefType), eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](participantsCount)(api.this.RefType.refinedRefType), scala.None, featured, votesCount, votesTarget, timeline, org.make.core.DateHelper.now(), false, scala.None, scala.None) }))))))))))))))))))))
150 2525 6492 - 6492 Select org.make.core.technical.generator.CustomGenerators.LoremIpsumGen.sentence$default$1 org.make.core.operation.operationofquestiontest CustomGenerators.LoremIpsumGen.sentence$default$1
151 1666 6582 - 6590 Apply scala.Some.apply org.make.core.operation.operationofquestiontest scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](15): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))
151 2533 6509 - 8417 Apply org.scalacheck.Gen.flatMap org.make.core.operation.operationofquestiontest CustomGenerators.LoremIpsumGen.sentence(scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](15): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))).flatMap[org.make.core.operation.OperationOfQuestion](((proposalPrefix: String) => org.scalacheck.Arbitrary.arbitrary[Boolean](scalacheck.this.Arbitrary.arbBool).flatMap[org.make.core.operation.OperationOfQuestion](((canPropose: Boolean) => generator.this.`package`.RichGenerators[org.make.core.operation.ResultsLink](EntitiesGen.this.genResultsLink).asOption.flatMap[org.make.core.operation.OperationOfQuestion](((resultsLink: Option[org.make.core.operation.ResultsLink]) => org.scalacheck.Arbitrary.arbitrary[eu.timepit.refined.types.numeric.NonNegInt](eu.timepit.refined.scalacheck.numeric.greaterEqualArbitrary[eu.timepit.refined.api.Refined, Int, shapeless.nat._0](api.this.RefType.refinedRefType, math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt, api.this.Max.intMax, internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral))).flatMap[org.make.core.operation.OperationOfQuestion](((proposalsCount: eu.timepit.refined.types.numeric.NonNegInt) => org.scalacheck.Arbitrary.arbitrary[eu.timepit.refined.types.numeric.NonNegInt](eu.timepit.refined.scalacheck.numeric.greaterEqualArbitrary[eu.timepit.refined.api.Refined, Int, shapeless.nat._0](api.this.RefType.refinedRefType, math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt, api.this.Max.intMax, internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral))).flatMap[org.make.core.operation.OperationOfQuestion](((participantsCount: eu.timepit.refined.types.numeric.NonNegInt) => org.scalacheck.Arbitrary.arbitrary[Boolean](scalacheck.this.Arbitrary.arbBool).flatMap[org.make.core.operation.OperationOfQuestion](((featured: Boolean) => org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesTarget: Int) => org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesCount: Int) => EntitiesGen.this.genOOQTimeline(startDate).map[org.make.core.operation.OperationOfQuestion](((timeline: org.make.core.operation.OperationOfQuestionTimeline) => { val language: org.make.core.reference.Language = question.languages.head; org.make.core.operation.OperationOfQuestion.apply(question.questionId, operation.operationId, startDate, endDate, Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](title)), Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](proposalPrefix)), canPropose, org.make.core.operation.SequenceCardsConfiguration.default, scala.None, org.make.core.operation.Metas.apply(scala.None, scala.None, scala.None), org.make.core.operation.QuestionTheme.default, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, resultsLink, eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](proposalsCount)(api.this.RefType.refinedRefType), eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](participantsCount)(api.this.RefType.refinedRefType), scala.None, featured, votesCount, votesTarget, timeline, org.make.core.DateHelper.now(), false, scala.None, scala.None) }))))))))))))))))))
152 4537 6598 - 8417 Apply org.scalacheck.Gen.flatMap org.make.core.operation.operationofquestiontest org.scalacheck.Arbitrary.arbitrary[Boolean](scalacheck.this.Arbitrary.arbBool).flatMap[org.make.core.operation.OperationOfQuestion](((canPropose: Boolean) => generator.this.`package`.RichGenerators[org.make.core.operation.ResultsLink](EntitiesGen.this.genResultsLink).asOption.flatMap[org.make.core.operation.OperationOfQuestion](((resultsLink: Option[org.make.core.operation.ResultsLink]) => org.scalacheck.Arbitrary.arbitrary[eu.timepit.refined.types.numeric.NonNegInt](eu.timepit.refined.scalacheck.numeric.greaterEqualArbitrary[eu.timepit.refined.api.Refined, Int, shapeless.nat._0](api.this.RefType.refinedRefType, math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt, api.this.Max.intMax, internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral))).flatMap[org.make.core.operation.OperationOfQuestion](((proposalsCount: eu.timepit.refined.types.numeric.NonNegInt) => org.scalacheck.Arbitrary.arbitrary[eu.timepit.refined.types.numeric.NonNegInt](eu.timepit.refined.scalacheck.numeric.greaterEqualArbitrary[eu.timepit.refined.api.Refined, Int, shapeless.nat._0](api.this.RefType.refinedRefType, math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt, api.this.Max.intMax, internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral))).flatMap[org.make.core.operation.OperationOfQuestion](((participantsCount: eu.timepit.refined.types.numeric.NonNegInt) => org.scalacheck.Arbitrary.arbitrary[Boolean](scalacheck.this.Arbitrary.arbBool).flatMap[org.make.core.operation.OperationOfQuestion](((featured: Boolean) => org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesTarget: Int) => org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesCount: Int) => EntitiesGen.this.genOOQTimeline(startDate).map[org.make.core.operation.OperationOfQuestion](((timeline: org.make.core.operation.OperationOfQuestionTimeline) => { val language: org.make.core.reference.Language = question.languages.head; org.make.core.operation.OperationOfQuestion.apply(question.questionId, operation.operationId, startDate, endDate, Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](title)), Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](proposalPrefix)), canPropose, org.make.core.operation.SequenceCardsConfiguration.default, scala.None, org.make.core.operation.Metas.apply(scala.None, scala.None, scala.None), org.make.core.operation.QuestionTheme.default, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, resultsLink, eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](proposalsCount)(api.this.RefType.refinedRefType), eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](participantsCount)(api.this.RefType.refinedRefType), scala.None, featured, votesCount, votesTarget, timeline, org.make.core.DateHelper.now(), false, scala.None, scala.None) }))))))))))))))))
153 1154 6644 - 8417 Apply org.scalacheck.Gen.flatMap org.make.core.operation.operationofquestiontest generator.this.`package`.RichGenerators[org.make.core.operation.ResultsLink](EntitiesGen.this.genResultsLink).asOption.flatMap[org.make.core.operation.OperationOfQuestion](((resultsLink: Option[org.make.core.operation.ResultsLink]) => org.scalacheck.Arbitrary.arbitrary[eu.timepit.refined.types.numeric.NonNegInt](eu.timepit.refined.scalacheck.numeric.greaterEqualArbitrary[eu.timepit.refined.api.Refined, Int, shapeless.nat._0](api.this.RefType.refinedRefType, math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt, api.this.Max.intMax, internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral))).flatMap[org.make.core.operation.OperationOfQuestion](((proposalsCount: eu.timepit.refined.types.numeric.NonNegInt) => org.scalacheck.Arbitrary.arbitrary[eu.timepit.refined.types.numeric.NonNegInt](eu.timepit.refined.scalacheck.numeric.greaterEqualArbitrary[eu.timepit.refined.api.Refined, Int, shapeless.nat._0](api.this.RefType.refinedRefType, math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt, api.this.Max.intMax, internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral))).flatMap[org.make.core.operation.OperationOfQuestion](((participantsCount: eu.timepit.refined.types.numeric.NonNegInt) => org.scalacheck.Arbitrary.arbitrary[Boolean](scalacheck.this.Arbitrary.arbBool).flatMap[org.make.core.operation.OperationOfQuestion](((featured: Boolean) => org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesTarget: Int) => org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesCount: Int) => EntitiesGen.this.genOOQTimeline(startDate).map[org.make.core.operation.OperationOfQuestion](((timeline: org.make.core.operation.OperationOfQuestionTimeline) => { val language: org.make.core.reference.Language = question.languages.head; org.make.core.operation.OperationOfQuestion.apply(question.questionId, operation.operationId, startDate, endDate, Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](title)), Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](proposalPrefix)), canPropose, org.make.core.operation.SequenceCardsConfiguration.default, scala.None, org.make.core.operation.Metas.apply(scala.None, scala.None, scala.None), org.make.core.operation.QuestionTheme.default, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, resultsLink, eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](proposalsCount)(api.this.RefType.refinedRefType), eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](participantsCount)(api.this.RefType.refinedRefType), scala.None, featured, votesCount, votesTarget, timeline, org.make.core.DateHelper.now(), false, scala.None, scala.None) }))))))))))))))
153 4700 6665 - 6679 Select org.make.core.technical.generator.EntitiesGen.genResultsLink org.make.core.operation.operationofquestiontest EntitiesGen.this.genResultsLink
154 3071 6725 - 6725 Select eu.timepit.refined.api.MaxInstances.intMax org.make.core.operation.operationofquestiontest api.this.Max.intMax
154 1677 6725 - 6725 ApplyToImplicitArgs eu.timepit.refined.internal.WitnessAs.natWitnessAs org.make.core.operation.operationofquestiontest internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral)
154 830 6725 - 6725 Select scala.math.Numeric.IntIsIntegral org.make.core.operation.operationofquestiontest math.this.Numeric.IntIsIntegral
154 2804 6725 - 6725 Select eu.timepit.refined.api.RefType.refinedRefType org.make.core.operation.operationofquestiontest api.this.RefType.refinedRefType
154 1288 6725 - 6725 Select shapeless.Witness.witness0 org.make.core.operation.operationofquestiontest shapeless.this.Witness.witness0
154 2277 6695 - 8417 Apply org.scalacheck.Gen.flatMap org.make.core.operation.operationofquestiontest org.scalacheck.Arbitrary.arbitrary[eu.timepit.refined.types.numeric.NonNegInt](eu.timepit.refined.scalacheck.numeric.greaterEqualArbitrary[eu.timepit.refined.api.Refined, Int, shapeless.nat._0](api.this.RefType.refinedRefType, math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt, api.this.Max.intMax, internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral))).flatMap[org.make.core.operation.OperationOfQuestion](((proposalsCount: eu.timepit.refined.types.numeric.NonNegInt) => org.scalacheck.Arbitrary.arbitrary[eu.timepit.refined.types.numeric.NonNegInt](eu.timepit.refined.scalacheck.numeric.greaterEqualArbitrary[eu.timepit.refined.api.Refined, Int, shapeless.nat._0](api.this.RefType.refinedRefType, math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt, api.this.Max.intMax, internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral))).flatMap[org.make.core.operation.OperationOfQuestion](((participantsCount: eu.timepit.refined.types.numeric.NonNegInt) => org.scalacheck.Arbitrary.arbitrary[Boolean](scalacheck.this.Arbitrary.arbBool).flatMap[org.make.core.operation.OperationOfQuestion](((featured: Boolean) => org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesTarget: Int) => org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesCount: Int) => EntitiesGen.this.genOOQTimeline(startDate).map[org.make.core.operation.OperationOfQuestion](((timeline: org.make.core.operation.OperationOfQuestionTimeline) => { val language: org.make.core.reference.Language = question.languages.head; org.make.core.operation.OperationOfQuestion.apply(question.questionId, operation.operationId, startDate, endDate, Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](title)), Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](proposalPrefix)), canPropose, org.make.core.operation.SequenceCardsConfiguration.default, scala.None, org.make.core.operation.Metas.apply(scala.None, scala.None, scala.None), org.make.core.operation.QuestionTheme.default, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, resultsLink, eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](proposalsCount)(api.this.RefType.refinedRefType), eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](participantsCount)(api.this.RefType.refinedRefType), scala.None, featured, votesCount, votesTarget, timeline, org.make.core.DateHelper.now(), false, scala.None, scala.None) }))))))))))))
154 4041 6725 - 6725 Select org.scalacheck.Gen.Choose.chooseInt org.make.core.operation.operationofquestiontest Gen.this.Choose.chooseInt
154 2473 6725 - 6725 Select scala.math.Numeric.IntIsIntegral org.make.core.operation.operationofquestiontest math.this.Numeric.IntIsIntegral
154 4707 6725 - 6725 ApplyToImplicitArgs eu.timepit.refined.scalacheck.NumericInstances.greaterEqualArbitrary org.make.core.operation.operationofquestiontest eu.timepit.refined.scalacheck.numeric.greaterEqualArbitrary[eu.timepit.refined.api.Refined, Int, shapeless.nat._0](api.this.RefType.refinedRefType, math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt, api.this.Max.intMax, internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral))
154 4459 6725 - 6725 Select shapeless.ops.nat.ToInt.toInt0 org.make.core.operation.operationofquestiontest nat.this.ToInt.toInt0
155 4300 6773 - 6773 Select org.scalacheck.Gen.Choose.chooseInt org.make.core.operation.operationofquestiontest Gen.this.Choose.chooseInt
155 4578 6773 - 6773 Select shapeless.ops.nat.ToInt.toInt0 org.make.core.operation.operationofquestiontest nat.this.ToInt.toInt0
155 842 6773 - 6773 Select scala.math.Numeric.IntIsIntegral org.make.core.operation.operationofquestiontest math.this.Numeric.IntIsIntegral
155 414 6773 - 6773 ApplyToImplicitArgs eu.timepit.refined.internal.WitnessAs.natWitnessAs org.make.core.operation.operationofquestiontest internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral)
155 4248 6743 - 8417 Apply org.scalacheck.Gen.flatMap org.make.core.operation.operationofquestiontest org.scalacheck.Arbitrary.arbitrary[eu.timepit.refined.types.numeric.NonNegInt](eu.timepit.refined.scalacheck.numeric.greaterEqualArbitrary[eu.timepit.refined.api.Refined, Int, shapeless.nat._0](api.this.RefType.refinedRefType, math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt, api.this.Max.intMax, internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral))).flatMap[org.make.core.operation.OperationOfQuestion](((participantsCount: eu.timepit.refined.types.numeric.NonNegInt) => org.scalacheck.Arbitrary.arbitrary[Boolean](scalacheck.this.Arbitrary.arbBool).flatMap[org.make.core.operation.OperationOfQuestion](((featured: Boolean) => org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesTarget: Int) => org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesCount: Int) => EntitiesGen.this.genOOQTimeline(startDate).map[org.make.core.operation.OperationOfQuestion](((timeline: org.make.core.operation.OperationOfQuestionTimeline) => { val language: org.make.core.reference.Language = question.languages.head; org.make.core.operation.OperationOfQuestion.apply(question.questionId, operation.operationId, startDate, endDate, Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](title)), Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](proposalPrefix)), canPropose, org.make.core.operation.SequenceCardsConfiguration.default, scala.None, org.make.core.operation.Metas.apply(scala.None, scala.None, scala.None), org.make.core.operation.QuestionTheme.default, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, resultsLink, eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](proposalsCount)(api.this.RefType.refinedRefType), eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](participantsCount)(api.this.RefType.refinedRefType), scala.None, featured, votesCount, votesTarget, timeline, org.make.core.DateHelper.now(), false, scala.None, scala.None) }))))))))))
155 1299 6773 - 6773 Select shapeless.Witness.witness0 org.make.core.operation.operationofquestiontest shapeless.this.Witness.witness0
155 2662 6773 - 6773 Select scala.math.Numeric.IntIsIntegral org.make.core.operation.operationofquestiontest math.this.Numeric.IntIsIntegral
155 2940 6773 - 6773 Select eu.timepit.refined.api.RefType.refinedRefType org.make.core.operation.operationofquestiontest api.this.RefType.refinedRefType
155 4824 6773 - 6773 ApplyToImplicitArgs eu.timepit.refined.scalacheck.NumericInstances.greaterEqualArbitrary org.make.core.operation.operationofquestiontest eu.timepit.refined.scalacheck.numeric.greaterEqualArbitrary[eu.timepit.refined.api.Refined, Int, shapeless.nat._0](api.this.RefType.refinedRefType, math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt, api.this.Max.intMax, internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral))
155 3337 6773 - 6773 Select eu.timepit.refined.api.MaxInstances.intMax org.make.core.operation.operationofquestiontest api.this.Max.intMax
156 901 6791 - 8417 Apply org.scalacheck.Gen.flatMap org.make.core.operation.operationofquestiontest org.scalacheck.Arbitrary.arbitrary[Boolean](scalacheck.this.Arbitrary.arbBool).flatMap[org.make.core.operation.OperationOfQuestion](((featured: Boolean) => org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesTarget: Int) => org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesCount: Int) => EntitiesGen.this.genOOQTimeline(startDate).map[org.make.core.operation.OperationOfQuestion](((timeline: org.make.core.operation.OperationOfQuestionTimeline) => { val language: org.make.core.reference.Language = question.languages.head; org.make.core.operation.OperationOfQuestion.apply(question.questionId, operation.operationId, startDate, endDate, Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](title)), Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](proposalPrefix)), canPropose, org.make.core.operation.SequenceCardsConfiguration.default, scala.None, org.make.core.operation.Metas.apply(scala.None, scala.None, scala.None), org.make.core.operation.QuestionTheme.default, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, resultsLink, eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](proposalsCount)(api.this.RefType.refinedRefType), eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](participantsCount)(api.this.RefType.refinedRefType), scala.None, featured, votesCount, votesTarget, timeline, org.make.core.DateHelper.now(), false, scala.None, scala.None) }))))))))
157 2950 6869 - 6870 Literal <nosymbol> org.make.core.operation.operationofquestiontest 0
157 4310 6868 - 6868 Select org.scalacheck.Gen.Choose.chooseInt org.make.core.operation.operationofquestiontest Gen.this.Choose.chooseInt
157 945 6872 - 6883 Literal <nosymbol> org.make.core.operation.operationofquestiontest 100000000
157 2892 6837 - 8417 Apply org.scalacheck.Gen.flatMap org.make.core.operation.operationofquestiontest org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesTarget: Int) => org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesCount: Int) => EntitiesGen.this.genOOQTimeline(startDate).map[org.make.core.operation.OperationOfQuestion](((timeline: org.make.core.operation.OperationOfQuestionTimeline) => { val language: org.make.core.reference.Language = question.languages.head; org.make.core.operation.OperationOfQuestion.apply(question.questionId, operation.operationId, startDate, endDate, Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](title)), Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](proposalPrefix)), canPropose, org.make.core.operation.SequenceCardsConfiguration.default, scala.None, org.make.core.operation.Metas.apply(scala.None, scala.None, scala.None), org.make.core.operation.QuestionTheme.default, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, resultsLink, eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](proposalsCount)(api.this.RefType.refinedRefType), eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](participantsCount)(api.this.RefType.refinedRefType), scala.None, featured, votesCount, votesTarget, timeline, org.make.core.DateHelper.now(), false, scala.None, scala.None) }))))))
158 3997 6891 - 8417 Apply org.scalacheck.Gen.flatMap org.make.core.operation.operationofquestiontest org.scalacheck.Gen.choose[Int](0, 100000000)(Gen.this.Choose.chooseInt).flatMap[org.make.core.operation.OperationOfQuestion](((votesCount: Int) => EntitiesGen.this.genOOQTimeline(startDate).map[org.make.core.operation.OperationOfQuestion](((timeline: org.make.core.operation.OperationOfQuestionTimeline) => { val language: org.make.core.reference.Language = question.languages.head; org.make.core.operation.OperationOfQuestion.apply(question.questionId, operation.operationId, startDate, endDate, Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](title)), Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](proposalPrefix)), canPropose, org.make.core.operation.SequenceCardsConfiguration.default, scala.None, org.make.core.operation.Metas.apply(scala.None, scala.None, scala.None), org.make.core.operation.QuestionTheme.default, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, resultsLink, eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](proposalsCount)(api.this.RefType.refinedRefType), eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](participantsCount)(api.this.RefType.refinedRefType), scala.None, featured, votesCount, votesTarget, timeline, org.make.core.DateHelper.now(), false, scala.None, scala.None) }))))
158 1225 6926 - 6937 Literal <nosymbol> org.make.core.operation.operationofquestiontest 100000000
158 3348 6923 - 6924 Literal <nosymbol> org.make.core.operation.operationofquestiontest 0
158 4585 6922 - 6922 Select org.scalacheck.Gen.Choose.chooseInt org.make.core.operation.operationofquestiontest Gen.this.Choose.chooseInt
159 619 6945 - 8417 Apply org.scalacheck.Gen.map org.make.core.operation.operationofquestiontest EntitiesGen.this.genOOQTimeline(startDate).map[org.make.core.operation.OperationOfQuestion](((timeline: org.make.core.operation.OperationOfQuestionTimeline) => { val language: org.make.core.reference.Language = question.languages.head; org.make.core.operation.OperationOfQuestion.apply(question.questionId, operation.operationId, startDate, endDate, Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](title)), Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](proposalPrefix)), canPropose, org.make.core.operation.SequenceCardsConfiguration.default, scala.None, org.make.core.operation.Metas.apply(scala.None, scala.None, scala.None), org.make.core.operation.QuestionTheme.default, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, resultsLink, eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](proposalsCount)(api.this.RefType.refinedRefType), eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](participantsCount)(api.this.RefType.refinedRefType), scala.None, featured, votesCount, votesTarget, timeline, org.make.core.DateHelper.now(), false, scala.None, scala.None) }))
161 2460 7027 - 7050 Select cats.data.NonEmptyList.head org.make.core.operation.operationofquestiontest question.languages.head
162 2423 7057 - 8411 Apply org.make.core.operation.OperationOfQuestion.apply org.make.core.operation.operationofquestiontest org.make.core.operation.OperationOfQuestion.apply(question.questionId, operation.operationId, startDate, endDate, Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](title)), Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](proposalPrefix)), canPropose, org.make.core.operation.SequenceCardsConfiguration.default, scala.None, org.make.core.operation.Metas.apply(scala.None, scala.None, scala.None), org.make.core.operation.QuestionTheme.default, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, scala.None, resultsLink, eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](proposalsCount)(api.this.RefType.refinedRefType), eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](participantsCount)(api.this.RefType.refinedRefType), scala.None, featured, votesCount, votesTarget, timeline, org.make.core.DateHelper.now(), false, scala.None, scala.None)
163 692 7099 - 7118 Select org.make.core.question.Question.questionId org.make.core.operation.operationofquestiontest question.questionId
164 4836 7142 - 7163 Select org.make.core.operation.SimpleOperation.operationId org.make.core.operation.operationofquestiontest operation.operationId
167 2884 7262 - 7279 Apply scala.Predef.ArrowAssoc.-> org.make.core.operation.operationofquestiontest scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](title)
167 826 7249 - 7280 Apply org.make.core.technical.Multilingual.apply org.make.core.operation.operationofquestiontest Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](title))
168 2347 7309 - 7349 Apply org.make.core.technical.Multilingual.apply org.make.core.operation.operationofquestiontest Multilingual.apply[String](scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](proposalPrefix))
168 4163 7322 - 7348 Apply scala.Predef.ArrowAssoc.-> org.make.core.operation.operationofquestiontest scala.Predef.ArrowAssoc[org.make.core.reference.Language](language).->[String](proposalPrefix)
170 1239 7421 - 7455 Select org.make.core.operation.SequenceCardsConfiguration.default org.make.core.operation.operationofquestiontest org.make.core.operation.SequenceCardsConfiguration.default
171 4533 7477 - 7481 Select scala.None org.make.core.operation.operationofquestiontest scala.None
172 523 7511 - 7515 Select scala.None org.make.core.operation.operationofquestiontest scala.None
172 4772 7517 - 7521 Select scala.None org.make.core.operation.operationofquestiontest scala.None
172 2469 7505 - 7509 Select scala.None org.make.core.operation.operationofquestiontest scala.None
172 2895 7499 - 7522 Apply org.make.core.operation.Metas.apply org.make.core.operation.operationofquestiontest org.make.core.operation.Metas.apply(scala.None, scala.None, scala.None)
173 837 7540 - 7561 Select org.make.core.operation.QuestionTheme.default org.make.core.operation.operationofquestiontest org.make.core.operation.QuestionTheme.default
174 4108 7586 - 7590 Select scala.None org.make.core.operation.operationofquestiontest scala.None
175 2058 7621 - 7625 Select scala.None org.make.core.operation.operationofquestiontest scala.None
176 1161 7659 - 7663 Select scala.None org.make.core.operation.operationofquestiontest scala.None
177 4387 7693 - 7697 Select scala.None org.make.core.operation.operationofquestiontest scala.None
178 2479 7730 - 7734 Select scala.None org.make.core.operation.operationofquestiontest scala.None
179 465 7760 - 7764 Select scala.None org.make.core.operation.operationofquestiontest scala.None
180 4978 7793 - 7797 Select scala.None org.make.core.operation.operationofquestiontest scala.None
181 2819 7825 - 7829 Select scala.None org.make.core.operation.operationofquestiontest scala.None
182 769 7860 - 7864 Select scala.None org.make.core.operation.operationofquestiontest scala.None
183 4117 7895 - 7899 Select scala.None org.make.core.operation.operationofquestiontest scala.None
184 2335 7934 - 7938 Select scala.None org.make.core.operation.operationofquestiontest scala.None
185 1364 7965 - 7969 Select scala.None org.make.core.operation.operationofquestiontest scala.None
186 4397 7999 - 8003 Select scala.None org.make.core.operation.operationofquestiontest scala.None
188 687 8065 - 8079 ApplyToImplicitArgs eu.timepit.refined.auto.autoUnwrap org.make.core.operation.operationofquestiontest eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](proposalsCount)(api.this.RefType.refinedRefType)
188 2414 8065 - 8065 Select eu.timepit.refined.api.RefType.refinedRefType org.make.core.operation.operationofquestiontest api.this.RefType.refinedRefType
189 2879 8109 - 8126 ApplyToImplicitArgs eu.timepit.refined.auto.autoUnwrap org.make.core.operation.operationofquestiontest eu.timepit.refined.auto.autoUnwrap[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.NonNegative](participantsCount)(api.this.RefType.refinedRefType)
189 3990 8109 - 8109 Select eu.timepit.refined.api.RefType.refinedRefType org.make.core.operation.operationofquestiontest api.this.RefType.refinedRefType
190 778 8146 - 8150 Select scala.None org.make.core.operation.operationofquestiontest scala.None
195 4063 8298 - 8314 Apply org.make.core.DefaultDateHelper.now org.make.core.operation.operationofquestiontest org.make.core.DateHelper.now()
196 2341 8345 - 8350 Literal <nosymbol> org.make.core.operation.operationofquestiontest false
197 1372 8372 - 8376 Select scala.None org.make.core.operation.operationofquestiontest scala.None
198 4528 8399 - 8403 Select scala.None org.make.core.operation.operationofquestiontest scala.None
202 4480 8468 - 8614 Apply org.scalacheck.Gen.frequency org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest org.scalacheck.Gen.frequency[org.make.core.operation.ResultsLink](scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.operation.ResultsLink.Internal]](4, org.scalacheck.Gen.oneOf[org.make.core.operation.ResultsLink.Internal](org.make.core.operation.ResultsLink.Internal.values)), scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.operation.ResultsLink.External]](1, org.make.core.technical.generator.CustomGenerators.ImageUrl.gen(100, 100).map[org.make.core.operation.ResultsLink.External](((url: String) => org.make.core.operation.ResultsLink.External.apply(new java.net.URI(url))))))
203 2287 8488 - 8489 Literal <nosymbol> org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest 4
203 5519 8501 - 8528 Select org.make.core.operation.ResultsLink.Internal.values org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest org.make.core.operation.ResultsLink.Internal.values
203 4469 8491 - 8529 Apply org.scalacheck.Gen.oneOf org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest org.scalacheck.Gen.oneOf[org.make.core.operation.ResultsLink.Internal](org.make.core.operation.ResultsLink.Internal.values)
203 2411 8487 - 8530 Apply scala.Tuple2.apply org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.operation.ResultsLink.Internal]](4, org.scalacheck.Gen.oneOf[org.make.core.operation.ResultsLink.Internal](org.make.core.operation.ResultsLink.Internal.values))
204 2128 8540 - 8609 Apply org.scalacheck.Gen.map org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest org.make.core.technical.generator.CustomGenerators.ImageUrl.gen(100, 100).map[org.make.core.operation.ResultsLink.External](((url: String) => org.make.core.operation.ResultsLink.External.apply(new java.net.URI(url))))
204 853 8595 - 8607 Apply java.net.URI.<init> org.make.core.operation.operationofquestiontest new java.net.URI(url)
204 4059 8574 - 8608 Apply org.make.core.operation.ResultsLink.External.apply org.make.core.operation.operationofquestiontest org.make.core.operation.ResultsLink.External.apply(new java.net.URI(url))
204 413 8537 - 8538 Literal <nosymbol> org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest 1
204 5449 8536 - 8610 Apply scala.Tuple2.apply org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.operation.ResultsLink.External]](1, org.make.core.technical.generator.CustomGenerators.ImageUrl.gen(100, 100).map[org.make.core.operation.ResultsLink.External](((url: String) => org.make.core.operation.ResultsLink.External.apply(new java.net.URI(url)))))
204 3801 8553 - 8556 Literal <nosymbol> org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest 100
204 2826 8558 - 8561 Literal <nosymbol> org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest 100
208 3951 8667 - 8831 Apply org.scalacheck.Gen.frequency org.scalacheck.Gen.frequency[org.make.core.user.Role](scalacheck.this.Gen.freqTuple[org.make.core.user.Role.RoleActor.type](scala.Tuple2.apply[Int, org.make.core.user.Role.RoleActor.type](1, org.make.core.user.Role.RoleActor)), scalacheck.this.Gen.freqTuple[org.make.core.user.Role.RoleAdmin.type](scala.Tuple2.apply[Int, org.make.core.user.Role.RoleAdmin.type](1, org.make.core.user.Role.RoleAdmin)), scalacheck.this.Gen.freqTuple[org.make.core.user.Role.RoleCitizen.type](scala.Tuple2.apply[Int, org.make.core.user.Role.RoleCitizen.type](9, org.make.core.user.Role.RoleCitizen)), scalacheck.this.Gen.freqTuple[org.make.core.user.Role.RoleModerator.type](scala.Tuple2.apply[Int, org.make.core.user.Role.RoleModerator.type](2, org.make.core.user.Role.RoleModerator)), scalacheck.this.Gen.freqTuple[org.make.core.user.Role.RolePolitical.type](scala.Tuple2.apply[Int, org.make.core.user.Role.RolePolitical.type](1, org.make.core.user.Role.RolePolitical)))
209 2672 8689 - 8690 Literal <nosymbol> 1
209 3994 8688 - 8707 Apply scala.Tuple2.apply scala.Tuple2.apply[Int, org.make.core.user.Role.RoleActor.type](1, org.make.core.user.Role.RoleActor)
209 423 8692 - 8706 Select org.make.core.user.Role.RoleActor org.make.core.user.Role.RoleActor
209 1855 8688 - 8707 ApplyImplicitView org.scalacheck.Gen.freqTuple scalacheck.this.Gen.freqTuple[org.make.core.user.Role.RoleActor.type](scala.Tuple2.apply[Int, org.make.core.user.Role.RoleActor.type](1, org.make.core.user.Role.RoleActor))
210 1037 8716 - 8717 Literal <nosymbol> 1
210 4069 8719 - 8733 Select org.make.core.user.Role.RoleAdmin org.make.core.user.Role.RoleAdmin
210 2077 8715 - 8734 Apply scala.Tuple2.apply scala.Tuple2.apply[Int, org.make.core.user.Role.RoleAdmin.type](1, org.make.core.user.Role.RoleAdmin)
210 5622 8715 - 8734 ApplyImplicitView org.scalacheck.Gen.freqTuple scalacheck.this.Gen.freqTuple[org.make.core.user.Role.RoleAdmin.type](scala.Tuple2.apply[Int, org.make.core.user.Role.RoleAdmin.type](1, org.make.core.user.Role.RoleAdmin))
211 429 8742 - 8763 Apply scala.Tuple2.apply scala.Tuple2.apply[Int, org.make.core.user.Role.RoleCitizen.type](9, org.make.core.user.Role.RoleCitizen)
211 3943 8742 - 8763 ApplyImplicitView org.scalacheck.Gen.freqTuple scalacheck.this.Gen.freqTuple[org.make.core.user.Role.RoleCitizen.type](scala.Tuple2.apply[Int, org.make.core.user.Role.RoleCitizen.type](9, org.make.core.user.Role.RoleCitizen))
211 2683 8746 - 8762 Select org.make.core.user.Role.RoleCitizen org.make.core.user.Role.RoleCitizen
211 4411 8743 - 8744 Literal <nosymbol> 9
212 2284 8771 - 8794 ApplyImplicitView org.scalacheck.Gen.freqTuple scalacheck.this.Gen.freqTuple[org.make.core.user.Role.RoleModerator.type](scala.Tuple2.apply[Int, org.make.core.user.Role.RoleModerator.type](2, org.make.core.user.Role.RoleModerator))
212 973 8775 - 8793 Select org.make.core.user.Role.RoleModerator org.make.core.user.Role.RoleModerator
212 2013 8772 - 8773 Literal <nosymbol> 2
212 4333 8771 - 8794 Apply scala.Tuple2.apply scala.Tuple2.apply[Int, org.make.core.user.Role.RoleModerator.type](2, org.make.core.user.Role.RoleModerator)
213 5579 8803 - 8804 Literal <nosymbol> 1
213 4466 8806 - 8824 Select org.make.core.user.Role.RolePolitical org.make.core.user.Role.RolePolitical
213 2695 8802 - 8825 Apply scala.Tuple2.apply scala.Tuple2.apply[Int, org.make.core.user.Role.RolePolitical.type](1, org.make.core.user.Role.RolePolitical)
213 712 8802 - 8825 ApplyImplicitView org.scalacheck.Gen.freqTuple scalacheck.this.Gen.freqTuple[org.make.core.user.Role.RolePolitical.type](scala.Tuple2.apply[Int, org.make.core.user.Role.RolePolitical.type](1, org.make.core.user.Role.RolePolitical))
215 848 8862 - 8872 Select scala.collection.SeqOps.distinct x$10.distinct
215 1969 8848 - 8849 Literal <nosymbol> 3
215 4343 8836 - 8873 Apply org.scalacheck.Gen.map org.scalacheck.Gen.listOfN[org.make.core.user.Role](3, roles).map[List[org.make.core.user.Role]](((x$10: List[org.make.core.user.Role]) => x$10.distinct))
218 2216 8916 - 8919 Literal <nosymbol> org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest 600
219 5585 8958 - 8982 Apply scala.Int./ org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest EntitiesGen.this.SumCounterUpperBound./(3)
221 2487 9093 - 9093 Select cats.kernel.instances.IntInstances.catsKernelStdOrderForInt cats.implicits.catsKernelStdOrderForInt
221 3892 9067 - 9102 Apply scala.Function1.apply getter.apply(cats.implicits.toReducibleOps[cats.data.NonEmptyList, org.make.core.technical.generator.Counts](countsNel)(data.this.NonEmptyList.catsDataInstancesForNonEmptyListBinCompat1).maximumBy[Int](getter)(cats.implicits.catsKernelStdOrderForInt))
221 557 9074 - 9101 ApplyToImplicitArgs cats.Reducible.Ops.maximumBy cats.implicits.toReducibleOps[cats.data.NonEmptyList, org.make.core.technical.generator.Counts](countsNel)(data.this.NonEmptyList.catsDataInstancesForNonEmptyListBinCompat1).maximumBy[Int](getter)(cats.implicits.catsKernelStdOrderForInt)
221 3493 9074 - 9074 Select cats.data.NonEmptyListInstances.catsDataInstancesForNonEmptyListBinCompat1 data.this.NonEmptyList.catsDataInstancesForNonEmptyListBinCompat1
225 1851 9196 - 9197 Literal <nosymbol> 0
225 4003 9153 - 9448 Apply org.scalacheck.Gen.flatMap org.scalacheck.Gen.chooseNum[Int](0, EntitiesGen.this.SimpleCountUpperBound)(math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt).flatMap[org.make.core.technical.generator.Counts](((count: Int) => org.scalacheck.Gen.chooseNum[Int](0, count)(math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt).flatMap[org.make.core.technical.generator.Counts](((countVerified: Int) => org.scalacheck.Gen.chooseNum[Int](0, countVerified)(math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt).flatMap[org.make.core.technical.generator.Counts](((countSequence: Int) => org.scalacheck.Gen.chooseNum[Int](0, countSequence)(math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt).map[org.make.core.technical.generator.Counts](((countSegment: Int) => Counts.apply(count, countVerified, countSequence, countSegment)))))))))
225 2223 9195 - 9195 Select org.scalacheck.Gen.Choose.chooseInt Gen.this.Choose.chooseInt
225 859 9199 - 9220 Select org.make.core.technical.generator.EntitiesGen.SimpleCountUpperBound EntitiesGen.this.SimpleCountUpperBound
225 4127 9195 - 9195 Select scala.math.Numeric.IntIsIntegral math.this.Numeric.IntIsIntegral
226 5532 9259 - 9260 Literal <nosymbol> 0
226 708 9228 - 9448 Apply org.scalacheck.Gen.flatMap org.scalacheck.Gen.chooseNum[Int](0, count)(math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt).flatMap[org.make.core.technical.generator.Counts](((countVerified: Int) => org.scalacheck.Gen.chooseNum[Int](0, countVerified)(math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt).flatMap[org.make.core.technical.generator.Counts](((countSequence: Int) => org.scalacheck.Gen.chooseNum[Int](0, countSequence)(math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt).map[org.make.core.technical.generator.Counts](((countSegment: Int) => Counts.apply(count, countVerified, countSequence, countSegment)))))))
226 3501 9258 - 9258 Select scala.math.Numeric.IntIsIntegral math.this.Numeric.IntIsIntegral
226 2493 9258 - 9258 Select org.scalacheck.Gen.Choose.chooseInt Gen.this.Choose.chooseInt
227 3898 9305 - 9305 Select scala.math.Numeric.IntIsIntegral math.this.Numeric.IntIsIntegral
227 1864 9305 - 9305 Select org.scalacheck.Gen.Choose.chooseInt Gen.this.Choose.chooseInt
227 2432 9275 - 9448 Apply org.scalacheck.Gen.flatMap org.scalacheck.Gen.chooseNum[Int](0, countVerified)(math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt).flatMap[org.make.core.technical.generator.Counts](((countSequence: Int) => org.scalacheck.Gen.chooseNum[Int](0, countSequence)(math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt).map[org.make.core.technical.generator.Counts](((countSegment: Int) => Counts.apply(count, countVerified, countSequence, countSegment)))))
227 697 9306 - 9307 Literal <nosymbol> 0
228 786 9361 - 9362 Literal <nosymbol> 0
228 3510 9330 - 9448 Apply org.scalacheck.Gen.map org.scalacheck.Gen.chooseNum[Int](0, countSequence)(math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt).map[org.make.core.technical.generator.Counts](((countSegment: Int) => Counts.apply(count, countVerified, countSequence, countSegment)))
228 4329 9360 - 9360 Select scala.math.Numeric.IntIsIntegral math.this.Numeric.IntIsIntegral
228 2352 9360 - 9360 Select org.scalacheck.Gen.Choose.chooseInt Gen.this.Choose.chooseInt
229 5384 9391 - 9448 Apply org.make.core.technical.generator.Counts.apply Counts.apply(count, countVerified, countSequence, countSegment)
233 1791 9574 - 9581 Select org.make.core.technical.generator.Counts.count x$11.count
233 2359 9561 - 9561 Select scala.math.Numeric.IntIsIntegral math.this.Numeric.IntIsIntegral
233 5582 9561 - 9561 Select org.scalacheck.Gen.Choose.chooseInt Gen.this.Choose.chooseInt
233 5127 9562 - 9592 Apply org.make.core.technical.generator.EntitiesGen.getMaxCount EntitiesGen.this.getMaxCount(((x$11: org.make.core.technical.generator.Counts) => x$11.count), counters)
233 2312 9519 - 9937 Apply org.scalacheck.Gen.flatMap org.scalacheck.Gen.chooseNum[Int](EntitiesGen.this.getMaxCount(((x$11: org.make.core.technical.generator.Counts) => x$11.count), counters), EntitiesGen.this.SumCounterUpperBound)(math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt).flatMap[org.make.core.technical.generator.Counts](((count: Int) => org.scalacheck.Gen.chooseNum[Int](EntitiesGen.this.getMaxCount(((x$12: org.make.core.technical.generator.Counts) => x$12.verified), counters), count)(math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt).flatMap[org.make.core.technical.generator.Counts](((countVerified: Int) => org.scalacheck.Gen.chooseNum[Int](EntitiesGen.this.getMaxCount(((x$13: org.make.core.technical.generator.Counts) => x$13.sequence), counters), countVerified)(math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt).flatMap[org.make.core.technical.generator.Counts](((countSequence: Int) => org.scalacheck.Gen.chooseNum[Int](EntitiesGen.this.getMaxCount(((x$14: org.make.core.technical.generator.Counts) => x$14.segment), counters), countSequence)(math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt).map[org.make.core.technical.generator.Counts](((countSegment: Int) => Counts.apply(count, countVerified, countSequence, countSegment)))))))))
233 4259 9594 - 9614 Select org.make.core.technical.generator.EntitiesGen.SumCounterUpperBound EntitiesGen.this.SumCounterUpperBound
234 4013 9652 - 9652 Select org.scalacheck.Gen.Choose.chooseInt Gen.this.Choose.chooseInt
234 2619 9653 - 9686 Apply org.make.core.technical.generator.EntitiesGen.getMaxCount EntitiesGen.this.getMaxCount(((x$12: org.make.core.technical.generator.Counts) => x$12.verified), counters)
234 638 9652 - 9652 Select scala.math.Numeric.IntIsIntegral math.this.Numeric.IntIsIntegral
234 4068 9622 - 9937 Apply org.scalacheck.Gen.flatMap org.scalacheck.Gen.chooseNum[Int](EntitiesGen.this.getMaxCount(((x$12: org.make.core.technical.generator.Counts) => x$12.verified), counters), count)(math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt).flatMap[org.make.core.technical.generator.Counts](((countVerified: Int) => org.scalacheck.Gen.chooseNum[Int](EntitiesGen.this.getMaxCount(((x$13: org.make.core.technical.generator.Counts) => x$13.sequence), counters), countVerified)(math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt).flatMap[org.make.core.technical.generator.Counts](((countSequence: Int) => org.scalacheck.Gen.chooseNum[Int](EntitiesGen.this.getMaxCount(((x$14: org.make.core.technical.generator.Counts) => x$14.segment), counters), countSequence)(math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt).map[org.make.core.technical.generator.Counts](((countSegment: Int) => Counts.apply(count, countVerified, countSequence, countSegment)))))))
234 3601 9665 - 9675 Select org.make.core.technical.generator.Counts.verified x$12.verified
235 4267 9731 - 9731 Select scala.math.Numeric.IntIsIntegral math.this.Numeric.IntIsIntegral
235 2365 9731 - 9731 Select org.scalacheck.Gen.Choose.chooseInt Gen.this.Choose.chooseInt
235 1973 9744 - 9754 Select org.make.core.technical.generator.Counts.sequence x$13.sequence
235 5115 9701 - 9937 Apply org.scalacheck.Gen.flatMap org.scalacheck.Gen.chooseNum[Int](EntitiesGen.this.getMaxCount(((x$13: org.make.core.technical.generator.Counts) => x$13.sequence), counters), countVerified)(math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt).flatMap[org.make.core.technical.generator.Counts](((countSequence: Int) => org.scalacheck.Gen.chooseNum[Int](EntitiesGen.this.getMaxCount(((x$14: org.make.core.technical.generator.Counts) => x$14.segment), counters), countSequence)(math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt).map[org.make.core.technical.generator.Counts](((countSegment: Int) => Counts.apply(count, countVerified, countSequence, countSegment)))))
235 5225 9732 - 9765 Apply org.make.core.technical.generator.EntitiesGen.getMaxCount EntitiesGen.this.getMaxCount(((x$13: org.make.core.technical.generator.Counts) => x$13.sequence), counters)
236 5528 9831 - 9840 Select org.make.core.technical.generator.Counts.segment x$14.segment
236 1482 9818 - 9818 Select scala.math.Numeric.IntIsIntegral math.this.Numeric.IntIsIntegral
236 650 9818 - 9818 Select org.scalacheck.Gen.Choose.chooseInt Gen.this.Choose.chooseInt
236 1927 9788 - 9937 Apply org.scalacheck.Gen.map org.scalacheck.Gen.chooseNum[Int](EntitiesGen.this.getMaxCount(((x$14: org.make.core.technical.generator.Counts) => x$14.segment), counters), countSequence)(math.this.Numeric.IntIsIntegral, Gen.this.Choose.chooseInt).map[org.make.core.technical.generator.Counts](((countSegment: Int) => Counts.apply(count, countVerified, countSequence, countSegment)))
236 3610 9819 - 9851 Apply org.make.core.technical.generator.EntitiesGen.getMaxCount EntitiesGen.this.getMaxCount(((x$14: org.make.core.technical.generator.Counts) => x$14.segment), counters)
237 3894 9880 - 9937 Apply org.make.core.technical.generator.Counts.apply Counts.apply(count, countVerified, countSequence, countSegment)
241 4996 9996 - 13662 Apply org.scalacheck.Gen.flatMap EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((likeItCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((doableCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((platitudeAgreeCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](likeItCounts, doableCounts, platitudeAgreeCounts)).flatMap[org.make.core.proposal.VotingOptions](((agreeCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((doNotUnderstandCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((doNotCareCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((noOpinionCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](doNotUnderstandCounts, doNotCareCounts, noOpinionCounts)).flatMap[org.make.core.proposal.VotingOptions](((neutralCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((noWayCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((impossibleCount: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((platitudeDisagreeCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](noWayCounts, impossibleCount, platitudeDisagreeCounts)).map[org.make.core.proposal.VotingOptions](((disagreeCounts: org.make.core.technical.generator.Counts) => org.make.core.proposal.VotingOptions.apply({ <artifact> val x$1: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Agree, agreeCounts.count, agreeCounts.verified, agreeCounts.sequence, agreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$2: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.LikeIt, likeItCounts.count, likeItCounts.verified, likeItCounts.sequence, likeItCounts.segment); <artifact> val x$3: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Doable, doableCounts.count, doableCounts.verified, doableCounts.sequence, doableCounts.segment); <artifact> val x$4: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeAgree, platitudeAgreeCounts.count, platitudeAgreeCounts.verified, platitudeAgreeCounts.sequence, platitudeAgreeCounts.segment); org.make.core.proposal.AgreeWrapper.apply(x$1, x$2, x$4, x$3) }, { <artifact> val x$5: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Neutral, neutralCounts.count, neutralCounts.verified, neutralCounts.sequence, neutralCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$6: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotUnderstand, doNotUnderstandCounts.count, doNotUnderstandCounts.verified, doNotUnderstandCounts.sequence, doNotUnderstandCounts.segment); <artifact> val x$7: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotCare, doNotCareCounts.count, doNotCareCounts.verified, doNotCareCounts.sequence, doNotCareCounts.segment); <artifact> val x$8: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoOpinion, noOpinionCounts.count, noOpinionCounts.verified, noOpinionCounts.sequence, noOpinionCounts.segment); org.make.core.proposal.NeutralWrapper.apply(x$5, x$8, x$6, x$7) }, { <artifact> val x$9: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Disagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$10: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoWay, noWayCounts.count, noWayCounts.verified, noWayCounts.sequence, noWayCounts.segment); <artifact> val x$11: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Impossible, impossibleCount.count, impossibleCount.verified, impossibleCount.sequence, impossibleCount.segment); <artifact> val x$12: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeDisagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment); org.make.core.proposal.DisagreeWrapper.apply(x$9, x$11, x$10, x$12) })))))))))))))))))))))))))
242 1512 10057 - 13662 Apply org.scalacheck.Gen.flatMap EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((doableCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((platitudeAgreeCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](likeItCounts, doableCounts, platitudeAgreeCounts)).flatMap[org.make.core.proposal.VotingOptions](((agreeCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((doNotUnderstandCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((doNotCareCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((noOpinionCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](doNotUnderstandCounts, doNotCareCounts, noOpinionCounts)).flatMap[org.make.core.proposal.VotingOptions](((neutralCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((noWayCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((impossibleCount: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((platitudeDisagreeCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](noWayCounts, impossibleCount, platitudeDisagreeCounts)).map[org.make.core.proposal.VotingOptions](((disagreeCounts: org.make.core.technical.generator.Counts) => org.make.core.proposal.VotingOptions.apply({ <artifact> val x$1: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Agree, agreeCounts.count, agreeCounts.verified, agreeCounts.sequence, agreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$2: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.LikeIt, likeItCounts.count, likeItCounts.verified, likeItCounts.sequence, likeItCounts.segment); <artifact> val x$3: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Doable, doableCounts.count, doableCounts.verified, doableCounts.sequence, doableCounts.segment); <artifact> val x$4: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeAgree, platitudeAgreeCounts.count, platitudeAgreeCounts.verified, platitudeAgreeCounts.sequence, platitudeAgreeCounts.segment); org.make.core.proposal.AgreeWrapper.apply(x$1, x$2, x$4, x$3) }, { <artifact> val x$5: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Neutral, neutralCounts.count, neutralCounts.verified, neutralCounts.sequence, neutralCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$6: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotUnderstand, doNotUnderstandCounts.count, doNotUnderstandCounts.verified, doNotUnderstandCounts.sequence, doNotUnderstandCounts.segment); <artifact> val x$7: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotCare, doNotCareCounts.count, doNotCareCounts.verified, doNotCareCounts.sequence, doNotCareCounts.segment); <artifact> val x$8: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoOpinion, noOpinionCounts.count, noOpinionCounts.verified, noOpinionCounts.sequence, noOpinionCounts.segment); org.make.core.proposal.NeutralWrapper.apply(x$5, x$8, x$6, x$7) }, { <artifact> val x$9: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Disagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$10: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoWay, noWayCounts.count, noWayCounts.verified, noWayCounts.sequence, noWayCounts.segment); <artifact> val x$11: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Impossible, impossibleCount.count, impossibleCount.verified, impossibleCount.sequence, impossibleCount.segment); <artifact> val x$12: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeDisagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment); org.make.core.proposal.DisagreeWrapper.apply(x$9, x$11, x$10, x$12) })))))))))))))))))))))))
243 3460 10106 - 13662 Apply org.scalacheck.Gen.flatMap EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((platitudeAgreeCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](likeItCounts, doableCounts, platitudeAgreeCounts)).flatMap[org.make.core.proposal.VotingOptions](((agreeCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((doNotUnderstandCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((doNotCareCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((noOpinionCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](doNotUnderstandCounts, doNotCareCounts, noOpinionCounts)).flatMap[org.make.core.proposal.VotingOptions](((neutralCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((noWayCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((impossibleCount: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((platitudeDisagreeCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](noWayCounts, impossibleCount, platitudeDisagreeCounts)).map[org.make.core.proposal.VotingOptions](((disagreeCounts: org.make.core.technical.generator.Counts) => org.make.core.proposal.VotingOptions.apply({ <artifact> val x$1: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Agree, agreeCounts.count, agreeCounts.verified, agreeCounts.sequence, agreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$2: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.LikeIt, likeItCounts.count, likeItCounts.verified, likeItCounts.sequence, likeItCounts.segment); <artifact> val x$3: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Doable, doableCounts.count, doableCounts.verified, doableCounts.sequence, doableCounts.segment); <artifact> val x$4: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeAgree, platitudeAgreeCounts.count, platitudeAgreeCounts.verified, platitudeAgreeCounts.sequence, platitudeAgreeCounts.segment); org.make.core.proposal.AgreeWrapper.apply(x$1, x$2, x$4, x$3) }, { <artifact> val x$5: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Neutral, neutralCounts.count, neutralCounts.verified, neutralCounts.sequence, neutralCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$6: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotUnderstand, doNotUnderstandCounts.count, doNotUnderstandCounts.verified, doNotUnderstandCounts.sequence, doNotUnderstandCounts.segment); <artifact> val x$7: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotCare, doNotCareCounts.count, doNotCareCounts.verified, doNotCareCounts.sequence, doNotCareCounts.segment); <artifact> val x$8: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoOpinion, noOpinionCounts.count, noOpinionCounts.verified, noOpinionCounts.sequence, noOpinionCounts.segment); org.make.core.proposal.NeutralWrapper.apply(x$5, x$8, x$6, x$7) }, { <artifact> val x$9: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Disagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$10: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoWay, noWayCounts.count, noWayCounts.verified, noWayCounts.sequence, noWayCounts.segment); <artifact> val x$11: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Impossible, impossibleCount.count, impossibleCount.verified, impossibleCount.sequence, impossibleCount.segment); <artifact> val x$12: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeDisagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment); org.make.core.proposal.DisagreeWrapper.apply(x$9, x$11, x$10, x$12) })))))))))))))))))))))
244 5536 10195 - 10251 Apply cats.data.NonEmptyList.of cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](likeItCounts, doableCounts, platitudeAgreeCounts)
244 5491 10155 - 13662 Apply org.scalacheck.Gen.flatMap EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](likeItCounts, doableCounts, platitudeAgreeCounts)).flatMap[org.make.core.proposal.VotingOptions](((agreeCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((doNotUnderstandCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((doNotCareCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((noOpinionCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](doNotUnderstandCounts, doNotCareCounts, noOpinionCounts)).flatMap[org.make.core.proposal.VotingOptions](((neutralCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((noWayCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((impossibleCount: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((platitudeDisagreeCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](noWayCounts, impossibleCount, platitudeDisagreeCounts)).map[org.make.core.proposal.VotingOptions](((disagreeCounts: org.make.core.technical.generator.Counts) => org.make.core.proposal.VotingOptions.apply({ <artifact> val x$1: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Agree, agreeCounts.count, agreeCounts.verified, agreeCounts.sequence, agreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$2: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.LikeIt, likeItCounts.count, likeItCounts.verified, likeItCounts.sequence, likeItCounts.segment); <artifact> val x$3: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Doable, doableCounts.count, doableCounts.verified, doableCounts.sequence, doableCounts.segment); <artifact> val x$4: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeAgree, platitudeAgreeCounts.count, platitudeAgreeCounts.verified, platitudeAgreeCounts.sequence, platitudeAgreeCounts.segment); org.make.core.proposal.AgreeWrapper.apply(x$1, x$2, x$4, x$3) }, { <artifact> val x$5: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Neutral, neutralCounts.count, neutralCounts.verified, neutralCounts.sequence, neutralCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$6: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotUnderstand, doNotUnderstandCounts.count, doNotUnderstandCounts.verified, doNotUnderstandCounts.sequence, doNotUnderstandCounts.segment); <artifact> val x$7: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotCare, doNotCareCounts.count, doNotCareCounts.verified, doNotCareCounts.sequence, doNotCareCounts.segment); <artifact> val x$8: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoOpinion, noOpinionCounts.count, noOpinionCounts.verified, noOpinionCounts.sequence, noOpinionCounts.segment); org.make.core.proposal.NeutralWrapper.apply(x$5, x$8, x$6, x$7) }, { <artifact> val x$9: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Disagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$10: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoWay, noWayCounts.count, noWayCounts.verified, noWayCounts.sequence, noWayCounts.segment); <artifact> val x$11: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Impossible, impossibleCount.count, impossibleCount.verified, impossibleCount.sequence, impossibleCount.segment); <artifact> val x$12: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeDisagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment); org.make.core.proposal.DisagreeWrapper.apply(x$9, x$11, x$10, x$12) })))))))))))))))))))
245 1280 10259 - 13662 Apply org.scalacheck.Gen.flatMap EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((doNotUnderstandCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((doNotCareCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((noOpinionCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](doNotUnderstandCounts, doNotCareCounts, noOpinionCounts)).flatMap[org.make.core.proposal.VotingOptions](((neutralCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((noWayCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((impossibleCount: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((platitudeDisagreeCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](noWayCounts, impossibleCount, platitudeDisagreeCounts)).map[org.make.core.proposal.VotingOptions](((disagreeCounts: org.make.core.technical.generator.Counts) => org.make.core.proposal.VotingOptions.apply({ <artifact> val x$1: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Agree, agreeCounts.count, agreeCounts.verified, agreeCounts.sequence, agreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$2: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.LikeIt, likeItCounts.count, likeItCounts.verified, likeItCounts.sequence, likeItCounts.segment); <artifact> val x$3: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Doable, doableCounts.count, doableCounts.verified, doableCounts.sequence, doableCounts.segment); <artifact> val x$4: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeAgree, platitudeAgreeCounts.count, platitudeAgreeCounts.verified, platitudeAgreeCounts.sequence, platitudeAgreeCounts.segment); org.make.core.proposal.AgreeWrapper.apply(x$1, x$2, x$4, x$3) }, { <artifact> val x$5: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Neutral, neutralCounts.count, neutralCounts.verified, neutralCounts.sequence, neutralCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$6: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotUnderstand, doNotUnderstandCounts.count, doNotUnderstandCounts.verified, doNotUnderstandCounts.sequence, doNotUnderstandCounts.segment); <artifact> val x$7: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotCare, doNotCareCounts.count, doNotCareCounts.verified, doNotCareCounts.sequence, doNotCareCounts.segment); <artifact> val x$8: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoOpinion, noOpinionCounts.count, noOpinionCounts.verified, noOpinionCounts.sequence, noOpinionCounts.segment); org.make.core.proposal.NeutralWrapper.apply(x$5, x$8, x$6, x$7) }, { <artifact> val x$9: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Disagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$10: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoWay, noWayCounts.count, noWayCounts.verified, noWayCounts.sequence, noWayCounts.segment); <artifact> val x$11: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Impossible, impossibleCount.count, impossibleCount.verified, impossibleCount.sequence, impossibleCount.segment); <artifact> val x$12: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeDisagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment); org.make.core.proposal.DisagreeWrapper.apply(x$9, x$11, x$10, x$12) })))))))))))))))))
246 3147 10308 - 13662 Apply org.scalacheck.Gen.flatMap EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((doNotCareCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((noOpinionCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](doNotUnderstandCounts, doNotCareCounts, noOpinionCounts)).flatMap[org.make.core.proposal.VotingOptions](((neutralCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((noWayCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((impossibleCount: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((platitudeDisagreeCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](noWayCounts, impossibleCount, platitudeDisagreeCounts)).map[org.make.core.proposal.VotingOptions](((disagreeCounts: org.make.core.technical.generator.Counts) => org.make.core.proposal.VotingOptions.apply({ <artifact> val x$1: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Agree, agreeCounts.count, agreeCounts.verified, agreeCounts.sequence, agreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$2: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.LikeIt, likeItCounts.count, likeItCounts.verified, likeItCounts.sequence, likeItCounts.segment); <artifact> val x$3: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Doable, doableCounts.count, doableCounts.verified, doableCounts.sequence, doableCounts.segment); <artifact> val x$4: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeAgree, platitudeAgreeCounts.count, platitudeAgreeCounts.verified, platitudeAgreeCounts.sequence, platitudeAgreeCounts.segment); org.make.core.proposal.AgreeWrapper.apply(x$1, x$2, x$4, x$3) }, { <artifact> val x$5: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Neutral, neutralCounts.count, neutralCounts.verified, neutralCounts.sequence, neutralCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$6: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotUnderstand, doNotUnderstandCounts.count, doNotUnderstandCounts.verified, doNotUnderstandCounts.sequence, doNotUnderstandCounts.segment); <artifact> val x$7: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotCare, doNotCareCounts.count, doNotCareCounts.verified, doNotCareCounts.sequence, doNotCareCounts.segment); <artifact> val x$8: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoOpinion, noOpinionCounts.count, noOpinionCounts.verified, noOpinionCounts.sequence, noOpinionCounts.segment); org.make.core.proposal.NeutralWrapper.apply(x$5, x$8, x$6, x$7) }, { <artifact> val x$9: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Disagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$10: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoWay, noWayCounts.count, noWayCounts.verified, noWayCounts.sequence, noWayCounts.segment); <artifact> val x$11: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Impossible, impossibleCount.count, impossibleCount.verified, impossibleCount.sequence, impossibleCount.segment); <artifact> val x$12: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeDisagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment); org.make.core.proposal.DisagreeWrapper.apply(x$9, x$11, x$10, x$12) })))))))))))))))
247 5078 10357 - 13662 Apply org.scalacheck.Gen.flatMap EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((noOpinionCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](doNotUnderstandCounts, doNotCareCounts, noOpinionCounts)).flatMap[org.make.core.proposal.VotingOptions](((neutralCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((noWayCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((impossibleCount: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((platitudeDisagreeCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](noWayCounts, impossibleCount, platitudeDisagreeCounts)).map[org.make.core.proposal.VotingOptions](((disagreeCounts: org.make.core.technical.generator.Counts) => org.make.core.proposal.VotingOptions.apply({ <artifact> val x$1: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Agree, agreeCounts.count, agreeCounts.verified, agreeCounts.sequence, agreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$2: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.LikeIt, likeItCounts.count, likeItCounts.verified, likeItCounts.sequence, likeItCounts.segment); <artifact> val x$3: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Doable, doableCounts.count, doableCounts.verified, doableCounts.sequence, doableCounts.segment); <artifact> val x$4: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeAgree, platitudeAgreeCounts.count, platitudeAgreeCounts.verified, platitudeAgreeCounts.sequence, platitudeAgreeCounts.segment); org.make.core.proposal.AgreeWrapper.apply(x$1, x$2, x$4, x$3) }, { <artifact> val x$5: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Neutral, neutralCounts.count, neutralCounts.verified, neutralCounts.sequence, neutralCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$6: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotUnderstand, doNotUnderstandCounts.count, doNotUnderstandCounts.verified, doNotUnderstandCounts.sequence, doNotUnderstandCounts.segment); <artifact> val x$7: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotCare, doNotCareCounts.count, doNotCareCounts.verified, doNotCareCounts.sequence, doNotCareCounts.segment); <artifact> val x$8: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoOpinion, noOpinionCounts.count, noOpinionCounts.verified, noOpinionCounts.sequence, noOpinionCounts.segment); org.make.core.proposal.NeutralWrapper.apply(x$5, x$8, x$6, x$7) }, { <artifact> val x$9: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Disagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$10: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoWay, noWayCounts.count, noWayCounts.verified, noWayCounts.sequence, noWayCounts.segment); <artifact> val x$11: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Impossible, impossibleCount.count, impossibleCount.verified, impossibleCount.sequence, impossibleCount.segment); <artifact> val x$12: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeDisagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment); org.make.core.proposal.DisagreeWrapper.apply(x$9, x$11, x$10, x$12) })))))))))))))
248 1806 10406 - 13662 Apply org.scalacheck.Gen.flatMap EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](doNotUnderstandCounts, doNotCareCounts, noOpinionCounts)).flatMap[org.make.core.proposal.VotingOptions](((neutralCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((noWayCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((impossibleCount: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((platitudeDisagreeCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](noWayCounts, impossibleCount, platitudeDisagreeCounts)).map[org.make.core.proposal.VotingOptions](((disagreeCounts: org.make.core.technical.generator.Counts) => org.make.core.proposal.VotingOptions.apply({ <artifact> val x$1: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Agree, agreeCounts.count, agreeCounts.verified, agreeCounts.sequence, agreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$2: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.LikeIt, likeItCounts.count, likeItCounts.verified, likeItCounts.sequence, likeItCounts.segment); <artifact> val x$3: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Doable, doableCounts.count, doableCounts.verified, doableCounts.sequence, doableCounts.segment); <artifact> val x$4: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeAgree, platitudeAgreeCounts.count, platitudeAgreeCounts.verified, platitudeAgreeCounts.sequence, platitudeAgreeCounts.segment); org.make.core.proposal.AgreeWrapper.apply(x$1, x$2, x$4, x$3) }, { <artifact> val x$5: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Neutral, neutralCounts.count, neutralCounts.verified, neutralCounts.sequence, neutralCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$6: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotUnderstand, doNotUnderstandCounts.count, doNotUnderstandCounts.verified, doNotUnderstandCounts.sequence, doNotUnderstandCounts.segment); <artifact> val x$7: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotCare, doNotCareCounts.count, doNotCareCounts.verified, doNotCareCounts.sequence, doNotCareCounts.segment); <artifact> val x$8: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoOpinion, noOpinionCounts.count, noOpinionCounts.verified, noOpinionCounts.sequence, noOpinionCounts.segment); org.make.core.proposal.NeutralWrapper.apply(x$5, x$8, x$6, x$7) }, { <artifact> val x$9: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Disagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$10: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoWay, noWayCounts.count, noWayCounts.verified, noWayCounts.sequence, noWayCounts.segment); <artifact> val x$11: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Impossible, impossibleCount.count, impossibleCount.verified, impossibleCount.sequence, impossibleCount.segment); <artifact> val x$12: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeDisagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment); org.make.core.proposal.DisagreeWrapper.apply(x$9, x$11, x$10, x$12) })))))))))))
248 3564 10446 - 10509 Apply cats.data.NonEmptyList.of cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](doNotUnderstandCounts, doNotCareCounts, noOpinionCounts)
249 2920 10517 - 13662 Apply org.scalacheck.Gen.flatMap EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((noWayCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((impossibleCount: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((platitudeDisagreeCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](noWayCounts, impossibleCount, platitudeDisagreeCounts)).map[org.make.core.proposal.VotingOptions](((disagreeCounts: org.make.core.technical.generator.Counts) => org.make.core.proposal.VotingOptions.apply({ <artifact> val x$1: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Agree, agreeCounts.count, agreeCounts.verified, agreeCounts.sequence, agreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$2: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.LikeIt, likeItCounts.count, likeItCounts.verified, likeItCounts.sequence, likeItCounts.segment); <artifact> val x$3: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Doable, doableCounts.count, doableCounts.verified, doableCounts.sequence, doableCounts.segment); <artifact> val x$4: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeAgree, platitudeAgreeCounts.count, platitudeAgreeCounts.verified, platitudeAgreeCounts.sequence, platitudeAgreeCounts.segment); org.make.core.proposal.AgreeWrapper.apply(x$1, x$2, x$4, x$3) }, { <artifact> val x$5: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Neutral, neutralCounts.count, neutralCounts.verified, neutralCounts.sequence, neutralCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$6: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotUnderstand, doNotUnderstandCounts.count, doNotUnderstandCounts.verified, doNotUnderstandCounts.sequence, doNotUnderstandCounts.segment); <artifact> val x$7: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotCare, doNotCareCounts.count, doNotCareCounts.verified, doNotCareCounts.sequence, doNotCareCounts.segment); <artifact> val x$8: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoOpinion, noOpinionCounts.count, noOpinionCounts.verified, noOpinionCounts.sequence, noOpinionCounts.segment); org.make.core.proposal.NeutralWrapper.apply(x$5, x$8, x$6, x$7) }, { <artifact> val x$9: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Disagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$10: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoWay, noWayCounts.count, noWayCounts.verified, noWayCounts.sequence, noWayCounts.segment); <artifact> val x$11: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Impossible, impossibleCount.count, impossibleCount.verified, impossibleCount.sequence, impossibleCount.segment); <artifact> val x$12: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeDisagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment); org.make.core.proposal.DisagreeWrapper.apply(x$9, x$11, x$10, x$12) })))))))))
250 4879 10566 - 13662 Apply org.scalacheck.Gen.flatMap EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((impossibleCount: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((platitudeDisagreeCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](noWayCounts, impossibleCount, platitudeDisagreeCounts)).map[org.make.core.proposal.VotingOptions](((disagreeCounts: org.make.core.technical.generator.Counts) => org.make.core.proposal.VotingOptions.apply({ <artifact> val x$1: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Agree, agreeCounts.count, agreeCounts.verified, agreeCounts.sequence, agreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$2: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.LikeIt, likeItCounts.count, likeItCounts.verified, likeItCounts.sequence, likeItCounts.segment); <artifact> val x$3: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Doable, doableCounts.count, doableCounts.verified, doableCounts.sequence, doableCounts.segment); <artifact> val x$4: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeAgree, platitudeAgreeCounts.count, platitudeAgreeCounts.verified, platitudeAgreeCounts.sequence, platitudeAgreeCounts.segment); org.make.core.proposal.AgreeWrapper.apply(x$1, x$2, x$4, x$3) }, { <artifact> val x$5: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Neutral, neutralCounts.count, neutralCounts.verified, neutralCounts.sequence, neutralCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$6: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotUnderstand, doNotUnderstandCounts.count, doNotUnderstandCounts.verified, doNotUnderstandCounts.sequence, doNotUnderstandCounts.segment); <artifact> val x$7: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotCare, doNotCareCounts.count, doNotCareCounts.verified, doNotCareCounts.sequence, doNotCareCounts.segment); <artifact> val x$8: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoOpinion, noOpinionCounts.count, noOpinionCounts.verified, noOpinionCounts.sequence, noOpinionCounts.segment); org.make.core.proposal.NeutralWrapper.apply(x$5, x$8, x$6, x$7) }, { <artifact> val x$9: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Disagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$10: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoWay, noWayCounts.count, noWayCounts.verified, noWayCounts.sequence, noWayCounts.segment); <artifact> val x$11: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Impossible, impossibleCount.count, impossibleCount.verified, impossibleCount.sequence, impossibleCount.segment); <artifact> val x$12: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeDisagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment); org.make.core.proposal.DisagreeWrapper.apply(x$9, x$11, x$10, x$12) })))))))
251 1503 10615 - 13662 Apply org.scalacheck.Gen.flatMap EntitiesGen.this.genSimpleCounts.flatMap[org.make.core.proposal.VotingOptions](((platitudeDisagreeCounts: org.make.core.technical.generator.Counts) => EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](noWayCounts, impossibleCount, platitudeDisagreeCounts)).map[org.make.core.proposal.VotingOptions](((disagreeCounts: org.make.core.technical.generator.Counts) => org.make.core.proposal.VotingOptions.apply({ <artifact> val x$1: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Agree, agreeCounts.count, agreeCounts.verified, agreeCounts.sequence, agreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$2: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.LikeIt, likeItCounts.count, likeItCounts.verified, likeItCounts.sequence, likeItCounts.segment); <artifact> val x$3: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Doable, doableCounts.count, doableCounts.verified, doableCounts.sequence, doableCounts.segment); <artifact> val x$4: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeAgree, platitudeAgreeCounts.count, platitudeAgreeCounts.verified, platitudeAgreeCounts.sequence, platitudeAgreeCounts.segment); org.make.core.proposal.AgreeWrapper.apply(x$1, x$2, x$4, x$3) }, { <artifact> val x$5: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Neutral, neutralCounts.count, neutralCounts.verified, neutralCounts.sequence, neutralCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$6: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotUnderstand, doNotUnderstandCounts.count, doNotUnderstandCounts.verified, doNotUnderstandCounts.sequence, doNotUnderstandCounts.segment); <artifact> val x$7: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotCare, doNotCareCounts.count, doNotCareCounts.verified, doNotCareCounts.sequence, doNotCareCounts.segment); <artifact> val x$8: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoOpinion, noOpinionCounts.count, noOpinionCounts.verified, noOpinionCounts.sequence, noOpinionCounts.segment); org.make.core.proposal.NeutralWrapper.apply(x$5, x$8, x$6, x$7) }, { <artifact> val x$9: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Disagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$10: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoWay, noWayCounts.count, noWayCounts.verified, noWayCounts.sequence, noWayCounts.segment); <artifact> val x$11: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Impossible, impossibleCount.count, impossibleCount.verified, impossibleCount.sequence, impossibleCount.segment); <artifact> val x$12: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeDisagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment); org.make.core.proposal.DisagreeWrapper.apply(x$9, x$11, x$10, x$12) })))))
252 1488 10704 - 10765 Apply cats.data.NonEmptyList.of cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](noWayCounts, impossibleCount, platitudeDisagreeCounts)
252 3448 10664 - 13662 Apply org.scalacheck.Gen.map EntitiesGen.this.genSumCounts(cats.data.NonEmptyList.of[org.make.core.technical.generator.Counts](noWayCounts, impossibleCount, platitudeDisagreeCounts)).map[org.make.core.proposal.VotingOptions](((disagreeCounts: org.make.core.technical.generator.Counts) => org.make.core.proposal.VotingOptions.apply({ <artifact> val x$1: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Agree, agreeCounts.count, agreeCounts.verified, agreeCounts.sequence, agreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$2: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.LikeIt, likeItCounts.count, likeItCounts.verified, likeItCounts.sequence, likeItCounts.segment); <artifact> val x$3: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Doable, doableCounts.count, doableCounts.verified, doableCounts.sequence, doableCounts.segment); <artifact> val x$4: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeAgree, platitudeAgreeCounts.count, platitudeAgreeCounts.verified, platitudeAgreeCounts.sequence, platitudeAgreeCounts.segment); org.make.core.proposal.AgreeWrapper.apply(x$1, x$2, x$4, x$3) }, { <artifact> val x$5: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Neutral, neutralCounts.count, neutralCounts.verified, neutralCounts.sequence, neutralCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$6: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotUnderstand, doNotUnderstandCounts.count, doNotUnderstandCounts.verified, doNotUnderstandCounts.sequence, doNotUnderstandCounts.segment); <artifact> val x$7: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotCare, doNotCareCounts.count, doNotCareCounts.verified, doNotCareCounts.sequence, doNotCareCounts.segment); <artifact> val x$8: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoOpinion, noOpinionCounts.count, noOpinionCounts.verified, noOpinionCounts.sequence, noOpinionCounts.segment); org.make.core.proposal.NeutralWrapper.apply(x$5, x$8, x$6, x$7) }, { <artifact> val x$9: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Disagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$10: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoWay, noWayCounts.count, noWayCounts.verified, noWayCounts.sequence, noWayCounts.segment); <artifact> val x$11: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Impossible, impossibleCount.count, impossibleCount.verified, impossibleCount.sequence, impossibleCount.segment); <artifact> val x$12: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeDisagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment); org.make.core.proposal.DisagreeWrapper.apply(x$9, x$11, x$10, x$12) })))
253 5555 10779 - 13662 Apply org.make.core.proposal.VotingOptions.apply org.make.core.proposal.VotingOptions.apply({ <artifact> val x$1: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Agree, agreeCounts.count, agreeCounts.verified, agreeCounts.sequence, agreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$2: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.LikeIt, likeItCounts.count, likeItCounts.verified, likeItCounts.sequence, likeItCounts.segment); <artifact> val x$3: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Doable, doableCounts.count, doableCounts.verified, doableCounts.sequence, doableCounts.segment); <artifact> val x$4: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeAgree, platitudeAgreeCounts.count, platitudeAgreeCounts.verified, platitudeAgreeCounts.sequence, platitudeAgreeCounts.segment); org.make.core.proposal.AgreeWrapper.apply(x$1, x$2, x$4, x$3) }, { <artifact> val x$5: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Neutral, neutralCounts.count, neutralCounts.verified, neutralCounts.sequence, neutralCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$6: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotUnderstand, doNotUnderstandCounts.count, doNotUnderstandCounts.verified, doNotUnderstandCounts.sequence, doNotUnderstandCounts.segment); <artifact> val x$7: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotCare, doNotCareCounts.count, doNotCareCounts.verified, doNotCareCounts.sequence, doNotCareCounts.segment); <artifact> val x$8: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoOpinion, noOpinionCounts.count, noOpinionCounts.verified, noOpinionCounts.sequence, noOpinionCounts.segment); org.make.core.proposal.NeutralWrapper.apply(x$5, x$8, x$6, x$7) }, { <artifact> val x$9: org.make.core.proposal.Vote = org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Disagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment, org.make.core.proposal.Vote.apply$default$6); <artifact> val x$10: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoWay, noWayCounts.count, noWayCounts.verified, noWayCounts.sequence, noWayCounts.segment); <artifact> val x$11: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Impossible, impossibleCount.count, impossibleCount.verified, impossibleCount.sequence, impossibleCount.segment); <artifact> val x$12: org.make.core.proposal.Qualification = org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeDisagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment); org.make.core.proposal.DisagreeWrapper.apply(x$9, x$11, x$10, x$12) })
254 3561 10800 - 11724 Apply org.make.core.proposal.AgreeWrapper.apply org.make.core.proposal.AgreeWrapper.apply(x$1, x$2, x$4, x$3)
255 5474 10829 - 11053 Apply org.make.core.proposal.Vote.apply org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Agree, agreeCounts.count, agreeCounts.verified, agreeCounts.sequence, agreeCounts.segment, org.make.core.proposal.Vote.apply$default$6)
255 2357 10829 - 10829 Select org.make.core.proposal.Vote.apply$default$6 org.make.core.proposal.Vote.apply$default$6
256 491 10851 - 10864 Select org.make.core.proposal.VoteKey.Agree org.make.core.proposal.VoteKey.Agree
257 3823 10884 - 10901 Select org.make.core.technical.generator.Counts.count agreeCounts.count
258 1934 10929 - 10949 Select org.make.core.technical.generator.Counts.verified agreeCounts.verified
259 5062 10977 - 10997 Select org.make.core.technical.generator.Counts.sequence agreeCounts.sequence
260 4075 11024 - 11043 Select org.make.core.technical.generator.Counts.segment agreeCounts.segment
262 5068 11072 - 11258 Apply org.make.core.proposal.Qualification.apply org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.LikeIt, likeItCounts.count, likeItCounts.verified, likeItCounts.sequence, likeItCounts.segment)
263 3438 11097 - 11120 Select org.make.core.proposal.QualificationKey.LikeIt org.make.core.proposal.QualificationKey.LikeIt
264 1436 11132 - 11150 Select org.make.core.technical.generator.Counts.count likeItCounts.count
265 437 11162 - 11183 Select org.make.core.technical.generator.Counts.verified likeItCounts.verified
266 4011 11195 - 11216 Select org.make.core.technical.generator.Counts.sequence likeItCounts.sequence
267 1882 11228 - 11248 Select org.make.core.technical.generator.Counts.segment likeItCounts.segment
269 646 11277 - 11463 Apply org.make.core.proposal.Qualification.apply org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Doable, doableCounts.count, doableCounts.verified, doableCounts.sequence, doableCounts.segment)
270 3137 11302 - 11325 Select org.make.core.proposal.QualificationKey.Doable org.make.core.proposal.QualificationKey.Doable
271 2294 11337 - 11355 Select org.make.core.technical.generator.Counts.count doableCounts.count
272 5641 11367 - 11388 Select org.make.core.technical.generator.Counts.verified doableCounts.verified
273 3693 11400 - 11421 Select org.make.core.technical.generator.Counts.sequence doableCounts.sequence
274 1446 11433 - 11453 Select org.make.core.technical.generator.Counts.segment doableCounts.segment
276 5594 11490 - 11716 Apply org.make.core.proposal.Qualification.apply org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeAgree, platitudeAgreeCounts.count, platitudeAgreeCounts.verified, platitudeAgreeCounts.sequence, platitudeAgreeCounts.segment)
277 3960 11515 - 11546 Select org.make.core.proposal.QualificationKey.PlatitudeAgree org.make.core.proposal.QualificationKey.PlatitudeAgree
278 1923 11558 - 11584 Select org.make.core.technical.generator.Counts.count platitudeAgreeCounts.count
279 5079 11596 - 11625 Select org.make.core.technical.generator.Counts.verified platitudeAgreeCounts.verified
280 3093 11637 - 11666 Select org.make.core.technical.generator.Counts.sequence platitudeAgreeCounts.sequence
281 2307 11678 - 11706 Select org.make.core.technical.generator.Counts.segment platitudeAgreeCounts.segment
284 5403 11732 - 12710 Apply org.make.core.proposal.NeutralWrapper.apply org.make.core.proposal.NeutralWrapper.apply(x$5, x$8, x$6, x$7)
285 2232 11763 - 11997 Apply org.make.core.proposal.Vote.apply org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Neutral, neutralCounts.count, neutralCounts.verified, neutralCounts.sequence, neutralCounts.segment, org.make.core.proposal.Vote.apply$default$6)
285 3293 11763 - 11763 Select org.make.core.proposal.Vote.apply$default$6 org.make.core.proposal.Vote.apply$default$6
286 1457 11785 - 11800 Select org.make.core.proposal.VoteKey.Neutral org.make.core.proposal.VoteKey.Neutral
287 568 11820 - 11839 Select org.make.core.technical.generator.Counts.count neutralCounts.count
288 3970 11867 - 11889 Select org.make.core.technical.generator.Counts.verified neutralCounts.verified
289 1863 11917 - 11939 Select org.make.core.technical.generator.Counts.sequence neutralCounts.sequence
290 5177 11966 - 11987 Select org.make.core.technical.generator.Counts.segment neutralCounts.segment
292 1875 12025 - 12256 Apply org.make.core.proposal.Qualification.apply org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotUnderstand, doNotUnderstandCounts.count, doNotUnderstandCounts.verified, doNotUnderstandCounts.sequence, doNotUnderstandCounts.segment)
293 5467 12050 - 12082 Select org.make.core.proposal.QualificationKey.DoNotUnderstand org.make.core.proposal.QualificationKey.DoNotUnderstand
294 3570 12094 - 12121 Select org.make.core.technical.generator.Counts.count doNotUnderstandCounts.count
295 1553 12133 - 12163 Select org.make.core.technical.generator.Counts.verified doNotUnderstandCounts.verified
296 4944 12175 - 12205 Select org.make.core.technical.generator.Counts.sequence doNotUnderstandCounts.sequence
297 3908 12217 - 12246 Select org.make.core.technical.generator.Counts.segment doNotUnderstandCounts.segment
299 1442 12278 - 12479 Apply org.make.core.proposal.Qualification.apply org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.DoNotCare, doNotCareCounts.count, doNotCareCounts.verified, doNotCareCounts.sequence, doNotCareCounts.segment)
300 5183 12303 - 12329 Select org.make.core.proposal.QualificationKey.DoNotCare org.make.core.proposal.QualificationKey.DoNotCare
301 3083 12341 - 12362 Select org.make.core.technical.generator.Counts.count doNotCareCounts.count
302 2244 12374 - 12398 Select org.make.core.technical.generator.Counts.verified doNotCareCounts.verified
303 5479 12410 - 12434 Select org.make.core.technical.generator.Counts.sequence doNotCareCounts.sequence
304 3521 12446 - 12469 Select org.make.core.technical.generator.Counts.segment doNotCareCounts.segment
306 1094 12501 - 12702 Apply org.make.core.proposal.Qualification.apply org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoOpinion, noOpinionCounts.count, noOpinionCounts.verified, noOpinionCounts.sequence, noOpinionCounts.segment)
307 4718 12526 - 12552 Select org.make.core.proposal.QualificationKey.NoOpinion org.make.core.proposal.QualificationKey.NoOpinion
308 3918 12564 - 12585 Select org.make.core.technical.generator.Counts.count noOpinionCounts.count
309 1885 12597 - 12621 Select org.make.core.technical.generator.Counts.verified noOpinionCounts.verified
310 5134 12633 - 12657 Select org.make.core.technical.generator.Counts.sequence noOpinionCounts.sequence
311 3090 12669 - 12692 Select org.make.core.technical.generator.Counts.segment noOpinionCounts.segment
314 1269 12718 - 13656 Apply org.make.core.proposal.DisagreeWrapper.apply org.make.core.proposal.DisagreeWrapper.apply(x$9, x$11, x$10, x$12)
315 3367 12750 - 12989 Apply org.make.core.proposal.Vote.apply org.make.core.proposal.Vote.apply(org.make.core.proposal.VoteKey.Disagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment, org.make.core.proposal.Vote.apply$default$6)
315 5008 12750 - 12750 Select org.make.core.proposal.Vote.apply$default$6 org.make.core.proposal.Vote.apply$default$6
316 3527 12772 - 12788 Select org.make.core.proposal.VoteKey.Disagree org.make.core.proposal.VoteKey.Disagree
317 1715 12808 - 12828 Select org.make.core.technical.generator.Counts.count disagreeCounts.count
318 4725 12856 - 12879 Select org.make.core.technical.generator.Counts.verified disagreeCounts.verified
319 3968 12907 - 12930 Select org.make.core.technical.generator.Counts.sequence disagreeCounts.sequence
320 1813 12957 - 12979 Select org.make.core.technical.generator.Counts.segment disagreeCounts.segment
322 3904 13007 - 13188 Apply org.make.core.proposal.Qualification.apply org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.NoWay, noWayCounts.count, noWayCounts.verified, noWayCounts.sequence, noWayCounts.segment)
323 1101 13032 - 13054 Select org.make.core.proposal.QualificationKey.NoWay org.make.core.proposal.QualificationKey.NoWay
324 5599 13066 - 13083 Select org.make.core.technical.generator.Counts.count noWayCounts.count
325 3466 13095 - 13115 Select org.make.core.technical.generator.Counts.verified noWayCounts.verified
326 1393 13127 - 13147 Select org.make.core.technical.generator.Counts.sequence noWayCounts.sequence
327 5001 13159 - 13178 Select org.make.core.technical.generator.Counts.segment noWayCounts.segment
329 3517 13211 - 13413 Apply org.make.core.proposal.Qualification.apply org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.Impossible, impossibleCount.count, impossibleCount.verified, impossibleCount.sequence, impossibleCount.segment)
330 1986 13236 - 13263 Select org.make.core.proposal.QualificationKey.Impossible org.make.core.proposal.QualificationKey.Impossible
331 5262 13275 - 13296 Select org.make.core.technical.generator.Counts.count impossibleCount.count
332 3044 13308 - 13332 Select org.make.core.technical.generator.Counts.verified impossibleCount.verified
333 1333 13344 - 13368 Select org.make.core.technical.generator.Counts.sequence impossibleCount.sequence
334 5545 13380 - 13403 Select org.make.core.technical.generator.Counts.segment impossibleCount.segment
336 3056 13443 - 13648 Apply org.make.core.proposal.Qualification.apply org.make.core.proposal.Qualification.apply(org.make.core.proposal.QualificationKey.PlatitudeDisagree, disagreeCounts.count, disagreeCounts.verified, disagreeCounts.sequence, disagreeCounts.segment)
337 1651 13468 - 13502 Select org.make.core.proposal.QualificationKey.PlatitudeDisagree org.make.core.proposal.QualificationKey.PlatitudeDisagree
338 4681 13514 - 13534 Select org.make.core.technical.generator.Counts.count disagreeCounts.count
339 2979 13546 - 13569 Select org.make.core.technical.generator.Counts.verified disagreeCounts.verified
340 1942 13581 - 13604 Select org.make.core.technical.generator.Counts.sequence disagreeCounts.sequence
341 5131 13616 - 13638 Select org.make.core.technical.generator.Counts.segment disagreeCounts.segment
346 3315 13726 - 13946 Apply org.scalacheck.ArbitraryLowPriority.apply org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest org.scalacheck.Arbitrary.apply[org.make.core.proposal.ProposalStatus](org.scalacheck.Gen.frequency[org.make.core.proposal.ProposalStatus](scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalStatus.Pending.type]](10, scalacheck.this.Gen.const[org.make.core.proposal.ProposalStatus.Pending.type](org.make.core.proposal.ProposalStatus.Pending)), scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalStatus.Postponed.type]](5, scalacheck.this.Gen.const[org.make.core.proposal.ProposalStatus.Postponed.type](org.make.core.proposal.ProposalStatus.Postponed)), scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalStatus.Accepted.type]](70, scalacheck.this.Gen.const[org.make.core.proposal.ProposalStatus.Accepted.type](org.make.core.proposal.ProposalStatus.Accepted)), scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalStatus.Refused.type]](14, scalacheck.this.Gen.const[org.make.core.proposal.ProposalStatus.Refused.type](org.make.core.proposal.ProposalStatus.Refused)), scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalStatus.Archived.type]](1, scalacheck.this.Gen.const[org.make.core.proposal.ProposalStatus.Archived.type](org.make.core.proposal.ProposalStatus.Archived))))
347 5034 13741 - 13942 Apply org.scalacheck.Gen.frequency org.scalacheck.Gen.frequency[org.make.core.proposal.ProposalStatus](scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalStatus.Pending.type]](10, scalacheck.this.Gen.const[org.make.core.proposal.ProposalStatus.Pending.type](org.make.core.proposal.ProposalStatus.Pending)), scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalStatus.Postponed.type]](5, scalacheck.this.Gen.const[org.make.core.proposal.ProposalStatus.Postponed.type](org.make.core.proposal.ProposalStatus.Postponed)), scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalStatus.Accepted.type]](70, scalacheck.this.Gen.const[org.make.core.proposal.ProposalStatus.Accepted.type](org.make.core.proposal.ProposalStatus.Accepted)), scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalStatus.Refused.type]](14, scalacheck.this.Gen.const[org.make.core.proposal.ProposalStatus.Refused.type](org.make.core.proposal.ProposalStatus.Refused)), scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalStatus.Archived.type]](1, scalacheck.this.Gen.const[org.make.core.proposal.ProposalStatus.Archived.type](org.make.core.proposal.ProposalStatus.Archived)))
348 1730 13767 - 13789 Select org.make.core.proposal.ProposalStatus.Pending org.make.core.proposal.ProposalStatus.Pending
348 3040 13762 - 13790 Apply scala.Tuple2.apply scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalStatus.Pending.type]](10, scalacheck.this.Gen.const[org.make.core.proposal.ProposalStatus.Pending.type](org.make.core.proposal.ProposalStatus.Pending))
348 2932 13763 - 13765 Literal <nosymbol> 10
348 5090 13767 - 13789 ApplyImplicitView org.scalacheck.Gen.const scalacheck.this.Gen.const[org.make.core.proposal.ProposalStatus.Pending.type](org.make.core.proposal.ProposalStatus.Pending)
349 1465 13798 - 13827 Apply scala.Tuple2.apply scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalStatus.Postponed.type]](5, scalacheck.this.Gen.const[org.make.core.proposal.ProposalStatus.Postponed.type](org.make.core.proposal.ProposalStatus.Postponed))
349 4572 13802 - 13826 Select org.make.core.proposal.ProposalStatus.Postponed org.make.core.proposal.ProposalStatus.Postponed
349 3387 13802 - 13826 ApplyImplicitView org.scalacheck.Gen.const scalacheck.this.Gen.const[org.make.core.proposal.ProposalStatus.Postponed.type](org.make.core.proposal.ProposalStatus.Postponed)
349 1383 13799 - 13800 Literal <nosymbol> 5
350 5098 13835 - 13864 Apply scala.Tuple2.apply scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalStatus.Accepted.type]](70, scalacheck.this.Gen.const[org.make.core.proposal.ProposalStatus.Accepted.type](org.make.core.proposal.ProposalStatus.Accepted))
350 1742 13840 - 13863 ApplyImplicitView org.scalacheck.Gen.const scalacheck.this.Gen.const[org.make.core.proposal.ProposalStatus.Accepted.type](org.make.core.proposal.ProposalStatus.Accepted)
350 4678 13836 - 13838 Literal <nosymbol> 70
350 3032 13840 - 13863 Select org.make.core.proposal.ProposalStatus.Accepted org.make.core.proposal.ProposalStatus.Accepted
351 3304 13873 - 13875 Literal <nosymbol> 14
351 4548 13877 - 13899 ApplyImplicitView org.scalacheck.Gen.const scalacheck.this.Gen.const[org.make.core.proposal.ProposalStatus.Refused.type](org.make.core.proposal.ProposalStatus.Refused)
351 1056 13877 - 13899 Select org.make.core.proposal.ProposalStatus.Refused org.make.core.proposal.ProposalStatus.Refused
351 3397 13872 - 13900 Apply scala.Tuple2.apply scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalStatus.Refused.type]](14, scalacheck.this.Gen.const[org.make.core.proposal.ProposalStatus.Refused.type](org.make.core.proposal.ProposalStatus.Refused))
352 1656 13909 - 13910 Literal <nosymbol> 1
352 2702 13912 - 13935 ApplyImplicitView org.scalacheck.Gen.const scalacheck.this.Gen.const[org.make.core.proposal.ProposalStatus.Archived.type](org.make.core.proposal.ProposalStatus.Archived)
352 4953 13912 - 13935 Select org.make.core.proposal.ProposalStatus.Archived org.make.core.proposal.ProposalStatus.Archived
352 981 13908 - 13936 Apply scala.Tuple2.apply scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalStatus.Archived.type]](1, scalacheck.this.Gen.const[org.make.core.proposal.ProposalStatus.Archived.type](org.make.core.proposal.ProposalStatus.Archived))
356 4896 14006 - 14184 Apply org.scalacheck.ArbitraryLowPriority.apply org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest org.scalacheck.Arbitrary.apply[org.make.core.proposal.ProposalType](org.scalacheck.Gen.frequency[org.make.core.proposal.ProposalType](scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalType.ProposalTypeSubmitted.type]](70, scalacheck.this.Gen.const[org.make.core.proposal.ProposalType.ProposalTypeSubmitted.type](org.make.core.proposal.ProposalType.ProposalTypeSubmitted)), scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalType.ProposalTypeInitial.type]](25, scalacheck.this.Gen.const[org.make.core.proposal.ProposalType.ProposalTypeInitial.type](org.make.core.proposal.ProposalType.ProposalTypeInitial)), scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalType.ProposalTypeExternal.type]](5, scalacheck.this.Gen.const[org.make.core.proposal.ProposalType.ProposalTypeExternal.type](org.make.core.proposal.ProposalType.ProposalTypeExternal))))
357 1462 14021 - 14180 Apply org.scalacheck.Gen.frequency org.scalacheck.Gen.frequency[org.make.core.proposal.ProposalType](scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalType.ProposalTypeSubmitted.type]](70, scalacheck.this.Gen.const[org.make.core.proposal.ProposalType.ProposalTypeSubmitted.type](org.make.core.proposal.ProposalType.ProposalTypeSubmitted)), scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalType.ProposalTypeInitial.type]](25, scalacheck.this.Gen.const[org.make.core.proposal.ProposalType.ProposalTypeInitial.type](org.make.core.proposal.ProposalType.ProposalTypeInitial)), scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalType.ProposalTypeExternal.type]](5, scalacheck.this.Gen.const[org.make.core.proposal.ProposalType.ProposalTypeExternal.type](org.make.core.proposal.ProposalType.ProposalTypeExternal)))
358 3585 14047 - 14081 ApplyImplicitView org.scalacheck.Gen.const scalacheck.this.Gen.const[org.make.core.proposal.ProposalType.ProposalTypeSubmitted.type](org.make.core.proposal.ProposalType.ProposalTypeSubmitted)
358 1345 14043 - 14045 Literal <nosymbol> 70
358 1586 14042 - 14082 Apply scala.Tuple2.apply scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalType.ProposalTypeSubmitted.type]](70, scalacheck.this.Gen.const[org.make.core.proposal.ProposalType.ProposalTypeSubmitted.type](org.make.core.proposal.ProposalType.ProposalTypeSubmitted))
358 4556 14047 - 14081 Select org.make.core.proposal.ProposalType.ProposalTypeSubmitted org.make.core.proposal.ProposalType.ProposalTypeSubmitted
359 5086 14090 - 14128 Apply scala.Tuple2.apply scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalType.ProposalTypeInitial.type]](25, scalacheck.this.Gen.const[org.make.core.proposal.ProposalType.ProposalTypeInitial.type](org.make.core.proposal.ProposalType.ProposalTypeInitial))
359 927 14095 - 14127 ApplyImplicitView org.scalacheck.Gen.const scalacheck.this.Gen.const[org.make.core.proposal.ProposalType.ProposalTypeInitial.type](org.make.core.proposal.ProposalType.ProposalTypeInitial)
359 2850 14095 - 14127 Select org.make.core.proposal.ProposalType.ProposalTypeInitial org.make.core.proposal.ProposalType.ProposalTypeInitial
359 4961 14091 - 14093 Literal <nosymbol> 25
360 4566 14140 - 14173 ApplyImplicitView org.scalacheck.Gen.const scalacheck.this.Gen.const[org.make.core.proposal.ProposalType.ProposalTypeExternal.type](org.make.core.proposal.ProposalType.ProposalTypeExternal)
360 1352 14140 - 14173 Select org.make.core.proposal.ProposalType.ProposalTypeExternal org.make.core.proposal.ProposalType.ProposalTypeExternal
360 3535 14136 - 14174 Apply scala.Tuple2.apply scala.Tuple2.apply[Int, org.scalacheck.Gen[org.make.core.proposal.ProposalType.ProposalTypeExternal.type]](5, scalacheck.this.Gen.const[org.make.core.proposal.ProposalType.ProposalTypeExternal.type](org.make.core.proposal.ProposalType.ProposalTypeExternal))
360 3242 14137 - 14138 Literal <nosymbol> 5
365 1402 14342 - 14342 Select scala.math.Numeric.IntIsIntegral math.this.Numeric.IntIsIntegral
365 3106 14342 - 14342 Select shapeless.Witness.witness0 shapeless.this.Witness.witness0
365 5017 14342 - 14342 Select eu.timepit.refined.api.RefType.refinedRefType api.this.RefType.refinedRefType
365 935 14342 - 14342 TypeApply scala.<:<.refl scala.this.<:<.refl[eu.timepit.refined.types.numeric.PosInt]
365 1213 14342 - 14342 Select shapeless.ops.nat.ToInt.toInt0 nat.this.ToInt.toInt0
365 4508 14342 - 14342 Select scala.math.Numeric.IntIsIntegral math.this.Numeric.IntIsIntegral
365 2869 14318 - 14392 Select scala.util.Either.toOption eu.timepit.refined.api.RefType.applyRef[eu.timepit.refined.types.numeric.PosInt].apply[eu.timepit.refined.api.Refined, Int, eu.timepit.refined.numeric.Positive](org.make.core.BusinessConfig.defaultProposalMaxLength)(scala.this.<:<.refl[eu.timepit.refined.types.numeric.PosInt], api.this.RefType.refinedRefType, numeric.this.Greater.greaterValidate[Int, shapeless.nat._0](internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral), math.this.Numeric.IntIsIntegral)).toOption
365 2447 14342 - 14342 ApplyToImplicitArgs eu.timepit.refined.internal.WitnessAs.natWitnessAs internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral)
365 4743 14342 - 14342 ApplyToImplicitArgs eu.timepit.refined.numeric.Greater.greaterValidate numeric.this.Greater.greaterValidate[Int, shapeless.nat._0](internal.this.WitnessAs.natWitnessAs[Int, shapeless.nat._0](shapeless.this.Witness.witness0, nat.this.ToInt.toInt0, math.this.Numeric.IntIsIntegral), math.this.Numeric.IntIsIntegral)
365 2859 14343 - 14382 Select org.make.core.BusinessConfig.defaultProposalMaxLength org.make.core.BusinessConfig.defaultProposalMaxLength
367 2403 14397 - 16440 Apply org.scalacheck.Gen.flatMap CustomGenerators.LoremIpsumGen.sentence(maxLength).map[String](((sentence: String) => ("Il faut ".+(sentence.toLowerCase()): String))).flatMap[org.make.core.proposal.Proposal](((content: String) => org.scalacheck.Gen.oneOf[org.make.core.user.UserId](users.map[org.make.core.user.UserId](((x$15: org.make.core.user.User) => x$15.userId))).flatMap[org.make.core.proposal.Proposal](((author: org.make.core.user.UserId) => org.scalacheck.Arbitrary.arbitrary[org.make.core.proposal.ProposalStatus](EntitiesGen.this.arbProposalStatus).flatMap[org.make.core.proposal.Proposal](((status: org.make.core.proposal.ProposalStatus) => CustomGenerators.LoremIpsumGen.word.flatMap[org.make.core.proposal.Proposal](((refusalReason: String) => org.scalacheck.Gen.someOf[org.make.core.tag.TagId](tagsIds).flatMap[org.make.core.proposal.Proposal](((tags: scala.collection.Seq[org.make.core.tag.TagId]) => EntitiesGen.this.genProposalVotes.flatMap[org.make.core.proposal.Proposal](((votes: org.make.core.proposal.VotingOptions) => org.scalacheck.Gen.someOf[org.make.core.user.UserId](users.filter(((x$16: org.make.core.user.User) => x$16.userType.==(org.make.core.user.UserType.UserTypeOrganisation))).map[org.make.core.user.UserId](((x$17: org.make.core.user.User) => x$17.userId))).flatMap[org.make.core.proposal.Proposal](((organisationIds: scala.collection.Seq[org.make.core.user.UserId]) => generator.this.`package`.RichGenerators[java.time.ZonedDateTime](org.scalacheck.Gen.calendar.map[java.time.ZonedDateTime](((x$18: java.util.Calendar) => org.make.core.DateHelper.RichCalendar(x$18).toZonedDateTime))).asOption.flatMap[org.make.core.proposal.Proposal](((date: Option[java.time.ZonedDateTime]) => org.scalacheck.Gen.frequency[Boolean](scalacheck.this.Gen.freqTuple[Boolean](scala.Tuple2.apply[Int, Boolean](9, false)), scalacheck.this.Gen.freqTuple[Boolean](scala.Tuple2.apply[Int, Boolean](1, true))).flatMap[org.make.core.proposal.Proposal](((initialProposal: Boolean) => org.scalacheck.Gen.oneOf[Boolean](true, false).flatMap[org.make.core.proposal.Proposal](((isAnonymous: Boolean) => org.scalacheck.Arbitrary.arbitrary[org.make.core.proposal.ProposalType](EntitiesGen.this.arbProposalType).flatMap[org.make.core.proposal.Proposal](((proposalType: org.make.core.proposal.ProposalType) => org.scalacheck.Gen.listOf[org.make.core.proposal.ProposalKeyword](EntitiesGen.this.genKeyword).flatMap[org.make.core.proposal.Proposal](((keywords: List[org.make.core.proposal.ProposalKeyword]) => org.scalacheck.Gen.option[org.make.core.reference.Country](org.scalacheck.Gen.oneOf[org.make.core.reference.Country](question.countries.toList)).flatMap[org.make.core.proposal.Proposal](((country: Option[org.make.core.reference.Country]) => org.scalacheck.Gen.oneOf[org.make.core.reference.Language](question.languages.toList).map[org.make.core.proposal.Proposal](((language: org.make.core.reference.Language) => { <artifact> val x$22: org.make.core.proposal.ProposalId = IdGenerator.uuidGenerator.nextProposalId(); <artifact> val x$23: String = org.make.core.SlugHelper.apply(content); <artifact> val x$24: String = content; <artifact> val x$25: Some[org.make.core.reference.Language] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.reference.Language](language); <artifact> val x$26: None.type = scala.None; <artifact> val x$27: org.make.core.user.UserId = author; <artifact> val x$28: org.make.core.proposal.ProposalStatus = status; <artifact> val x$29: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = if (status.==(org.make.core.proposal.ProposalStatus.Refused)) scala.Some.apply[String](refusalReason) else scala.None; <artifact> val x$30: Seq[org.make.core.tag.TagId] @scala.reflect.internal.annotations.uncheckedBounds = tags.toSeq; <artifact> val x$31: Boolean = isAnonymous; <artifact> val x$32: Some[org.make.core.proposal.VotingOptions] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.VotingOptions](votes); <artifact> val x$33: Seq[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = organisationIds.toSeq; <artifact> val x$34: Some[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.question.QuestionId](question.questionId); <artifact> val x$35: org.make.core.RequestContext = { <artifact> val x$1: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = country; <artifact> val x$2: org.make.core.RequestContextLanguage = org.make.core.RequestContextLanguage.apply(scala.Some.apply[org.make.core.reference.Language](question.languages.head), org.make.core.RequestContextLanguage.apply$default$2, org.make.core.RequestContextLanguage.apply$default$3, org.make.core.RequestContextLanguage.apply$default$4); <artifact> val x$3: Option[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$1; <artifact> val x$4: String = org.make.core.RequestContext.empty.copy$default$2; <artifact> val x$5: org.make.core.session.SessionId = org.make.core.RequestContext.empty.copy$default$3; <artifact> val x$6: Option[org.make.core.session.VisitorId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$4; <artifact> val x$7: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$5; <artifact> val x$8: String = org.make.core.RequestContext.empty.copy$default$6; <artifact> val x$9: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$8; <artifact> val x$10: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$10; <artifact> val x$11: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$11; <artifact> val x$12: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$12; <artifact> val x$13: org.make.core.RequestContextQuestion = org.make.core.RequestContext.empty.copy$default$13; <artifact> val x$14: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$14; <artifact> val x$15: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$15; <artifact> val x$16: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$16; <artifact> val x$17: Option[Map[String,String]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$17; <artifact> val x$18: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$18; <artifact> val x$19: Option[org.make.core.ApplicationName] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$19; <artifact> val x$20: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$20; <artifact> val x$21: Map[String,String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$21; org.make.core.RequestContext.empty.copy(x$3, x$4, x$5, x$6, x$7, x$8, x$1, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$19, x$20, x$21) }; <artifact> val x$36: None.type = scala.None; <artifact> val x$37: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = question.operationId; <artifact> val x$38: org.make.core.proposal.ProposalType = proposalType; <artifact> val x$39: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$40: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$41: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$19: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Accepted).||(status.==(org.make.core.proposal.ProposalStatus.Refused)))); <artifact> val x$42: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$20: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Postponed))); <artifact> val x$43: List[Nothing] @scala.reflect.internal.annotations.uncheckedBounds = scala.`package`.List.empty[Nothing]; <artifact> val x$44: Boolean = initialProposal; <artifact> val x$45: List[org.make.core.proposal.ProposalKeyword] @scala.reflect.internal.annotations.uncheckedBounds = keywords; org.make.core.proposal.Proposal.apply(x$22, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$32, x$31, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45) }))))))))))))))))))))))))))))
368 884 14576 - 14584 Select org.make.core.user.User.userId x$15.userId
368 4538 14537 - 16440 Apply org.scalacheck.Gen.flatMap org.scalacheck.Gen.oneOf[org.make.core.user.UserId](users.map[org.make.core.user.UserId](((x$15: org.make.core.user.User) => x$15.userId))).flatMap[org.make.core.proposal.Proposal](((author: org.make.core.user.UserId) => org.scalacheck.Arbitrary.arbitrary[org.make.core.proposal.ProposalStatus](EntitiesGen.this.arbProposalStatus).flatMap[org.make.core.proposal.Proposal](((status: org.make.core.proposal.ProposalStatus) => CustomGenerators.LoremIpsumGen.word.flatMap[org.make.core.proposal.Proposal](((refusalReason: String) => org.scalacheck.Gen.someOf[org.make.core.tag.TagId](tagsIds).flatMap[org.make.core.proposal.Proposal](((tags: scala.collection.Seq[org.make.core.tag.TagId]) => EntitiesGen.this.genProposalVotes.flatMap[org.make.core.proposal.Proposal](((votes: org.make.core.proposal.VotingOptions) => org.scalacheck.Gen.someOf[org.make.core.user.UserId](users.filter(((x$16: org.make.core.user.User) => x$16.userType.==(org.make.core.user.UserType.UserTypeOrganisation))).map[org.make.core.user.UserId](((x$17: org.make.core.user.User) => x$17.userId))).flatMap[org.make.core.proposal.Proposal](((organisationIds: scala.collection.Seq[org.make.core.user.UserId]) => generator.this.`package`.RichGenerators[java.time.ZonedDateTime](org.scalacheck.Gen.calendar.map[java.time.ZonedDateTime](((x$18: java.util.Calendar) => org.make.core.DateHelper.RichCalendar(x$18).toZonedDateTime))).asOption.flatMap[org.make.core.proposal.Proposal](((date: Option[java.time.ZonedDateTime]) => org.scalacheck.Gen.frequency[Boolean](scalacheck.this.Gen.freqTuple[Boolean](scala.Tuple2.apply[Int, Boolean](9, false)), scalacheck.this.Gen.freqTuple[Boolean](scala.Tuple2.apply[Int, Boolean](1, true))).flatMap[org.make.core.proposal.Proposal](((initialProposal: Boolean) => org.scalacheck.Gen.oneOf[Boolean](true, false).flatMap[org.make.core.proposal.Proposal](((isAnonymous: Boolean) => org.scalacheck.Arbitrary.arbitrary[org.make.core.proposal.ProposalType](EntitiesGen.this.arbProposalType).flatMap[org.make.core.proposal.Proposal](((proposalType: org.make.core.proposal.ProposalType) => org.scalacheck.Gen.listOf[org.make.core.proposal.ProposalKeyword](EntitiesGen.this.genKeyword).flatMap[org.make.core.proposal.Proposal](((keywords: List[org.make.core.proposal.ProposalKeyword]) => org.scalacheck.Gen.option[org.make.core.reference.Country](org.scalacheck.Gen.oneOf[org.make.core.reference.Country](question.countries.toList)).flatMap[org.make.core.proposal.Proposal](((country: Option[org.make.core.reference.Country]) => org.scalacheck.Gen.oneOf[org.make.core.reference.Language](question.languages.toList).map[org.make.core.proposal.Proposal](((language: org.make.core.reference.Language) => { <artifact> val x$22: org.make.core.proposal.ProposalId = IdGenerator.uuidGenerator.nextProposalId(); <artifact> val x$23: String = org.make.core.SlugHelper.apply(content); <artifact> val x$24: String = content; <artifact> val x$25: Some[org.make.core.reference.Language] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.reference.Language](language); <artifact> val x$26: None.type = scala.None; <artifact> val x$27: org.make.core.user.UserId = author; <artifact> val x$28: org.make.core.proposal.ProposalStatus = status; <artifact> val x$29: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = if (status.==(org.make.core.proposal.ProposalStatus.Refused)) scala.Some.apply[String](refusalReason) else scala.None; <artifact> val x$30: Seq[org.make.core.tag.TagId] @scala.reflect.internal.annotations.uncheckedBounds = tags.toSeq; <artifact> val x$31: Boolean = isAnonymous; <artifact> val x$32: Some[org.make.core.proposal.VotingOptions] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.VotingOptions](votes); <artifact> val x$33: Seq[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = organisationIds.toSeq; <artifact> val x$34: Some[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.question.QuestionId](question.questionId); <artifact> val x$35: org.make.core.RequestContext = { <artifact> val x$1: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = country; <artifact> val x$2: org.make.core.RequestContextLanguage = org.make.core.RequestContextLanguage.apply(scala.Some.apply[org.make.core.reference.Language](question.languages.head), org.make.core.RequestContextLanguage.apply$default$2, org.make.core.RequestContextLanguage.apply$default$3, org.make.core.RequestContextLanguage.apply$default$4); <artifact> val x$3: Option[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$1; <artifact> val x$4: String = org.make.core.RequestContext.empty.copy$default$2; <artifact> val x$5: org.make.core.session.SessionId = org.make.core.RequestContext.empty.copy$default$3; <artifact> val x$6: Option[org.make.core.session.VisitorId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$4; <artifact> val x$7: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$5; <artifact> val x$8: String = org.make.core.RequestContext.empty.copy$default$6; <artifact> val x$9: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$8; <artifact> val x$10: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$10; <artifact> val x$11: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$11; <artifact> val x$12: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$12; <artifact> val x$13: org.make.core.RequestContextQuestion = org.make.core.RequestContext.empty.copy$default$13; <artifact> val x$14: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$14; <artifact> val x$15: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$15; <artifact> val x$16: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$16; <artifact> val x$17: Option[Map[String,String]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$17; <artifact> val x$18: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$18; <artifact> val x$19: Option[org.make.core.ApplicationName] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$19; <artifact> val x$20: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$20; <artifact> val x$21: Map[String,String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$21; org.make.core.RequestContext.empty.copy(x$3, x$4, x$5, x$6, x$7, x$8, x$1, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$19, x$20, x$21) }; <artifact> val x$36: None.type = scala.None; <artifact> val x$37: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = question.operationId; <artifact> val x$38: org.make.core.proposal.ProposalType = proposalType; <artifact> val x$39: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$40: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$41: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$19: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Accepted).||(status.==(org.make.core.proposal.ProposalStatus.Refused)))); <artifact> val x$42: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$20: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Postponed))); <artifact> val x$43: List[Nothing] @scala.reflect.internal.annotations.uncheckedBounds = scala.`package`.List.empty[Nothing]; <artifact> val x$44: Boolean = initialProposal; <artifact> val x$45: List[org.make.core.proposal.ProposalKeyword] @scala.reflect.internal.annotations.uncheckedBounds = keywords; org.make.core.proposal.Proposal.apply(x$22, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$32, x$31, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45) }))))))))))))))))))))))))))
368 5028 14566 - 14585 Apply scala.collection.IterableOps.map users.map[org.make.core.user.UserId](((x$15: org.make.core.user.User) => x$15.userId))
369 3055 14621 - 14621 Select org.make.core.technical.generator.EntitiesGen.arbProposalStatus EntitiesGen.this.arbProposalStatus
369 1157 14593 - 16440 Apply org.scalacheck.Gen.flatMap org.scalacheck.Arbitrary.arbitrary[org.make.core.proposal.ProposalStatus](EntitiesGen.this.arbProposalStatus).flatMap[org.make.core.proposal.Proposal](((status: org.make.core.proposal.ProposalStatus) => CustomGenerators.LoremIpsumGen.word.flatMap[org.make.core.proposal.Proposal](((refusalReason: String) => org.scalacheck.Gen.someOf[org.make.core.tag.TagId](tagsIds).flatMap[org.make.core.proposal.Proposal](((tags: scala.collection.Seq[org.make.core.tag.TagId]) => EntitiesGen.this.genProposalVotes.flatMap[org.make.core.proposal.Proposal](((votes: org.make.core.proposal.VotingOptions) => org.scalacheck.Gen.someOf[org.make.core.user.UserId](users.filter(((x$16: org.make.core.user.User) => x$16.userType.==(org.make.core.user.UserType.UserTypeOrganisation))).map[org.make.core.user.UserId](((x$17: org.make.core.user.User) => x$17.userId))).flatMap[org.make.core.proposal.Proposal](((organisationIds: scala.collection.Seq[org.make.core.user.UserId]) => generator.this.`package`.RichGenerators[java.time.ZonedDateTime](org.scalacheck.Gen.calendar.map[java.time.ZonedDateTime](((x$18: java.util.Calendar) => org.make.core.DateHelper.RichCalendar(x$18).toZonedDateTime))).asOption.flatMap[org.make.core.proposal.Proposal](((date: Option[java.time.ZonedDateTime]) => org.scalacheck.Gen.frequency[Boolean](scalacheck.this.Gen.freqTuple[Boolean](scala.Tuple2.apply[Int, Boolean](9, false)), scalacheck.this.Gen.freqTuple[Boolean](scala.Tuple2.apply[Int, Boolean](1, true))).flatMap[org.make.core.proposal.Proposal](((initialProposal: Boolean) => org.scalacheck.Gen.oneOf[Boolean](true, false).flatMap[org.make.core.proposal.Proposal](((isAnonymous: Boolean) => org.scalacheck.Arbitrary.arbitrary[org.make.core.proposal.ProposalType](EntitiesGen.this.arbProposalType).flatMap[org.make.core.proposal.Proposal](((proposalType: org.make.core.proposal.ProposalType) => org.scalacheck.Gen.listOf[org.make.core.proposal.ProposalKeyword](EntitiesGen.this.genKeyword).flatMap[org.make.core.proposal.Proposal](((keywords: List[org.make.core.proposal.ProposalKeyword]) => org.scalacheck.Gen.option[org.make.core.reference.Country](org.scalacheck.Gen.oneOf[org.make.core.reference.Country](question.countries.toList)).flatMap[org.make.core.proposal.Proposal](((country: Option[org.make.core.reference.Country]) => org.scalacheck.Gen.oneOf[org.make.core.reference.Language](question.languages.toList).map[org.make.core.proposal.Proposal](((language: org.make.core.reference.Language) => { <artifact> val x$22: org.make.core.proposal.ProposalId = IdGenerator.uuidGenerator.nextProposalId(); <artifact> val x$23: String = org.make.core.SlugHelper.apply(content); <artifact> val x$24: String = content; <artifact> val x$25: Some[org.make.core.reference.Language] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.reference.Language](language); <artifact> val x$26: None.type = scala.None; <artifact> val x$27: org.make.core.user.UserId = author; <artifact> val x$28: org.make.core.proposal.ProposalStatus = status; <artifact> val x$29: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = if (status.==(org.make.core.proposal.ProposalStatus.Refused)) scala.Some.apply[String](refusalReason) else scala.None; <artifact> val x$30: Seq[org.make.core.tag.TagId] @scala.reflect.internal.annotations.uncheckedBounds = tags.toSeq; <artifact> val x$31: Boolean = isAnonymous; <artifact> val x$32: Some[org.make.core.proposal.VotingOptions] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.VotingOptions](votes); <artifact> val x$33: Seq[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = organisationIds.toSeq; <artifact> val x$34: Some[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.question.QuestionId](question.questionId); <artifact> val x$35: org.make.core.RequestContext = { <artifact> val x$1: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = country; <artifact> val x$2: org.make.core.RequestContextLanguage = org.make.core.RequestContextLanguage.apply(scala.Some.apply[org.make.core.reference.Language](question.languages.head), org.make.core.RequestContextLanguage.apply$default$2, org.make.core.RequestContextLanguage.apply$default$3, org.make.core.RequestContextLanguage.apply$default$4); <artifact> val x$3: Option[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$1; <artifact> val x$4: String = org.make.core.RequestContext.empty.copy$default$2; <artifact> val x$5: org.make.core.session.SessionId = org.make.core.RequestContext.empty.copy$default$3; <artifact> val x$6: Option[org.make.core.session.VisitorId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$4; <artifact> val x$7: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$5; <artifact> val x$8: String = org.make.core.RequestContext.empty.copy$default$6; <artifact> val x$9: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$8; <artifact> val x$10: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$10; <artifact> val x$11: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$11; <artifact> val x$12: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$12; <artifact> val x$13: org.make.core.RequestContextQuestion = org.make.core.RequestContext.empty.copy$default$13; <artifact> val x$14: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$14; <artifact> val x$15: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$15; <artifact> val x$16: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$16; <artifact> val x$17: Option[Map[String,String]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$17; <artifact> val x$18: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$18; <artifact> val x$19: Option[org.make.core.ApplicationName] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$19; <artifact> val x$20: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$20; <artifact> val x$21: Map[String,String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$21; org.make.core.RequestContext.empty.copy(x$3, x$4, x$5, x$6, x$7, x$8, x$1, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$19, x$20, x$21) }; <artifact> val x$36: None.type = scala.None; <artifact> val x$37: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = question.operationId; <artifact> val x$38: org.make.core.proposal.ProposalType = proposalType; <artifact> val x$39: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$40: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$41: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$19: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Accepted).||(status.==(org.make.core.proposal.ProposalStatus.Refused)))); <artifact> val x$42: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$20: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Postponed))); <artifact> val x$43: List[Nothing] @scala.reflect.internal.annotations.uncheckedBounds = scala.`package`.List.empty[Nothing]; <artifact> val x$44: Boolean = initialProposal; <artifact> val x$45: List[org.make.core.proposal.ProposalKeyword] @scala.reflect.internal.annotations.uncheckedBounds = keywords; org.make.core.proposal.Proposal.apply(x$22, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$32, x$31, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45) }))))))))))))))))))))))))
370 2055 14644 - 16440 Apply org.scalacheck.Gen.flatMap CustomGenerators.LoremIpsumGen.word.flatMap[org.make.core.proposal.Proposal](((refusalReason: String) => org.scalacheck.Gen.someOf[org.make.core.tag.TagId](tagsIds).flatMap[org.make.core.proposal.Proposal](((tags: scala.collection.Seq[org.make.core.tag.TagId]) => EntitiesGen.this.genProposalVotes.flatMap[org.make.core.proposal.Proposal](((votes: org.make.core.proposal.VotingOptions) => org.scalacheck.Gen.someOf[org.make.core.user.UserId](users.filter(((x$16: org.make.core.user.User) => x$16.userType.==(org.make.core.user.UserType.UserTypeOrganisation))).map[org.make.core.user.UserId](((x$17: org.make.core.user.User) => x$17.userId))).flatMap[org.make.core.proposal.Proposal](((organisationIds: scala.collection.Seq[org.make.core.user.UserId]) => generator.this.`package`.RichGenerators[java.time.ZonedDateTime](org.scalacheck.Gen.calendar.map[java.time.ZonedDateTime](((x$18: java.util.Calendar) => org.make.core.DateHelper.RichCalendar(x$18).toZonedDateTime))).asOption.flatMap[org.make.core.proposal.Proposal](((date: Option[java.time.ZonedDateTime]) => org.scalacheck.Gen.frequency[Boolean](scalacheck.this.Gen.freqTuple[Boolean](scala.Tuple2.apply[Int, Boolean](9, false)), scalacheck.this.Gen.freqTuple[Boolean](scala.Tuple2.apply[Int, Boolean](1, true))).flatMap[org.make.core.proposal.Proposal](((initialProposal: Boolean) => org.scalacheck.Gen.oneOf[Boolean](true, false).flatMap[org.make.core.proposal.Proposal](((isAnonymous: Boolean) => org.scalacheck.Arbitrary.arbitrary[org.make.core.proposal.ProposalType](EntitiesGen.this.arbProposalType).flatMap[org.make.core.proposal.Proposal](((proposalType: org.make.core.proposal.ProposalType) => org.scalacheck.Gen.listOf[org.make.core.proposal.ProposalKeyword](EntitiesGen.this.genKeyword).flatMap[org.make.core.proposal.Proposal](((keywords: List[org.make.core.proposal.ProposalKeyword]) => org.scalacheck.Gen.option[org.make.core.reference.Country](org.scalacheck.Gen.oneOf[org.make.core.reference.Country](question.countries.toList)).flatMap[org.make.core.proposal.Proposal](((country: Option[org.make.core.reference.Country]) => org.scalacheck.Gen.oneOf[org.make.core.reference.Language](question.languages.toList).map[org.make.core.proposal.Proposal](((language: org.make.core.reference.Language) => { <artifact> val x$22: org.make.core.proposal.ProposalId = IdGenerator.uuidGenerator.nextProposalId(); <artifact> val x$23: String = org.make.core.SlugHelper.apply(content); <artifact> val x$24: String = content; <artifact> val x$25: Some[org.make.core.reference.Language] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.reference.Language](language); <artifact> val x$26: None.type = scala.None; <artifact> val x$27: org.make.core.user.UserId = author; <artifact> val x$28: org.make.core.proposal.ProposalStatus = status; <artifact> val x$29: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = if (status.==(org.make.core.proposal.ProposalStatus.Refused)) scala.Some.apply[String](refusalReason) else scala.None; <artifact> val x$30: Seq[org.make.core.tag.TagId] @scala.reflect.internal.annotations.uncheckedBounds = tags.toSeq; <artifact> val x$31: Boolean = isAnonymous; <artifact> val x$32: Some[org.make.core.proposal.VotingOptions] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.VotingOptions](votes); <artifact> val x$33: Seq[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = organisationIds.toSeq; <artifact> val x$34: Some[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.question.QuestionId](question.questionId); <artifact> val x$35: org.make.core.RequestContext = { <artifact> val x$1: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = country; <artifact> val x$2: org.make.core.RequestContextLanguage = org.make.core.RequestContextLanguage.apply(scala.Some.apply[org.make.core.reference.Language](question.languages.head), org.make.core.RequestContextLanguage.apply$default$2, org.make.core.RequestContextLanguage.apply$default$3, org.make.core.RequestContextLanguage.apply$default$4); <artifact> val x$3: Option[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$1; <artifact> val x$4: String = org.make.core.RequestContext.empty.copy$default$2; <artifact> val x$5: org.make.core.session.SessionId = org.make.core.RequestContext.empty.copy$default$3; <artifact> val x$6: Option[org.make.core.session.VisitorId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$4; <artifact> val x$7: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$5; <artifact> val x$8: String = org.make.core.RequestContext.empty.copy$default$6; <artifact> val x$9: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$8; <artifact> val x$10: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$10; <artifact> val x$11: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$11; <artifact> val x$12: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$12; <artifact> val x$13: org.make.core.RequestContextQuestion = org.make.core.RequestContext.empty.copy$default$13; <artifact> val x$14: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$14; <artifact> val x$15: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$15; <artifact> val x$16: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$16; <artifact> val x$17: Option[Map[String,String]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$17; <artifact> val x$18: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$18; <artifact> val x$19: Option[org.make.core.ApplicationName] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$19; <artifact> val x$20: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$20; <artifact> val x$21: Map[String,String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$21; org.make.core.RequestContext.empty.copy(x$3, x$4, x$5, x$6, x$7, x$8, x$1, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$19, x$20, x$21) }; <artifact> val x$36: None.type = scala.None; <artifact> val x$37: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = question.operationId; <artifact> val x$38: org.make.core.proposal.ProposalType = proposalType; <artifact> val x$39: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$40: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$41: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$19: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Accepted).||(status.==(org.make.core.proposal.ProposalStatus.Refused)))); <artifact> val x$42: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$20: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Postponed))); <artifact> val x$43: List[Nothing] @scala.reflect.internal.annotations.uncheckedBounds = scala.`package`.List.empty[Nothing]; <artifact> val x$44: Boolean = initialProposal; <artifact> val x$45: List[org.make.core.proposal.ProposalKeyword] @scala.reflect.internal.annotations.uncheckedBounds = keywords; org.make.core.proposal.Proposal.apply(x$22, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$32, x$31, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45) }))))))))))))))))))))))
371 4107 14705 - 16440 Apply org.scalacheck.Gen.flatMap org.scalacheck.Gen.someOf[org.make.core.tag.TagId](tagsIds).flatMap[org.make.core.proposal.Proposal](((tags: scala.collection.Seq[org.make.core.tag.TagId]) => EntitiesGen.this.genProposalVotes.flatMap[org.make.core.proposal.Proposal](((votes: org.make.core.proposal.VotingOptions) => org.scalacheck.Gen.someOf[org.make.core.user.UserId](users.filter(((x$16: org.make.core.user.User) => x$16.userType.==(org.make.core.user.UserType.UserTypeOrganisation))).map[org.make.core.user.UserId](((x$17: org.make.core.user.User) => x$17.userId))).flatMap[org.make.core.proposal.Proposal](((organisationIds: scala.collection.Seq[org.make.core.user.UserId]) => generator.this.`package`.RichGenerators[java.time.ZonedDateTime](org.scalacheck.Gen.calendar.map[java.time.ZonedDateTime](((x$18: java.util.Calendar) => org.make.core.DateHelper.RichCalendar(x$18).toZonedDateTime))).asOption.flatMap[org.make.core.proposal.Proposal](((date: Option[java.time.ZonedDateTime]) => org.scalacheck.Gen.frequency[Boolean](scalacheck.this.Gen.freqTuple[Boolean](scala.Tuple2.apply[Int, Boolean](9, false)), scalacheck.this.Gen.freqTuple[Boolean](scala.Tuple2.apply[Int, Boolean](1, true))).flatMap[org.make.core.proposal.Proposal](((initialProposal: Boolean) => org.scalacheck.Gen.oneOf[Boolean](true, false).flatMap[org.make.core.proposal.Proposal](((isAnonymous: Boolean) => org.scalacheck.Arbitrary.arbitrary[org.make.core.proposal.ProposalType](EntitiesGen.this.arbProposalType).flatMap[org.make.core.proposal.Proposal](((proposalType: org.make.core.proposal.ProposalType) => org.scalacheck.Gen.listOf[org.make.core.proposal.ProposalKeyword](EntitiesGen.this.genKeyword).flatMap[org.make.core.proposal.Proposal](((keywords: List[org.make.core.proposal.ProposalKeyword]) => org.scalacheck.Gen.option[org.make.core.reference.Country](org.scalacheck.Gen.oneOf[org.make.core.reference.Country](question.countries.toList)).flatMap[org.make.core.proposal.Proposal](((country: Option[org.make.core.reference.Country]) => org.scalacheck.Gen.oneOf[org.make.core.reference.Language](question.languages.toList).map[org.make.core.proposal.Proposal](((language: org.make.core.reference.Language) => { <artifact> val x$22: org.make.core.proposal.ProposalId = IdGenerator.uuidGenerator.nextProposalId(); <artifact> val x$23: String = org.make.core.SlugHelper.apply(content); <artifact> val x$24: String = content; <artifact> val x$25: Some[org.make.core.reference.Language] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.reference.Language](language); <artifact> val x$26: None.type = scala.None; <artifact> val x$27: org.make.core.user.UserId = author; <artifact> val x$28: org.make.core.proposal.ProposalStatus = status; <artifact> val x$29: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = if (status.==(org.make.core.proposal.ProposalStatus.Refused)) scala.Some.apply[String](refusalReason) else scala.None; <artifact> val x$30: Seq[org.make.core.tag.TagId] @scala.reflect.internal.annotations.uncheckedBounds = tags.toSeq; <artifact> val x$31: Boolean = isAnonymous; <artifact> val x$32: Some[org.make.core.proposal.VotingOptions] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.VotingOptions](votes); <artifact> val x$33: Seq[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = organisationIds.toSeq; <artifact> val x$34: Some[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.question.QuestionId](question.questionId); <artifact> val x$35: org.make.core.RequestContext = { <artifact> val x$1: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = country; <artifact> val x$2: org.make.core.RequestContextLanguage = org.make.core.RequestContextLanguage.apply(scala.Some.apply[org.make.core.reference.Language](question.languages.head), org.make.core.RequestContextLanguage.apply$default$2, org.make.core.RequestContextLanguage.apply$default$3, org.make.core.RequestContextLanguage.apply$default$4); <artifact> val x$3: Option[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$1; <artifact> val x$4: String = org.make.core.RequestContext.empty.copy$default$2; <artifact> val x$5: org.make.core.session.SessionId = org.make.core.RequestContext.empty.copy$default$3; <artifact> val x$6: Option[org.make.core.session.VisitorId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$4; <artifact> val x$7: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$5; <artifact> val x$8: String = org.make.core.RequestContext.empty.copy$default$6; <artifact> val x$9: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$8; <artifact> val x$10: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$10; <artifact> val x$11: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$11; <artifact> val x$12: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$12; <artifact> val x$13: org.make.core.RequestContextQuestion = org.make.core.RequestContext.empty.copy$default$13; <artifact> val x$14: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$14; <artifact> val x$15: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$15; <artifact> val x$16: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$16; <artifact> val x$17: Option[Map[String,String]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$17; <artifact> val x$18: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$18; <artifact> val x$19: Option[org.make.core.ApplicationName] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$19; <artifact> val x$20: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$20; <artifact> val x$21: Map[String,String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$21; org.make.core.RequestContext.empty.copy(x$3, x$4, x$5, x$6, x$7, x$8, x$1, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$19, x$20, x$21) }; <artifact> val x$36: None.type = scala.None; <artifact> val x$37: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = question.operationId; <artifact> val x$38: org.make.core.proposal.ProposalType = proposalType; <artifact> val x$39: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$40: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$41: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$19: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Accepted).||(status.==(org.make.core.proposal.ProposalStatus.Refused)))); <artifact> val x$42: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$20: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Postponed))); <artifact> val x$43: List[Nothing] @scala.reflect.internal.annotations.uncheckedBounds = scala.`package`.List.empty[Nothing]; <artifact> val x$44: Boolean = initialProposal; <artifact> val x$45: List[org.make.core.proposal.ProposalKeyword] @scala.reflect.internal.annotations.uncheckedBounds = keywords; org.make.core.proposal.Proposal.apply(x$22, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$32, x$31, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45) }))))))))))))))))))))
372 757 14750 - 16440 Apply org.scalacheck.Gen.flatMap EntitiesGen.this.genProposalVotes.flatMap[org.make.core.proposal.Proposal](((votes: org.make.core.proposal.VotingOptions) => org.scalacheck.Gen.someOf[org.make.core.user.UserId](users.filter(((x$16: org.make.core.user.User) => x$16.userType.==(org.make.core.user.UserType.UserTypeOrganisation))).map[org.make.core.user.UserId](((x$17: org.make.core.user.User) => x$17.userId))).flatMap[org.make.core.proposal.Proposal](((organisationIds: scala.collection.Seq[org.make.core.user.UserId]) => generator.this.`package`.RichGenerators[java.time.ZonedDateTime](org.scalacheck.Gen.calendar.map[java.time.ZonedDateTime](((x$18: java.util.Calendar) => org.make.core.DateHelper.RichCalendar(x$18).toZonedDateTime))).asOption.flatMap[org.make.core.proposal.Proposal](((date: Option[java.time.ZonedDateTime]) => org.scalacheck.Gen.frequency[Boolean](scalacheck.this.Gen.freqTuple[Boolean](scala.Tuple2.apply[Int, Boolean](9, false)), scalacheck.this.Gen.freqTuple[Boolean](scala.Tuple2.apply[Int, Boolean](1, true))).flatMap[org.make.core.proposal.Proposal](((initialProposal: Boolean) => org.scalacheck.Gen.oneOf[Boolean](true, false).flatMap[org.make.core.proposal.Proposal](((isAnonymous: Boolean) => org.scalacheck.Arbitrary.arbitrary[org.make.core.proposal.ProposalType](EntitiesGen.this.arbProposalType).flatMap[org.make.core.proposal.Proposal](((proposalType: org.make.core.proposal.ProposalType) => org.scalacheck.Gen.listOf[org.make.core.proposal.ProposalKeyword](EntitiesGen.this.genKeyword).flatMap[org.make.core.proposal.Proposal](((keywords: List[org.make.core.proposal.ProposalKeyword]) => org.scalacheck.Gen.option[org.make.core.reference.Country](org.scalacheck.Gen.oneOf[org.make.core.reference.Country](question.countries.toList)).flatMap[org.make.core.proposal.Proposal](((country: Option[org.make.core.reference.Country]) => org.scalacheck.Gen.oneOf[org.make.core.reference.Language](question.languages.toList).map[org.make.core.proposal.Proposal](((language: org.make.core.reference.Language) => { <artifact> val x$22: org.make.core.proposal.ProposalId = IdGenerator.uuidGenerator.nextProposalId(); <artifact> val x$23: String = org.make.core.SlugHelper.apply(content); <artifact> val x$24: String = content; <artifact> val x$25: Some[org.make.core.reference.Language] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.reference.Language](language); <artifact> val x$26: None.type = scala.None; <artifact> val x$27: org.make.core.user.UserId = author; <artifact> val x$28: org.make.core.proposal.ProposalStatus = status; <artifact> val x$29: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = if (status.==(org.make.core.proposal.ProposalStatus.Refused)) scala.Some.apply[String](refusalReason) else scala.None; <artifact> val x$30: Seq[org.make.core.tag.TagId] @scala.reflect.internal.annotations.uncheckedBounds = tags.toSeq; <artifact> val x$31: Boolean = isAnonymous; <artifact> val x$32: Some[org.make.core.proposal.VotingOptions] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.VotingOptions](votes); <artifact> val x$33: Seq[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = organisationIds.toSeq; <artifact> val x$34: Some[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.question.QuestionId](question.questionId); <artifact> val x$35: org.make.core.RequestContext = { <artifact> val x$1: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = country; <artifact> val x$2: org.make.core.RequestContextLanguage = org.make.core.RequestContextLanguage.apply(scala.Some.apply[org.make.core.reference.Language](question.languages.head), org.make.core.RequestContextLanguage.apply$default$2, org.make.core.RequestContextLanguage.apply$default$3, org.make.core.RequestContextLanguage.apply$default$4); <artifact> val x$3: Option[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$1; <artifact> val x$4: String = org.make.core.RequestContext.empty.copy$default$2; <artifact> val x$5: org.make.core.session.SessionId = org.make.core.RequestContext.empty.copy$default$3; <artifact> val x$6: Option[org.make.core.session.VisitorId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$4; <artifact> val x$7: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$5; <artifact> val x$8: String = org.make.core.RequestContext.empty.copy$default$6; <artifact> val x$9: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$8; <artifact> val x$10: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$10; <artifact> val x$11: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$11; <artifact> val x$12: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$12; <artifact> val x$13: org.make.core.RequestContextQuestion = org.make.core.RequestContext.empty.copy$default$13; <artifact> val x$14: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$14; <artifact> val x$15: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$15; <artifact> val x$16: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$16; <artifact> val x$17: Option[Map[String,String]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$17; <artifact> val x$18: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$18; <artifact> val x$19: Option[org.make.core.ApplicationName] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$19; <artifact> val x$20: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$20; <artifact> val x$21: Map[String,String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$21; org.make.core.RequestContext.empty.copy(x$3, x$4, x$5, x$6, x$7, x$8, x$1, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$19, x$20, x$21) }; <artifact> val x$36: None.type = scala.None; <artifact> val x$37: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = question.operationId; <artifact> val x$38: org.make.core.proposal.ProposalType = proposalType; <artifact> val x$39: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$40: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$41: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$19: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Accepted).||(status.==(org.make.core.proposal.ProposalStatus.Refused)))); <artifact> val x$42: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$20: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Postponed))); <artifact> val x$43: List[Nothing] @scala.reflect.internal.annotations.uncheckedBounds = scala.`package`.List.empty[Nothing]; <artifact> val x$44: Boolean = initialProposal; <artifact> val x$45: List[org.make.core.proposal.ProposalKeyword] @scala.reflect.internal.annotations.uncheckedBounds = keywords; org.make.core.proposal.Proposal.apply(x$22, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$32, x$31, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45) }))))))))))))))))))
373 2893 14792 - 16440 Apply org.scalacheck.Gen.flatMap org.scalacheck.Gen.someOf[org.make.core.user.UserId](users.filter(((x$16: org.make.core.user.User) => x$16.userType.==(org.make.core.user.UserType.UserTypeOrganisation))).map[org.make.core.user.UserId](((x$17: org.make.core.user.User) => x$17.userId))).flatMap[org.make.core.proposal.Proposal](((organisationIds: scala.collection.Seq[org.make.core.user.UserId]) => generator.this.`package`.RichGenerators[java.time.ZonedDateTime](org.scalacheck.Gen.calendar.map[java.time.ZonedDateTime](((x$18: java.util.Calendar) => org.make.core.DateHelper.RichCalendar(x$18).toZonedDateTime))).asOption.flatMap[org.make.core.proposal.Proposal](((date: Option[java.time.ZonedDateTime]) => org.scalacheck.Gen.frequency[Boolean](scalacheck.this.Gen.freqTuple[Boolean](scala.Tuple2.apply[Int, Boolean](9, false)), scalacheck.this.Gen.freqTuple[Boolean](scala.Tuple2.apply[Int, Boolean](1, true))).flatMap[org.make.core.proposal.Proposal](((initialProposal: Boolean) => org.scalacheck.Gen.oneOf[Boolean](true, false).flatMap[org.make.core.proposal.Proposal](((isAnonymous: Boolean) => org.scalacheck.Arbitrary.arbitrary[org.make.core.proposal.ProposalType](EntitiesGen.this.arbProposalType).flatMap[org.make.core.proposal.Proposal](((proposalType: org.make.core.proposal.ProposalType) => org.scalacheck.Gen.listOf[org.make.core.proposal.ProposalKeyword](EntitiesGen.this.genKeyword).flatMap[org.make.core.proposal.Proposal](((keywords: List[org.make.core.proposal.ProposalKeyword]) => org.scalacheck.Gen.option[org.make.core.reference.Country](org.scalacheck.Gen.oneOf[org.make.core.reference.Country](question.countries.toList)).flatMap[org.make.core.proposal.Proposal](((country: Option[org.make.core.reference.Country]) => org.scalacheck.Gen.oneOf[org.make.core.reference.Language](question.languages.toList).map[org.make.core.proposal.Proposal](((language: org.make.core.reference.Language) => { <artifact> val x$22: org.make.core.proposal.ProposalId = IdGenerator.uuidGenerator.nextProposalId(); <artifact> val x$23: String = org.make.core.SlugHelper.apply(content); <artifact> val x$24: String = content; <artifact> val x$25: Some[org.make.core.reference.Language] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.reference.Language](language); <artifact> val x$26: None.type = scala.None; <artifact> val x$27: org.make.core.user.UserId = author; <artifact> val x$28: org.make.core.proposal.ProposalStatus = status; <artifact> val x$29: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = if (status.==(org.make.core.proposal.ProposalStatus.Refused)) scala.Some.apply[String](refusalReason) else scala.None; <artifact> val x$30: Seq[org.make.core.tag.TagId] @scala.reflect.internal.annotations.uncheckedBounds = tags.toSeq; <artifact> val x$31: Boolean = isAnonymous; <artifact> val x$32: Some[org.make.core.proposal.VotingOptions] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.VotingOptions](votes); <artifact> val x$33: Seq[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = organisationIds.toSeq; <artifact> val x$34: Some[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.question.QuestionId](question.questionId); <artifact> val x$35: org.make.core.RequestContext = { <artifact> val x$1: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = country; <artifact> val x$2: org.make.core.RequestContextLanguage = org.make.core.RequestContextLanguage.apply(scala.Some.apply[org.make.core.reference.Language](question.languages.head), org.make.core.RequestContextLanguage.apply$default$2, org.make.core.RequestContextLanguage.apply$default$3, org.make.core.RequestContextLanguage.apply$default$4); <artifact> val x$3: Option[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$1; <artifact> val x$4: String = org.make.core.RequestContext.empty.copy$default$2; <artifact> val x$5: org.make.core.session.SessionId = org.make.core.RequestContext.empty.copy$default$3; <artifact> val x$6: Option[org.make.core.session.VisitorId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$4; <artifact> val x$7: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$5; <artifact> val x$8: String = org.make.core.RequestContext.empty.copy$default$6; <artifact> val x$9: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$8; <artifact> val x$10: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$10; <artifact> val x$11: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$11; <artifact> val x$12: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$12; <artifact> val x$13: org.make.core.RequestContextQuestion = org.make.core.RequestContext.empty.copy$default$13; <artifact> val x$14: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$14; <artifact> val x$15: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$15; <artifact> val x$16: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$16; <artifact> val x$17: Option[Map[String,String]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$17; <artifact> val x$18: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$18; <artifact> val x$19: Option[org.make.core.ApplicationName] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$19; <artifact> val x$20: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$20; <artifact> val x$21: Map[String,String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$21; org.make.core.RequestContext.empty.copy(x$3, x$4, x$5, x$6, x$7, x$8, x$1, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$19, x$20, x$21) }; <artifact> val x$36: None.type = scala.None; <artifact> val x$37: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = question.operationId; <artifact> val x$38: org.make.core.proposal.ProposalType = proposalType; <artifact> val x$39: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$40: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$41: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$19: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Accepted).||(status.==(org.make.core.proposal.ProposalStatus.Refused)))); <artifact> val x$42: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$20: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Postponed))); <artifact> val x$43: List[Nothing] @scala.reflect.internal.annotations.uncheckedBounds = scala.`package`.List.empty[Nothing]; <artifact> val x$44: Boolean = initialProposal; <artifact> val x$45: List[org.make.core.proposal.ProposalKeyword] @scala.reflect.internal.annotations.uncheckedBounds = keywords; org.make.core.proposal.Proposal.apply(x$22, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$32, x$31, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45) }))))))))))))))))
373 1412 14822 - 14893 Apply scala.collection.IterableOps.map users.filter(((x$16: org.make.core.user.User) => x$16.userType.==(org.make.core.user.UserType.UserTypeOrganisation))).map[org.make.core.user.UserId](((x$17: org.make.core.user.User) => x$17.userId))
373 2384 14884 - 14892 Select org.make.core.user.User.userId x$17.userId
373 1340 14849 - 14878 Select org.make.core.user.UserType.UserTypeOrganisation org.make.core.user.UserType.UserTypeOrganisation
373 4519 14835 - 14878 Apply java.lang.Object.== x$16.userType.==(org.make.core.user.UserType.UserTypeOrganisation)
374 4957 14937 - 14954 Select org.make.core.DateHelper.RichCalendar.toZonedDateTime org.make.core.DateHelper.RichCalendar(x$18).toZonedDateTime
374 2988 14920 - 14955 Apply org.scalacheck.Gen.map org.scalacheck.Gen.calendar.map[java.time.ZonedDateTime](((x$18: java.util.Calendar) => org.make.core.DateHelper.RichCalendar(x$18).toZonedDateTime))
374 3867 14901 - 16440 Apply org.scalacheck.Gen.flatMap generator.this.`package`.RichGenerators[java.time.ZonedDateTime](org.scalacheck.Gen.calendar.map[java.time.ZonedDateTime](((x$18: java.util.Calendar) => org.make.core.DateHelper.RichCalendar(x$18).toZonedDateTime))).asOption.flatMap[org.make.core.proposal.Proposal](((date: Option[java.time.ZonedDateTime]) => org.scalacheck.Gen.frequency[Boolean](scalacheck.this.Gen.freqTuple[Boolean](scala.Tuple2.apply[Int, Boolean](9, false)), scalacheck.this.Gen.freqTuple[Boolean](scala.Tuple2.apply[Int, Boolean](1, true))).flatMap[org.make.core.proposal.Proposal](((initialProposal: Boolean) => org.scalacheck.Gen.oneOf[Boolean](true, false).flatMap[org.make.core.proposal.Proposal](((isAnonymous: Boolean) => org.scalacheck.Arbitrary.arbitrary[org.make.core.proposal.ProposalType](EntitiesGen.this.arbProposalType).flatMap[org.make.core.proposal.Proposal](((proposalType: org.make.core.proposal.ProposalType) => org.scalacheck.Gen.listOf[org.make.core.proposal.ProposalKeyword](EntitiesGen.this.genKeyword).flatMap[org.make.core.proposal.Proposal](((keywords: List[org.make.core.proposal.ProposalKeyword]) => org.scalacheck.Gen.option[org.make.core.reference.Country](org.scalacheck.Gen.oneOf[org.make.core.reference.Country](question.countries.toList)).flatMap[org.make.core.proposal.Proposal](((country: Option[org.make.core.reference.Country]) => org.scalacheck.Gen.oneOf[org.make.core.reference.Language](question.languages.toList).map[org.make.core.proposal.Proposal](((language: org.make.core.reference.Language) => { <artifact> val x$22: org.make.core.proposal.ProposalId = IdGenerator.uuidGenerator.nextProposalId(); <artifact> val x$23: String = org.make.core.SlugHelper.apply(content); <artifact> val x$24: String = content; <artifact> val x$25: Some[org.make.core.reference.Language] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.reference.Language](language); <artifact> val x$26: None.type = scala.None; <artifact> val x$27: org.make.core.user.UserId = author; <artifact> val x$28: org.make.core.proposal.ProposalStatus = status; <artifact> val x$29: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = if (status.==(org.make.core.proposal.ProposalStatus.Refused)) scala.Some.apply[String](refusalReason) else scala.None; <artifact> val x$30: Seq[org.make.core.tag.TagId] @scala.reflect.internal.annotations.uncheckedBounds = tags.toSeq; <artifact> val x$31: Boolean = isAnonymous; <artifact> val x$32: Some[org.make.core.proposal.VotingOptions] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.VotingOptions](votes); <artifact> val x$33: Seq[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = organisationIds.toSeq; <artifact> val x$34: Some[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.question.QuestionId](question.questionId); <artifact> val x$35: org.make.core.RequestContext = { <artifact> val x$1: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = country; <artifact> val x$2: org.make.core.RequestContextLanguage = org.make.core.RequestContextLanguage.apply(scala.Some.apply[org.make.core.reference.Language](question.languages.head), org.make.core.RequestContextLanguage.apply$default$2, org.make.core.RequestContextLanguage.apply$default$3, org.make.core.RequestContextLanguage.apply$default$4); <artifact> val x$3: Option[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$1; <artifact> val x$4: String = org.make.core.RequestContext.empty.copy$default$2; <artifact> val x$5: org.make.core.session.SessionId = org.make.core.RequestContext.empty.copy$default$3; <artifact> val x$6: Option[org.make.core.session.VisitorId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$4; <artifact> val x$7: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$5; <artifact> val x$8: String = org.make.core.RequestContext.empty.copy$default$6; <artifact> val x$9: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$8; <artifact> val x$10: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$10; <artifact> val x$11: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$11; <artifact> val x$12: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$12; <artifact> val x$13: org.make.core.RequestContextQuestion = org.make.core.RequestContext.empty.copy$default$13; <artifact> val x$14: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$14; <artifact> val x$15: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$15; <artifact> val x$16: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$16; <artifact> val x$17: Option[Map[String,String]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$17; <artifact> val x$18: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$18; <artifact> val x$19: Option[org.make.core.ApplicationName] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$19; <artifact> val x$20: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$20; <artifact> val x$21: Map[String,String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$21; org.make.core.RequestContext.empty.copy(x$3, x$4, x$5, x$6, x$7, x$8, x$1, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$19, x$20, x$21) }; <artifact> val x$36: None.type = scala.None; <artifact> val x$37: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = question.operationId; <artifact> val x$38: org.make.core.proposal.ProposalType = proposalType; <artifact> val x$39: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$40: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$41: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$19: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Accepted).||(status.==(org.make.core.proposal.ProposalStatus.Refused)))); <artifact> val x$42: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$20: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Postponed))); <artifact> val x$43: List[Nothing] @scala.reflect.internal.annotations.uncheckedBounds = scala.`package`.List.empty[Nothing]; <artifact> val x$44: Boolean = initialProposal; <artifact> val x$45: List[org.make.core.proposal.ProposalKeyword] @scala.reflect.internal.annotations.uncheckedBounds = keywords; org.make.core.proposal.Proposal.apply(x$22, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$32, x$31, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45) }))))))))))))))
375 3065 15016 - 15025 Apply scala.Tuple2.apply scala.Tuple2.apply[Int, Boolean](1, true)
375 454 14971 - 16440 Apply org.scalacheck.Gen.flatMap org.scalacheck.Gen.frequency[Boolean](scalacheck.this.Gen.freqTuple[Boolean](scala.Tuple2.apply[Int, Boolean](9, false)), scalacheck.this.Gen.freqTuple[Boolean](scala.Tuple2.apply[Int, Boolean](1, true))).flatMap[org.make.core.proposal.Proposal](((initialProposal: Boolean) => org.scalacheck.Gen.oneOf[Boolean](true, false).flatMap[org.make.core.proposal.Proposal](((isAnonymous: Boolean) => org.scalacheck.Arbitrary.arbitrary[org.make.core.proposal.ProposalType](EntitiesGen.this.arbProposalType).flatMap[org.make.core.proposal.Proposal](((proposalType: org.make.core.proposal.ProposalType) => org.scalacheck.Gen.listOf[org.make.core.proposal.ProposalKeyword](EntitiesGen.this.genKeyword).flatMap[org.make.core.proposal.Proposal](((keywords: List[org.make.core.proposal.ProposalKeyword]) => org.scalacheck.Gen.option[org.make.core.reference.Country](org.scalacheck.Gen.oneOf[org.make.core.reference.Country](question.countries.toList)).flatMap[org.make.core.proposal.Proposal](((country: Option[org.make.core.reference.Country]) => org.scalacheck.Gen.oneOf[org.make.core.reference.Language](question.languages.toList).map[org.make.core.proposal.Proposal](((language: org.make.core.reference.Language) => { <artifact> val x$22: org.make.core.proposal.ProposalId = IdGenerator.uuidGenerator.nextProposalId(); <artifact> val x$23: String = org.make.core.SlugHelper.apply(content); <artifact> val x$24: String = content; <artifact> val x$25: Some[org.make.core.reference.Language] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.reference.Language](language); <artifact> val x$26: None.type = scala.None; <artifact> val x$27: org.make.core.user.UserId = author; <artifact> val x$28: org.make.core.proposal.ProposalStatus = status; <artifact> val x$29: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = if (status.==(org.make.core.proposal.ProposalStatus.Refused)) scala.Some.apply[String](refusalReason) else scala.None; <artifact> val x$30: Seq[org.make.core.tag.TagId] @scala.reflect.internal.annotations.uncheckedBounds = tags.toSeq; <artifact> val x$31: Boolean = isAnonymous; <artifact> val x$32: Some[org.make.core.proposal.VotingOptions] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.VotingOptions](votes); <artifact> val x$33: Seq[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = organisationIds.toSeq; <artifact> val x$34: Some[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.question.QuestionId](question.questionId); <artifact> val x$35: org.make.core.RequestContext = { <artifact> val x$1: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = country; <artifact> val x$2: org.make.core.RequestContextLanguage = org.make.core.RequestContextLanguage.apply(scala.Some.apply[org.make.core.reference.Language](question.languages.head), org.make.core.RequestContextLanguage.apply$default$2, org.make.core.RequestContextLanguage.apply$default$3, org.make.core.RequestContextLanguage.apply$default$4); <artifact> val x$3: Option[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$1; <artifact> val x$4: String = org.make.core.RequestContext.empty.copy$default$2; <artifact> val x$5: org.make.core.session.SessionId = org.make.core.RequestContext.empty.copy$default$3; <artifact> val x$6: Option[org.make.core.session.VisitorId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$4; <artifact> val x$7: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$5; <artifact> val x$8: String = org.make.core.RequestContext.empty.copy$default$6; <artifact> val x$9: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$8; <artifact> val x$10: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$10; <artifact> val x$11: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$11; <artifact> val x$12: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$12; <artifact> val x$13: org.make.core.RequestContextQuestion = org.make.core.RequestContext.empty.copy$default$13; <artifact> val x$14: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$14; <artifact> val x$15: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$15; <artifact> val x$16: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$16; <artifact> val x$17: Option[Map[String,String]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$17; <artifact> val x$18: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$18; <artifact> val x$19: Option[org.make.core.ApplicationName] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$19; <artifact> val x$20: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$20; <artifact> val x$21: Map[String,String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$21; org.make.core.RequestContext.empty.copy(x$3, x$4, x$5, x$6, x$7, x$8, x$1, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$19, x$20, x$21) }; <artifact> val x$36: None.type = scala.None; <artifact> val x$37: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = question.operationId; <artifact> val x$38: org.make.core.proposal.ProposalType = proposalType; <artifact> val x$39: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$40: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$41: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$19: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Accepted).||(status.==(org.make.core.proposal.ProposalStatus.Refused)))); <artifact> val x$42: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$20: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Postponed))); <artifact> val x$43: List[Nothing] @scala.reflect.internal.annotations.uncheckedBounds = scala.`package`.List.empty[Nothing]; <artifact> val x$44: Boolean = initialProposal; <artifact> val x$45: List[org.make.core.proposal.ProposalKeyword] @scala.reflect.internal.annotations.uncheckedBounds = keywords; org.make.core.proposal.Proposal.apply(x$22, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$32, x$31, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45) }))))))))))))
375 1348 15016 - 15025 ApplyImplicitView org.scalacheck.Gen.freqTuple scalacheck.this.Gen.freqTuple[Boolean](scala.Tuple2.apply[Int, Boolean](1, true))
375 896 15004 - 15014 Apply scala.Tuple2.apply scala.Tuple2.apply[Int, Boolean](9, false)
375 5279 15004 - 15014 ApplyImplicitView org.scalacheck.Gen.freqTuple scalacheck.this.Gen.freqTuple[Boolean](scala.Tuple2.apply[Int, Boolean](9, false))
376 4618 15062 - 15066 Literal <nosymbol> true
376 2393 15068 - 15073 Literal <nosymbol> false
376 2467 15033 - 16440 Apply org.scalacheck.Gen.flatMap org.scalacheck.Gen.oneOf[Boolean](true, false).flatMap[org.make.core.proposal.Proposal](((isAnonymous: Boolean) => org.scalacheck.Arbitrary.arbitrary[org.make.core.proposal.ProposalType](EntitiesGen.this.arbProposalType).flatMap[org.make.core.proposal.Proposal](((proposalType: org.make.core.proposal.ProposalType) => org.scalacheck.Gen.listOf[org.make.core.proposal.ProposalKeyword](EntitiesGen.this.genKeyword).flatMap[org.make.core.proposal.Proposal](((keywords: List[org.make.core.proposal.ProposalKeyword]) => org.scalacheck.Gen.option[org.make.core.reference.Country](org.scalacheck.Gen.oneOf[org.make.core.reference.Country](question.countries.toList)).flatMap[org.make.core.proposal.Proposal](((country: Option[org.make.core.reference.Country]) => org.scalacheck.Gen.oneOf[org.make.core.reference.Language](question.languages.toList).map[org.make.core.proposal.Proposal](((language: org.make.core.reference.Language) => { <artifact> val x$22: org.make.core.proposal.ProposalId = IdGenerator.uuidGenerator.nextProposalId(); <artifact> val x$23: String = org.make.core.SlugHelper.apply(content); <artifact> val x$24: String = content; <artifact> val x$25: Some[org.make.core.reference.Language] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.reference.Language](language); <artifact> val x$26: None.type = scala.None; <artifact> val x$27: org.make.core.user.UserId = author; <artifact> val x$28: org.make.core.proposal.ProposalStatus = status; <artifact> val x$29: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = if (status.==(org.make.core.proposal.ProposalStatus.Refused)) scala.Some.apply[String](refusalReason) else scala.None; <artifact> val x$30: Seq[org.make.core.tag.TagId] @scala.reflect.internal.annotations.uncheckedBounds = tags.toSeq; <artifact> val x$31: Boolean = isAnonymous; <artifact> val x$32: Some[org.make.core.proposal.VotingOptions] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.VotingOptions](votes); <artifact> val x$33: Seq[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = organisationIds.toSeq; <artifact> val x$34: Some[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.question.QuestionId](question.questionId); <artifact> val x$35: org.make.core.RequestContext = { <artifact> val x$1: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = country; <artifact> val x$2: org.make.core.RequestContextLanguage = org.make.core.RequestContextLanguage.apply(scala.Some.apply[org.make.core.reference.Language](question.languages.head), org.make.core.RequestContextLanguage.apply$default$2, org.make.core.RequestContextLanguage.apply$default$3, org.make.core.RequestContextLanguage.apply$default$4); <artifact> val x$3: Option[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$1; <artifact> val x$4: String = org.make.core.RequestContext.empty.copy$default$2; <artifact> val x$5: org.make.core.session.SessionId = org.make.core.RequestContext.empty.copy$default$3; <artifact> val x$6: Option[org.make.core.session.VisitorId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$4; <artifact> val x$7: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$5; <artifact> val x$8: String = org.make.core.RequestContext.empty.copy$default$6; <artifact> val x$9: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$8; <artifact> val x$10: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$10; <artifact> val x$11: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$11; <artifact> val x$12: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$12; <artifact> val x$13: org.make.core.RequestContextQuestion = org.make.core.RequestContext.empty.copy$default$13; <artifact> val x$14: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$14; <artifact> val x$15: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$15; <artifact> val x$16: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$16; <artifact> val x$17: Option[Map[String,String]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$17; <artifact> val x$18: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$18; <artifact> val x$19: Option[org.make.core.ApplicationName] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$19; <artifact> val x$20: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$20; <artifact> val x$21: Map[String,String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$21; org.make.core.RequestContext.empty.copy(x$3, x$4, x$5, x$6, x$7, x$8, x$1, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$19, x$20, x$21) }; <artifact> val x$36: None.type = scala.None; <artifact> val x$37: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = question.operationId; <artifact> val x$38: org.make.core.proposal.ProposalType = proposalType; <artifact> val x$39: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$40: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$41: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$19: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Accepted).||(status.==(org.make.core.proposal.ProposalStatus.Refused)))); <artifact> val x$42: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$20: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Postponed))); <artifact> val x$43: List[Nothing] @scala.reflect.internal.annotations.uncheckedBounds = scala.`package`.List.empty[Nothing]; <artifact> val x$44: Boolean = initialProposal; <artifact> val x$45: List[org.make.core.proposal.ProposalKeyword] @scala.reflect.internal.annotations.uncheckedBounds = keywords; org.make.core.proposal.Proposal.apply(x$22, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$32, x$31, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45) }))))))))))
377 1668 15109 - 15109 Select org.make.core.technical.generator.EntitiesGen.arbProposalType EntitiesGen.this.arbProposalType
377 4529 15081 - 16440 Apply org.scalacheck.Gen.flatMap org.scalacheck.Arbitrary.arbitrary[org.make.core.proposal.ProposalType](EntitiesGen.this.arbProposalType).flatMap[org.make.core.proposal.Proposal](((proposalType: org.make.core.proposal.ProposalType) => org.scalacheck.Gen.listOf[org.make.core.proposal.ProposalKeyword](EntitiesGen.this.genKeyword).flatMap[org.make.core.proposal.Proposal](((keywords: List[org.make.core.proposal.ProposalKeyword]) => org.scalacheck.Gen.option[org.make.core.reference.Country](org.scalacheck.Gen.oneOf[org.make.core.reference.Country](question.countries.toList)).flatMap[org.make.core.proposal.Proposal](((country: Option[org.make.core.reference.Country]) => org.scalacheck.Gen.oneOf[org.make.core.reference.Language](question.languages.toList).map[org.make.core.proposal.Proposal](((language: org.make.core.reference.Language) => { <artifact> val x$22: org.make.core.proposal.ProposalId = IdGenerator.uuidGenerator.nextProposalId(); <artifact> val x$23: String = org.make.core.SlugHelper.apply(content); <artifact> val x$24: String = content; <artifact> val x$25: Some[org.make.core.reference.Language] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.reference.Language](language); <artifact> val x$26: None.type = scala.None; <artifact> val x$27: org.make.core.user.UserId = author; <artifact> val x$28: org.make.core.proposal.ProposalStatus = status; <artifact> val x$29: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = if (status.==(org.make.core.proposal.ProposalStatus.Refused)) scala.Some.apply[String](refusalReason) else scala.None; <artifact> val x$30: Seq[org.make.core.tag.TagId] @scala.reflect.internal.annotations.uncheckedBounds = tags.toSeq; <artifact> val x$31: Boolean = isAnonymous; <artifact> val x$32: Some[org.make.core.proposal.VotingOptions] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.VotingOptions](votes); <artifact> val x$33: Seq[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = organisationIds.toSeq; <artifact> val x$34: Some[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.question.QuestionId](question.questionId); <artifact> val x$35: org.make.core.RequestContext = { <artifact> val x$1: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = country; <artifact> val x$2: org.make.core.RequestContextLanguage = org.make.core.RequestContextLanguage.apply(scala.Some.apply[org.make.core.reference.Language](question.languages.head), org.make.core.RequestContextLanguage.apply$default$2, org.make.core.RequestContextLanguage.apply$default$3, org.make.core.RequestContextLanguage.apply$default$4); <artifact> val x$3: Option[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$1; <artifact> val x$4: String = org.make.core.RequestContext.empty.copy$default$2; <artifact> val x$5: org.make.core.session.SessionId = org.make.core.RequestContext.empty.copy$default$3; <artifact> val x$6: Option[org.make.core.session.VisitorId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$4; <artifact> val x$7: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$5; <artifact> val x$8: String = org.make.core.RequestContext.empty.copy$default$6; <artifact> val x$9: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$8; <artifact> val x$10: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$10; <artifact> val x$11: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$11; <artifact> val x$12: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$12; <artifact> val x$13: org.make.core.RequestContextQuestion = org.make.core.RequestContext.empty.copy$default$13; <artifact> val x$14: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$14; <artifact> val x$15: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$15; <artifact> val x$16: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$16; <artifact> val x$17: Option[Map[String,String]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$17; <artifact> val x$18: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$18; <artifact> val x$19: Option[org.make.core.ApplicationName] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$19; <artifact> val x$20: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$20; <artifact> val x$21: Map[String,String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$21; org.make.core.RequestContext.empty.copy(x$3, x$4, x$5, x$6, x$7, x$8, x$1, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$19, x$20, x$21) }; <artifact> val x$36: None.type = scala.None; <artifact> val x$37: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = question.operationId; <artifact> val x$38: org.make.core.proposal.ProposalType = proposalType; <artifact> val x$39: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$40: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$41: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$19: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Accepted).||(status.==(org.make.core.proposal.ProposalStatus.Refused)))); <artifact> val x$42: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$20: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Postponed))); <artifact> val x$43: List[Nothing] @scala.reflect.internal.annotations.uncheckedBounds = scala.`package`.List.empty[Nothing]; <artifact> val x$44: Boolean = initialProposal; <artifact> val x$45: List[org.make.core.proposal.ProposalKeyword] @scala.reflect.internal.annotations.uncheckedBounds = keywords; org.make.core.proposal.Proposal.apply(x$22, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$32, x$31, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45) }))))))))
378 4889 15160 - 15170 Select org.make.core.technical.generator.EntitiesGen.genKeyword EntitiesGen.this.genKeyword
378 1237 15130 - 16440 Apply org.scalacheck.Gen.flatMap org.scalacheck.Gen.listOf[org.make.core.proposal.ProposalKeyword](EntitiesGen.this.genKeyword).flatMap[org.make.core.proposal.Proposal](((keywords: List[org.make.core.proposal.ProposalKeyword]) => org.scalacheck.Gen.option[org.make.core.reference.Country](org.scalacheck.Gen.oneOf[org.make.core.reference.Country](question.countries.toList)).flatMap[org.make.core.proposal.Proposal](((country: Option[org.make.core.reference.Country]) => org.scalacheck.Gen.oneOf[org.make.core.reference.Language](question.languages.toList).map[org.make.core.proposal.Proposal](((language: org.make.core.reference.Language) => { <artifact> val x$22: org.make.core.proposal.ProposalId = IdGenerator.uuidGenerator.nextProposalId(); <artifact> val x$23: String = org.make.core.SlugHelper.apply(content); <artifact> val x$24: String = content; <artifact> val x$25: Some[org.make.core.reference.Language] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.reference.Language](language); <artifact> val x$26: None.type = scala.None; <artifact> val x$27: org.make.core.user.UserId = author; <artifact> val x$28: org.make.core.proposal.ProposalStatus = status; <artifact> val x$29: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = if (status.==(org.make.core.proposal.ProposalStatus.Refused)) scala.Some.apply[String](refusalReason) else scala.None; <artifact> val x$30: Seq[org.make.core.tag.TagId] @scala.reflect.internal.annotations.uncheckedBounds = tags.toSeq; <artifact> val x$31: Boolean = isAnonymous; <artifact> val x$32: Some[org.make.core.proposal.VotingOptions] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.VotingOptions](votes); <artifact> val x$33: Seq[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = organisationIds.toSeq; <artifact> val x$34: Some[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.question.QuestionId](question.questionId); <artifact> val x$35: org.make.core.RequestContext = { <artifact> val x$1: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = country; <artifact> val x$2: org.make.core.RequestContextLanguage = org.make.core.RequestContextLanguage.apply(scala.Some.apply[org.make.core.reference.Language](question.languages.head), org.make.core.RequestContextLanguage.apply$default$2, org.make.core.RequestContextLanguage.apply$default$3, org.make.core.RequestContextLanguage.apply$default$4); <artifact> val x$3: Option[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$1; <artifact> val x$4: String = org.make.core.RequestContext.empty.copy$default$2; <artifact> val x$5: org.make.core.session.SessionId = org.make.core.RequestContext.empty.copy$default$3; <artifact> val x$6: Option[org.make.core.session.VisitorId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$4; <artifact> val x$7: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$5; <artifact> val x$8: String = org.make.core.RequestContext.empty.copy$default$6; <artifact> val x$9: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$8; <artifact> val x$10: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$10; <artifact> val x$11: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$11; <artifact> val x$12: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$12; <artifact> val x$13: org.make.core.RequestContextQuestion = org.make.core.RequestContext.empty.copy$default$13; <artifact> val x$14: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$14; <artifact> val x$15: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$15; <artifact> val x$16: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$16; <artifact> val x$17: Option[Map[String,String]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$17; <artifact> val x$18: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$18; <artifact> val x$19: Option[org.make.core.ApplicationName] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$19; <artifact> val x$20: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$20; <artifact> val x$21: Map[String,String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$21; org.make.core.RequestContext.empty.copy(x$3, x$4, x$5, x$6, x$7, x$8, x$1, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$19, x$20, x$21) }; <artifact> val x$36: None.type = scala.None; <artifact> val x$37: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = question.operationId; <artifact> val x$38: org.make.core.proposal.ProposalType = proposalType; <artifact> val x$39: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$40: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$41: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$19: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Accepted).||(status.==(org.make.core.proposal.ProposalStatus.Refused)))); <artifact> val x$42: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$20: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Postponed))); <artifact> val x$43: List[Nothing] @scala.reflect.internal.annotations.uncheckedBounds = scala.`package`.List.empty[Nothing]; <artifact> val x$44: Boolean = initialProposal; <artifact> val x$45: List[org.make.core.proposal.ProposalKeyword] @scala.reflect.internal.annotations.uncheckedBounds = keywords; org.make.core.proposal.Proposal.apply(x$22, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$32, x$31, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45) }))))))
379 2344 15178 - 16440 Apply org.scalacheck.Gen.flatMap org.scalacheck.Gen.option[org.make.core.reference.Country](org.scalacheck.Gen.oneOf[org.make.core.reference.Country](question.countries.toList)).flatMap[org.make.core.proposal.Proposal](((country: Option[org.make.core.reference.Country]) => org.scalacheck.Gen.oneOf[org.make.core.reference.Language](question.languages.toList).map[org.make.core.proposal.Proposal](((language: org.make.core.reference.Language) => { <artifact> val x$22: org.make.core.proposal.ProposalId = IdGenerator.uuidGenerator.nextProposalId(); <artifact> val x$23: String = org.make.core.SlugHelper.apply(content); <artifact> val x$24: String = content; <artifact> val x$25: Some[org.make.core.reference.Language] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.reference.Language](language); <artifact> val x$26: None.type = scala.None; <artifact> val x$27: org.make.core.user.UserId = author; <artifact> val x$28: org.make.core.proposal.ProposalStatus = status; <artifact> val x$29: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = if (status.==(org.make.core.proposal.ProposalStatus.Refused)) scala.Some.apply[String](refusalReason) else scala.None; <artifact> val x$30: Seq[org.make.core.tag.TagId] @scala.reflect.internal.annotations.uncheckedBounds = tags.toSeq; <artifact> val x$31: Boolean = isAnonymous; <artifact> val x$32: Some[org.make.core.proposal.VotingOptions] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.VotingOptions](votes); <artifact> val x$33: Seq[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = organisationIds.toSeq; <artifact> val x$34: Some[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.question.QuestionId](question.questionId); <artifact> val x$35: org.make.core.RequestContext = { <artifact> val x$1: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = country; <artifact> val x$2: org.make.core.RequestContextLanguage = org.make.core.RequestContextLanguage.apply(scala.Some.apply[org.make.core.reference.Language](question.languages.head), org.make.core.RequestContextLanguage.apply$default$2, org.make.core.RequestContextLanguage.apply$default$3, org.make.core.RequestContextLanguage.apply$default$4); <artifact> val x$3: Option[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$1; <artifact> val x$4: String = org.make.core.RequestContext.empty.copy$default$2; <artifact> val x$5: org.make.core.session.SessionId = org.make.core.RequestContext.empty.copy$default$3; <artifact> val x$6: Option[org.make.core.session.VisitorId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$4; <artifact> val x$7: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$5; <artifact> val x$8: String = org.make.core.RequestContext.empty.copy$default$6; <artifact> val x$9: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$8; <artifact> val x$10: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$10; <artifact> val x$11: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$11; <artifact> val x$12: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$12; <artifact> val x$13: org.make.core.RequestContextQuestion = org.make.core.RequestContext.empty.copy$default$13; <artifact> val x$14: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$14; <artifact> val x$15: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$15; <artifact> val x$16: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$16; <artifact> val x$17: Option[Map[String,String]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$17; <artifact> val x$18: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$18; <artifact> val x$19: Option[org.make.core.ApplicationName] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$19; <artifact> val x$20: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$20; <artifact> val x$21: Map[String,String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$21; org.make.core.RequestContext.empty.copy(x$3, x$4, x$5, x$6, x$7, x$8, x$1, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$19, x$20, x$21) }; <artifact> val x$36: None.type = scala.None; <artifact> val x$37: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = question.operationId; <artifact> val x$38: org.make.core.proposal.ProposalType = proposalType; <artifact> val x$39: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$40: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$41: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$19: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Accepted).||(status.==(org.make.core.proposal.ProposalStatus.Refused)))); <artifact> val x$42: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$20: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Postponed))); <artifact> val x$43: List[Nothing] @scala.reflect.internal.annotations.uncheckedBounds = scala.`package`.List.empty[Nothing]; <artifact> val x$44: Boolean = initialProposal; <artifact> val x$45: List[org.make.core.proposal.ProposalKeyword] @scala.reflect.internal.annotations.uncheckedBounds = keywords; org.make.core.proposal.Proposal.apply(x$22, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$32, x$31, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45) }))))
379 873 15208 - 15244 Apply org.scalacheck.Gen.oneOf org.scalacheck.Gen.oneOf[org.make.core.reference.Country](question.countries.toList)
379 2996 15218 - 15243 Select cats.data.NonEmptyList.toList question.countries.toList
380 4096 15252 - 16440 Apply org.scalacheck.Gen.map org.scalacheck.Gen.oneOf[org.make.core.reference.Language](question.languages.toList).map[org.make.core.proposal.Proposal](((language: org.make.core.reference.Language) => { <artifact> val x$22: org.make.core.proposal.ProposalId = IdGenerator.uuidGenerator.nextProposalId(); <artifact> val x$23: String = org.make.core.SlugHelper.apply(content); <artifact> val x$24: String = content; <artifact> val x$25: Some[org.make.core.reference.Language] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.reference.Language](language); <artifact> val x$26: None.type = scala.None; <artifact> val x$27: org.make.core.user.UserId = author; <artifact> val x$28: org.make.core.proposal.ProposalStatus = status; <artifact> val x$29: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = if (status.==(org.make.core.proposal.ProposalStatus.Refused)) scala.Some.apply[String](refusalReason) else scala.None; <artifact> val x$30: Seq[org.make.core.tag.TagId] @scala.reflect.internal.annotations.uncheckedBounds = tags.toSeq; <artifact> val x$31: Boolean = isAnonymous; <artifact> val x$32: Some[org.make.core.proposal.VotingOptions] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.VotingOptions](votes); <artifact> val x$33: Seq[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = organisationIds.toSeq; <artifact> val x$34: Some[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.question.QuestionId](question.questionId); <artifact> val x$35: org.make.core.RequestContext = { <artifact> val x$1: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = country; <artifact> val x$2: org.make.core.RequestContextLanguage = org.make.core.RequestContextLanguage.apply(scala.Some.apply[org.make.core.reference.Language](question.languages.head), org.make.core.RequestContextLanguage.apply$default$2, org.make.core.RequestContextLanguage.apply$default$3, org.make.core.RequestContextLanguage.apply$default$4); <artifact> val x$3: Option[org.make.core.user.UserId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$1; <artifact> val x$4: String = org.make.core.RequestContext.empty.copy$default$2; <artifact> val x$5: org.make.core.session.SessionId = org.make.core.RequestContext.empty.copy$default$3; <artifact> val x$6: Option[org.make.core.session.VisitorId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$4; <artifact> val x$7: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$5; <artifact> val x$8: String = org.make.core.RequestContext.empty.copy$default$6; <artifact> val x$9: Option[org.make.core.reference.Country] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$8; <artifact> val x$10: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$10; <artifact> val x$11: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$11; <artifact> val x$12: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$12; <artifact> val x$13: org.make.core.RequestContextQuestion = org.make.core.RequestContext.empty.copy$default$13; <artifact> val x$14: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$14; <artifact> val x$15: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$15; <artifact> val x$16: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$16; <artifact> val x$17: Option[Map[String,String]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$17; <artifact> val x$18: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$18; <artifact> val x$19: Option[org.make.core.ApplicationName] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$19; <artifact> val x$20: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$20; <artifact> val x$21: Map[String,String] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.RequestContext.empty.copy$default$21; org.make.core.RequestContext.empty.copy(x$3, x$4, x$5, x$6, x$7, x$8, x$1, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$19, x$20, x$21) }; <artifact> val x$36: None.type = scala.None; <artifact> val x$37: Option[org.make.core.operation.OperationId] @scala.reflect.internal.annotations.uncheckedBounds = question.operationId; <artifact> val x$38: org.make.core.proposal.ProposalType = proposalType; <artifact> val x$39: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$40: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date; <artifact> val x$41: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$19: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Accepted).||(status.==(org.make.core.proposal.ProposalStatus.Refused)))); <artifact> val x$42: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = date.filter(((x$20: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Postponed))); <artifact> val x$43: List[Nothing] @scala.reflect.internal.annotations.uncheckedBounds = scala.`package`.List.empty[Nothing]; <artifact> val x$44: Boolean = initialProposal; <artifact> val x$45: List[org.make.core.proposal.ProposalKeyword] @scala.reflect.internal.annotations.uncheckedBounds = keywords; org.make.core.proposal.Proposal.apply(x$22, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$32, x$31, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45) }))
380 4043 15281 - 15306 Select cats.data.NonEmptyList.toList question.languages.toList
381 952 15320 - 16440 Apply org.make.core.proposal.Proposal.apply org.make.core.proposal.Proposal.apply(x$22, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$32, x$31, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45)
382 3251 15349 - 15391 Apply org.make.core.technical.IdGenerator.nextProposalId IdGenerator.uuidGenerator.nextProposalId()
383 1290 15406 - 15425 Apply org.make.core.SlugHelper.apply org.make.core.SlugHelper.apply(content)
385 4628 15480 - 15494 Apply scala.Some.apply scala.Some.apply[org.make.core.reference.Language](language)
386 2504 15524 - 15528 Select scala.None scala.None
389 881 15636 - 15655 Block scala.Some.apply scala.Some.apply[String](refusalReason)
389 4900 15602 - 15634 Apply java.lang.Object.== status.==(org.make.core.proposal.ProposalStatus.Refused)
389 4209 15661 - 15665 Select scala.None scala.None
389 1679 15612 - 15634 Select org.make.core.proposal.ProposalStatus.Refused org.make.core.proposal.ProposalStatus.Refused
389 3174 15661 - 15665 Block scala.None scala.None
389 2941 15636 - 15655 Apply scala.Some.apply scala.Some.apply[String](refusalReason)
390 1300 15680 - 15690 Select scala.collection.IterableOnceOps.toSeq tags.toSeq
392 4441 15747 - 15758 Apply scala.Some.apply scala.Some.apply[org.make.core.proposal.VotingOptions](votes)
393 2514 15784 - 15805 Select scala.collection.IterableOnceOps.toSeq organisationIds.toSeq
394 4826 15826 - 15851 Apply scala.Some.apply scala.Some.apply[org.make.core.question.QuestionId](question.questionId)
394 444 15831 - 15850 Select org.make.core.question.Question.questionId question.questionId
396 3062 15949 - 15949 Select org.make.core.RequestContextLanguage.apply$default$3 org.make.core.RequestContextLanguage.apply$default$3
396 2470 15907 - 15907 Select org.make.core.RequestContext.copy$default$12 org.make.core.RequestContext.empty.copy$default$12
396 828 15907 - 15907 Select org.make.core.RequestContext.copy$default$5 org.make.core.RequestContext.empty.copy$default$5
396 819 15983 - 16012 Apply scala.Some.apply scala.Some.apply[org.make.core.reference.Language](question.languages.head)
396 2658 15907 - 15907 Select org.make.core.RequestContext.copy$default$21 org.make.core.RequestContext.empty.copy$default$21
396 4040 15907 - 15907 Select org.make.core.RequestContext.copy$default$6 org.make.core.RequestContext.empty.copy$default$6
396 678 15877 - 16014 Apply org.make.core.RequestContext.copy org.make.core.RequestContext.empty.copy(x$3, x$4, x$5, x$6, x$7, x$8, x$1, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$19, x$20, x$21)
396 400 15907 - 15907 Select org.make.core.RequestContext.copy$default$2 org.make.core.RequestContext.empty.copy$default$2
396 3325 15907 - 15907 Select org.make.core.RequestContext.copy$default$8 org.make.core.RequestContext.empty.copy$default$8
396 2951 15988 - 16011 Select cats.data.NonEmptyList.head question.languages.head
396 2523 15907 - 15907 Select org.make.core.RequestContext.copy$default$1 org.make.core.RequestContext.empty.copy$default$1
396 4156 15949 - 15949 Select org.make.core.RequestContextLanguage.apply$default$2 org.make.core.RequestContextLanguage.apply$default$2
396 839 15907 - 15907 Select org.make.core.RequestContext.copy$default$16 org.make.core.RequestContext.empty.copy$default$16
396 1228 15949 - 15949 Select org.make.core.RequestContextLanguage.apply$default$4 org.make.core.RequestContextLanguage.apply$default$4
396 4577 15907 - 15907 Select org.make.core.RequestContext.copy$default$20 org.make.core.RequestContext.empty.copy$default$20
396 405 15907 - 15907 Select org.make.core.RequestContext.copy$default$13 org.make.core.RequestContext.empty.copy$default$13
396 4299 15907 - 15907 Select org.make.core.RequestContext.copy$default$17 org.make.core.RequestContext.empty.copy$default$17
396 2059 15907 - 15907 Select org.make.core.RequestContext.copy$default$18 org.make.core.RequestContext.empty.copy$default$18
396 4448 15949 - 16013 Apply org.make.core.RequestContextLanguage.apply org.make.core.RequestContextLanguage.apply(scala.Some.apply[org.make.core.reference.Language](question.languages.head), org.make.core.RequestContextLanguage.apply$default$2, org.make.core.RequestContextLanguage.apply$default$3, org.make.core.RequestContextLanguage.apply$default$4)
396 4699 15907 - 15907 Select org.make.core.RequestContext.copy$default$3 org.make.core.RequestContext.empty.copy$default$3
396 1212 15907 - 15907 Select org.make.core.RequestContext.copy$default$19 org.make.core.RequestContext.empty.copy$default$19
396 4379 15907 - 15907 Select org.make.core.RequestContext.copy$default$11 org.make.core.RequestContext.empty.copy$default$11
396 1074 15907 - 15907 Select org.make.core.RequestContext.copy$default$10 org.make.core.RequestContext.empty.copy$default$10
396 2937 15907 - 15907 Select org.make.core.RequestContext.copy$default$15 org.make.core.RequestContext.empty.copy$default$15
396 2727 15907 - 15907 Select org.make.core.RequestContext.copy$default$4 org.make.core.RequestContext.empty.copy$default$4
396 4970 15907 - 15907 Select org.make.core.RequestContext.copy$default$14 org.make.core.RequestContext.empty.copy$default$14
397 4979 16029 - 16033 Select scala.None scala.None
398 2948 16053 - 16073 Select org.make.core.question.Question.operationId question.operationId
402 4584 16178 - 16265 Apply scala.Option.filter date.filter(((x$19: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Accepted).||(status.==(org.make.core.proposal.ProposalStatus.Refused))))
402 944 16205 - 16228 Select org.make.core.proposal.ProposalStatus.Accepted org.make.core.proposal.ProposalStatus.Accepted
402 1222 16195 - 16264 Apply scala.Boolean.|| status.==(org.make.core.proposal.ProposalStatus.Accepted).||(status.==(org.make.core.proposal.ProposalStatus.Refused))
402 4307 16242 - 16264 Select org.make.core.proposal.ProposalStatus.Refused org.make.core.proposal.ProposalStatus.Refused
402 2336 16232 - 16264 Apply java.lang.Object.== status.==(org.make.core.proposal.ProposalStatus.Refused)
403 689 16304 - 16338 Apply java.lang.Object.== status.==(org.make.core.proposal.ProposalStatus.Postponed)
403 2456 16314 - 16338 Select org.make.core.proposal.ProposalStatus.Postponed org.make.core.proposal.ProposalStatus.Postponed
403 4761 16287 - 16339 Apply scala.Option.filter date.filter(((x$20: java.time.ZonedDateTime) => status.==(org.make.core.proposal.ProposalStatus.Postponed)))
404 2881 16356 - 16366 TypeApply scala.collection.immutable.List.empty scala.`package`.List.empty[Nothing]
411 3013 16512 - 16670 Apply org.scalacheck.Gen.oneOf org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest org.scalacheck.Gen.oneOf[org.make.core.job.Job.JobStatus](org.scalacheck.Arbitrary.arbitrary[org.make.core.job.Job.Progress](eu.timepit.refined.scalacheck.numeric.intervalClosedArbitrary[eu.timepit.refined.api.Refined, Double, Double(0.0), Double(100.0)](api.this.RefType.refinedRefType, math.this.Numeric.DoubleIsFractional, Gen.this.Choose.chooseDouble, internal.this.WitnessAs.singletonWitnessAs[Double, Double(0.0)](Witness.mkWitness[Double(0.0)](0.0.asInstanceOf[Double(0.0)])), internal.this.WitnessAs.singletonWitnessAs[Double, Double(100.0)](Witness.mkWitness[Double(100.0)](100.0.asInstanceOf[Double(100.0)])))).map[org.make.core.job.Job.JobStatus.Running](((progress: org.make.core.job.Job.Progress) => org.make.core.job.Job.JobStatus.Running.apply(progress))), org.scalacheck.Arbitrary.arbitrary[Option[String]](scalacheck.this.Arbitrary.arbOption[String](scalacheck.this.Arbitrary.arbString)).map[org.make.core.job.Job.JobStatus.Finished](((outcome: Option[String]) => org.make.core.job.Job.JobStatus.Finished.apply(outcome))))
412 4650 16529 - 16591 Apply org.scalacheck.Gen.map org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest org.scalacheck.Arbitrary.arbitrary[org.make.core.job.Job.Progress](eu.timepit.refined.scalacheck.numeric.intervalClosedArbitrary[eu.timepit.refined.api.Refined, Double, Double(0.0), Double(100.0)](api.this.RefType.refinedRefType, math.this.Numeric.DoubleIsFractional, Gen.this.Choose.chooseDouble, internal.this.WitnessAs.singletonWitnessAs[Double, Double(0.0)](Witness.mkWitness[Double(0.0)](0.0.asInstanceOf[Double(0.0)])), internal.this.WitnessAs.singletonWitnessAs[Double, Double(100.0)](Witness.mkWitness[Double(100.0)](100.0.asInstanceOf[Double(100.0)])))).map[org.make.core.job.Job.JobStatus.Running](((progress: org.make.core.job.Job.Progress) => org.make.core.job.Job.JobStatus.Running.apply(progress)))
412 768 16548 - 16548 ApplyToImplicitArgs eu.timepit.refined.internal.WitnessAs.singletonWitnessAs org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest internal.this.WitnessAs.singletonWitnessAs[Double, Double(0.0)](Witness.mkWitness[Double(0.0)](0.0.asInstanceOf[Double(0.0)]))
412 2332 16548 - 16548 ApplyToImplicitArgs eu.timepit.refined.scalacheck.NumericInstances.intervalClosedArbitrary org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest eu.timepit.refined.scalacheck.numeric.intervalClosedArbitrary[eu.timepit.refined.api.Refined, Double, Double(0.0), Double(100.0)](api.this.RefType.refinedRefType, math.this.Numeric.DoubleIsFractional, Gen.this.Choose.chooseDouble, internal.this.WitnessAs.singletonWitnessAs[Double, Double(0.0)](Witness.mkWitness[Double(0.0)](0.0.asInstanceOf[Double(0.0)])), internal.this.WitnessAs.singletonWitnessAs[Double, Double(100.0)](Witness.mkWitness[Double(100.0)](100.0.asInstanceOf[Double(100.0)])))
412 5343 16567 - 16590 Apply org.make.core.job.Job.JobStatus.Running.apply org.make.api.technical.job.jobapitest org.make.core.job.Job.JobStatus.Running.apply(progress)
412 3709 16548 - 16548 Select scala.math.Numeric.DoubleIsFractional org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest math.this.Numeric.DoubleIsFractional
412 464 16548 - 16548 Select eu.timepit.refined.api.RefType.refinedRefType org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest api.this.RefType.refinedRefType
412 4052 16548 - 16548 ApplyToImplicitArgs eu.timepit.refined.internal.WitnessAs.singletonWitnessAs org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest internal.this.WitnessAs.singletonWitnessAs[Double, Double(100.0)](Witness.mkWitness[Double(100.0)](100.0.asInstanceOf[Double(100.0)]))
412 2814 16548 - 16548 Select org.scalacheck.Gen.Choose.chooseDouble org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest Gen.this.Choose.chooseDouble
413 3988 16599 - 16664 Apply org.scalacheck.Gen.map org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest org.scalacheck.Arbitrary.arbitrary[Option[String]](scalacheck.this.Arbitrary.arbOption[String](scalacheck.this.Arbitrary.arbString)).map[org.make.core.job.Job.JobStatus.Finished](((outcome: Option[String]) => org.make.core.job.Job.JobStatus.Finished.apply(outcome)))
413 2412 16618 - 16618 ApplyToImplicitArgs org.scalacheck.ArbitraryLowPriority.arbOption org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest scalacheck.this.Arbitrary.arbOption[String](scalacheck.this.Arbitrary.arbString)
413 685 16639 - 16663 Apply org.make.core.job.Job.JobStatus.Finished.apply org.make.api.technical.job.jobapitest org.make.core.job.Job.JobStatus.Finished.apply(outcome)
416 2532 16675 - 17078 Apply org.scalacheck.Gen.flatMap org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest org.scalacheck.Gen.uuid.flatMap[org.make.core.job.Job](((id: java.util.UUID) => genJobStatus.flatMap[org.make.core.job.Job](((status: org.make.core.job.Job.JobStatus) => generator.this.`package`.RichGenerators[java.time.ZonedDateTime](EntitiesGen.this.genDateWithOffset(java.time.Period.ofYears(-2), java.time.Period.ZERO, EntitiesGen.this.genDateWithOffset$default$3)).asOption.flatMap[org.make.core.job.Job](((createdAt: Option[java.time.ZonedDateTime]) => org.scalacheck.Arbitrary.arbitrary[Option[scala.concurrent.duration.FiniteDuration]](scalacheck.this.Arbitrary.arbOption[scala.concurrent.duration.FiniteDuration](scalacheck.this.Arbitrary.arbFiniteDuration)).map[Option[java.time.ZonedDateTime]](((x$21: Option[scala.concurrent.duration.FiniteDuration]) => x$21.flatMap[java.time.ZonedDateTime](((u: scala.concurrent.duration.FiniteDuration) => createdAt.map[java.time.ZonedDateTime](((x$22: java.time.ZonedDateTime) => x$22.plusNanos(u.toNanos).truncatedTo(MILLIS))))))).map[org.make.core.job.Job](((update: Option[java.time.ZonedDateTime]) => org.make.core.job.Job.apply(org.make.core.job.Job.JobId.apply(id.toString()), status, createdAt, update)))))))))
417 4454 16715 - 17078 Apply org.scalacheck.Gen.flatMap org.make.api.technical.job.jobapitest genJobStatus.flatMap[org.make.core.job.Job](((status: org.make.core.job.Job.JobStatus) => generator.this.`package`.RichGenerators[java.time.ZonedDateTime](EntitiesGen.this.genDateWithOffset(java.time.Period.ofYears(-2), java.time.Period.ZERO, EntitiesGen.this.genDateWithOffset$default$3)).asOption.flatMap[org.make.core.job.Job](((createdAt: Option[java.time.ZonedDateTime]) => org.scalacheck.Arbitrary.arbitrary[Option[scala.concurrent.duration.FiniteDuration]](scalacheck.this.Arbitrary.arbOption[scala.concurrent.duration.FiniteDuration](scalacheck.this.Arbitrary.arbFiniteDuration)).map[Option[java.time.ZonedDateTime]](((x$21: Option[scala.concurrent.duration.FiniteDuration]) => x$21.flatMap[java.time.ZonedDateTime](((u: scala.concurrent.duration.FiniteDuration) => createdAt.map[java.time.ZonedDateTime](((x$22: java.time.ZonedDateTime) => x$22.plusNanos(u.toNanos).truncatedTo(MILLIS))))))).map[org.make.core.job.Job](((update: Option[java.time.ZonedDateTime]) => org.make.core.job.Job.apply(org.make.core.job.Job.JobId.apply(id.toString()), status, createdAt, update)))))))
418 4060 16826 - 16837 Select java.time.Period.ZERO org.make.api.technical.job.jobapitest java.time.Period.ZERO
418 5624 16747 - 17078 Apply org.scalacheck.Gen.flatMap org.make.api.technical.job.jobapitest generator.this.`package`.RichGenerators[java.time.ZonedDateTime](EntitiesGen.this.genDateWithOffset(java.time.Period.ofYears(-2), java.time.Period.ZERO, EntitiesGen.this.genDateWithOffset$default$3)).asOption.flatMap[org.make.core.job.Job](((createdAt: Option[java.time.ZonedDateTime]) => org.scalacheck.Arbitrary.arbitrary[Option[scala.concurrent.duration.FiniteDuration]](scalacheck.this.Arbitrary.arbOption[scala.concurrent.duration.FiniteDuration](scalacheck.this.Arbitrary.arbFiniteDuration)).map[Option[java.time.ZonedDateTime]](((x$21: Option[scala.concurrent.duration.FiniteDuration]) => x$21.flatMap[java.time.ZonedDateTime](((u: scala.concurrent.duration.FiniteDuration) => createdAt.map[java.time.ZonedDateTime](((x$22: java.time.ZonedDateTime) => x$22.plusNanos(u.toNanos).truncatedTo(MILLIS))))))).map[org.make.core.job.Job](((update: Option[java.time.ZonedDateTime]) => org.make.core.job.Job.apply(org.make.core.job.Job.JobId.apply(id.toString()), status, createdAt, update)))))
418 889 16792 - 16810 Apply java.time.Period.ofYears org.make.api.technical.job.jobapitest java.time.Period.ofYears(-2)
418 2339 16760 - 16760 Select org.make.core.technical.generator.DateGenerators.genDateWithOffset$default$3 org.make.api.technical.job.jobapitest EntitiesGen.this.genDateWithOffset$default$3
418 5616 16760 - 16838 Apply org.make.core.technical.generator.DateGenerators.genDateWithOffset org.make.api.technical.job.jobapitest EntitiesGen.this.genDateWithOffset(java.time.Period.ofYears(-2), java.time.Period.ZERO, EntitiesGen.this.genDateWithOffset$default$3)
419 2274 16854 - 17078 Apply org.scalacheck.Gen.map org.make.api.technical.job.jobapitest org.scalacheck.Arbitrary.arbitrary[Option[scala.concurrent.duration.FiniteDuration]](scalacheck.this.Arbitrary.arbOption[scala.concurrent.duration.FiniteDuration](scalacheck.this.Arbitrary.arbFiniteDuration)).map[Option[java.time.ZonedDateTime]](((x$21: Option[scala.concurrent.duration.FiniteDuration]) => x$21.flatMap[java.time.ZonedDateTime](((u: scala.concurrent.duration.FiniteDuration) => createdAt.map[java.time.ZonedDateTime](((x$22: java.time.ZonedDateTime) => x$22.plusNanos(u.toNanos).truncatedTo(MILLIS))))))).map[org.make.core.job.Job](((update: Option[java.time.ZonedDateTime]) => org.make.core.job.Job.apply(org.make.core.job.Job.JobId.apply(id.toString()), status, createdAt, update)))
420 4526 16892 - 16892 ApplyToImplicitArgs org.scalacheck.ArbitraryLowPriority.arbOption org.make.api.technical.job.jobapitest scalacheck.this.Arbitrary.arbOption[scala.concurrent.duration.FiniteDuration](scalacheck.this.Arbitrary.arbFiniteDuration)
421 3995 16930 - 17014 Apply scala.Option.flatMap org.make.api.technical.job.jobapitest x$21.flatMap[java.time.ZonedDateTime](((u: scala.concurrent.duration.FiniteDuration) => createdAt.map[java.time.ZonedDateTime](((x$22: java.time.ZonedDateTime) => x$22.plusNanos(u.toNanos).truncatedTo(MILLIS)))))
421 617 16945 - 17013 Apply scala.Option.map org.make.api.technical.job.jobapitest createdAt.map[java.time.ZonedDateTime](((x$22: java.time.ZonedDateTime) => x$22.plusNanos(u.toNanos).truncatedTo(MILLIS)))
421 2522 16959 - 17012 Apply java.time.ZonedDateTime.truncatedTo org.make.api.technical.job.jobapitest x$22.plusNanos(u.toNanos).truncatedTo(MILLIS)
422 2800 17038 - 17049 Apply java.util.UUID.toString org.make.api.technical.job.jobapitest id.toString()
422 900 17032 - 17050 Apply org.make.core.job.Job.JobId.apply org.make.api.technical.job.jobapitest org.make.core.job.Job.JobId.apply(id.toString())
422 4103 17028 - 17078 Apply org.make.core.job.Job.apply org.make.api.technical.job.jobapitest org.make.core.job.Job.apply(org.make.core.job.Job.JobId.apply(id.toString()), status, createdAt, update)
425 461 17106 - 17155 Apply org.make.core.tag.TagTypeId.apply org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest org.make.core.tag.TagTypeId.apply("c0d8d858-8b04-4dd9-add6-fa65443b622b")
426 3944 17181 - 17230 Apply org.make.core.tag.TagTypeId.apply org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest org.make.core.tag.TagTypeId.apply("cc6a16a5-cfa7-495b-a235-08affb3551af")
427 1909 17254 - 17303 Apply org.make.core.tag.TagTypeId.apply org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest org.make.core.tag.TagTypeId.apply("5e539923-c265-45d2-9d0b-77f29c8b0a06")
428 908 17327 - 17376 Apply org.make.core.tag.TagTypeId.apply org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest org.make.core.tag.TagTypeId.apply("226070ac-51b0-4e92-883a-f0a24d5b8525")
429 4048 17399 - 17448 Apply org.make.core.tag.TagTypeId.apply org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest org.make.core.tag.TagTypeId.apply("982e6860-eb66-407e-bafb-461c2d927478")
430 2118 17472 - 17521 Apply org.make.core.tag.TagTypeId.apply org.make.core.operation.operationofquestiontest,org.make.api.technical.job.jobapitest org.make.core.tag.TagTypeId.apply("8405aba4-4192-41d2-9a0d-b5aa6cb98d37")
434 5576 17618 - 18169 Apply org.scalacheck.Gen.flatMap CustomGenerators.LoremIpsumGen.sentence(scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](20): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))).flatMap[org.make.core.tag.Tag](((label: String) => org.scalacheck.Gen.posNum[Float](math.this.Numeric.FloatIsFractional, Gen.this.Choose.chooseFloat).flatMap[org.make.core.tag.Tag](((weight: Float) => org.scalacheck.Gen.frequency[org.make.core.tag.TagDisplay](scalacheck.this.Gen.freqTuple[org.make.core.tag.TagDisplay.Inherit.type](scala.Tuple2.apply[Int, org.make.core.tag.TagDisplay.Inherit.type](8, org.make.core.tag.TagDisplay.Inherit)), scalacheck.this.Gen.freqTuple[org.make.core.tag.TagDisplay.Displayed.type](scala.Tuple2.apply[Int, org.make.core.tag.TagDisplay.Displayed.type](1, org.make.core.tag.TagDisplay.Displayed)), scalacheck.this.Gen.freqTuple[org.make.core.tag.TagDisplay.Hidden.type](scala.Tuple2.apply[Int, org.make.core.tag.TagDisplay.Hidden.type](1, org.make.core.tag.TagDisplay.Hidden))).flatMap[org.make.core.tag.Tag](((display: org.make.core.tag.TagDisplay) => org.scalacheck.Gen.oneOf[org.make.core.tag.TagTypeId](scala.`package`.Seq.apply[org.make.core.tag.TagTypeId](EntitiesGen.this.stake, EntitiesGen.this.solution, EntitiesGen.this.moment, EntitiesGen.this.target, EntitiesGen.this.actor, EntitiesGen.this.legacy)).map[org.make.core.tag.Tag](((tagTypeId: org.make.core.tag.TagTypeId) => org.make.core.tag.Tag.apply(IdGenerator.uuidGenerator.nextTagId(), label, display, tagTypeId, weight, operationId, questionId)))))))))
434 5437 17695 - 17703 Apply scala.Some.apply scala.Some.apply[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]]((api.this.RefType.refinedRefType.unsafeWrap[Int, eu.timepit.refined.numeric.Positive](20): eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Positive]))
435 4467 17734 - 17734 Select scala.math.Numeric.FloatIsFractional math.this.Numeric.FloatIsFractional
435 2200 17711 - 18169 Apply org.scalacheck.Gen.flatMap org.scalacheck.Gen.posNum[Float](math.this.Numeric.FloatIsFractional, Gen.this.Choose.chooseFloat).flatMap[org.make.core.tag.Tag](((weight: Float) => org.scalacheck.Gen.frequency[org.make.core.tag.TagDisplay](scalacheck.this.Gen.freqTuple[org.make.core.tag.TagDisplay.Inherit.type](scala.Tuple2.apply[Int, org.make.core.tag.TagDisplay.Inherit.type](8, org.make.core.tag.TagDisplay.Inherit)), scalacheck.this.Gen.freqTuple[org.make.core.tag.TagDisplay.Displayed.type](scala.Tuple2.apply[Int, org.make.core.tag.TagDisplay.Displayed.type](1, org.make.core.tag.TagDisplay.Displayed)), scalacheck.this.Gen.freqTuple[org.make.core.tag.TagDisplay.Hidden.type](scala.Tuple2.apply[Int, org.make.core.tag.TagDisplay.Hidden.type](1, org.make.core.tag.TagDisplay.Hidden))).flatMap[org.make.core.tag.Tag](((display: org.make.core.tag.TagDisplay) => org.scalacheck.Gen.oneOf[org.make.core.tag.TagTypeId](scala.`package`.Seq.apply[org.make.core.tag.TagTypeId](EntitiesGen.this.stake, EntitiesGen.this.solution, EntitiesGen.this.moment, EntitiesGen.this.target, EntitiesGen.this.actor, EntitiesGen.this.legacy)).map[org.make.core.tag.Tag](((tagTypeId: org.make.core.tag.TagTypeId) => org.make.core.tag.Tag.apply(IdGenerator.uuidGenerator.nextTagId(), label, display, tagTypeId, weight, operationId, questionId)))))))
435 2540 17734 - 17734 Select org.scalacheck.Gen.Choose.chooseFloat Gen.this.Choose.chooseFloat
436 1842 17775 - 17798 Apply scala.Tuple2.apply scala.Tuple2.apply[Int, org.make.core.tag.TagDisplay.Inherit.type](8, org.make.core.tag.TagDisplay.Inherit)
436 5613 17800 - 17825 Apply scala.Tuple2.apply scala.Tuple2.apply[Int, org.make.core.tag.TagDisplay.Displayed.type](1, org.make.core.tag.TagDisplay.Displayed)
436 3785 17779 - 17797 Select org.make.core.tag.TagDisplay.Inherit org.make.core.tag.TagDisplay.Inherit
436 3555 17800 - 17825 ApplyImplicitView org.scalacheck.Gen.freqTuple scalacheck.this.Gen.freqTuple[org.make.core.tag.TagDisplay.Displayed.type](scala.Tuple2.apply[Int, org.make.core.tag.TagDisplay.Displayed.type](1, org.make.core.tag.TagDisplay.Displayed))
436 2669 17828 - 17829 Literal <nosymbol> 1
436 2005 17827 - 17849 ApplyImplicitView org.scalacheck.Gen.freqTuple scalacheck.this.Gen.freqTuple[org.make.core.tag.TagDisplay.Hidden.type](scala.Tuple2.apply[Int, org.make.core.tag.TagDisplay.Hidden.type](1, org.make.core.tag.TagDisplay.Hidden))
436 4056 17801 - 17802 Literal <nosymbol> 1
436 2067 17804 - 17824 Select org.make.core.tag.TagDisplay.Displayed org.make.core.tag.TagDisplay.Displayed
436 4331 17748 - 18169 Apply org.scalacheck.Gen.flatMap org.scalacheck.Gen.frequency[org.make.core.tag.TagDisplay](scalacheck.this.Gen.freqTuple[org.make.core.tag.TagDisplay.Inherit.type](scala.Tuple2.apply[Int, org.make.core.tag.TagDisplay.Inherit.type](8, org.make.core.tag.TagDisplay.Inherit)), scalacheck.this.Gen.freqTuple[org.make.core.tag.TagDisplay.Displayed.type](scala.Tuple2.apply[Int, org.make.core.tag.TagDisplay.Displayed.type](1, org.make.core.tag.TagDisplay.Displayed)), scalacheck.this.Gen.freqTuple[org.make.core.tag.TagDisplay.Hidden.type](scala.Tuple2.apply[Int, org.make.core.tag.TagDisplay.Hidden.type](1, org.make.core.tag.TagDisplay.Hidden))).flatMap[org.make.core.tag.Tag](((display: org.make.core.tag.TagDisplay) => org.scalacheck.Gen.oneOf[org.make.core.tag.TagTypeId](scala.`package`.Seq.apply[org.make.core.tag.TagTypeId](EntitiesGen.this.stake, EntitiesGen.this.solution, EntitiesGen.this.moment, EntitiesGen.this.target, EntitiesGen.this.actor, EntitiesGen.this.legacy)).map[org.make.core.tag.Tag](((tagTypeId: org.make.core.tag.TagTypeId) => org.make.core.tag.Tag.apply(IdGenerator.uuidGenerator.nextTagId(), label, display, tagTypeId, weight, operationId, questionId)))))
436 410 17776 - 17777 Literal <nosymbol> 8
436 422 17831 - 17848 Select org.make.core.tag.TagDisplay.Hidden org.make.core.tag.TagDisplay.Hidden
436 3933 17827 - 17849 Apply scala.Tuple2.apply scala.Tuple2.apply[Int, org.make.core.tag.TagDisplay.Hidden.type](1, org.make.core.tag.TagDisplay.Hidden)
436 849 17775 - 17798 ApplyImplicitView org.scalacheck.Gen.freqTuple scalacheck.this.Gen.freqTuple[org.make.core.tag.TagDisplay.Inherit.type](scala.Tuple2.apply[Int, org.make.core.tag.TagDisplay.Inherit.type](8, org.make.core.tag.TagDisplay.Inherit))
437 4318 17891 - 17899 Select org.make.core.technical.generator.EntitiesGen.solution EntitiesGen.this.solution
437 2682 17924 - 17930 Select org.make.core.technical.generator.EntitiesGen.legacy EntitiesGen.this.legacy
437 699 17880 - 17931 Apply scala.collection.SeqFactory.Delegate.apply scala.`package`.Seq.apply[org.make.core.tag.TagTypeId](EntitiesGen.this.stake, EntitiesGen.this.solution, EntitiesGen.this.moment, EntitiesGen.this.target, EntitiesGen.this.actor, EntitiesGen.this.legacy)
437 860 17884 - 17889 Select org.make.core.technical.generator.EntitiesGen.stake EntitiesGen.this.stake
437 2074 17901 - 17907 Select org.make.core.technical.generator.EntitiesGen.moment EntitiesGen.this.moment
437 835 17857 - 18169 Apply org.scalacheck.Gen.map org.scalacheck.Gen.oneOf[org.make.core.tag.TagTypeId](scala.`package`.Seq.apply[org.make.core.tag.TagTypeId](EntitiesGen.this.stake, EntitiesGen.this.solution, EntitiesGen.this.moment, EntitiesGen.this.target, EntitiesGen.this.actor, EntitiesGen.this.legacy)).map[org.make.core.tag.Tag](((tagTypeId: org.make.core.tag.TagTypeId) => org.make.core.tag.Tag.apply(IdGenerator.uuidGenerator.nextTagId(), label, display, tagTypeId, weight, operationId, questionId)))
437 5620 17909 - 17915 Select org.make.core.technical.generator.EntitiesGen.target EntitiesGen.this.target
437 3652 17917 - 17922 Select org.make.core.technical.generator.EntitiesGen.actor EntitiesGen.this.actor
438 2012 17945 - 18169 Apply org.make.core.tag.Tag.apply org.make.core.tag.Tag.apply(IdGenerator.uuidGenerator.nextTagId(), label, display, tagTypeId, weight, operationId, questionId)
439 3941 17964 - 18001 Apply org.make.core.technical.IdGenerator.nextTagId IdGenerator.uuidGenerator.nextTagId()
450 3659 18287 - 18311 Apply org.make.core.proposal.ProposalKeywordKey.apply org.make.core.proposal.ProposalKeywordKey.apply(value)
450 3949 18226 - 18417 Apply org.scalacheck.Gen.flatMap CustomGenerators.LoremIpsumGen.word.map[org.make.core.proposal.ProposalKeywordKey](((value: String) => org.make.core.proposal.ProposalKeywordKey.apply(value))).flatMap[org.make.core.proposal.ProposalKeyword](((key: org.make.core.proposal.ProposalKeywordKey) => CustomGenerators.LoremIpsumGen.word.map[org.make.core.proposal.ProposalKeyword](((label: String) => org.make.core.proposal.ProposalKeyword.apply(key, label)))))
451 710 18319 - 18417 Apply org.scalacheck.Gen.map CustomGenerators.LoremIpsumGen.word.map[org.make.core.proposal.ProposalKeyword](((label: String) => org.make.core.proposal.ProposalKeyword.apply(key, label)))
452 2475 18376 - 18417 Apply org.make.core.proposal.ProposalKeyword.apply org.make.core.proposal.ProposalKeyword.apply(key, label)