@etherisc/gif-next 0.0.2-fbe8e04-715 → 0.0.2-fc0563c-260

Sign up to get free protection for your applications and to get access to all the features.
Files changed (783) hide show
  1. package/README.md +141 -23
  2. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
  3. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1075 -0
  4. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
  5. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +790 -0
  6. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
  7. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +843 -0
  8. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  9. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1664 -0
  10. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +1289 -0
  12. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1403 -0
  14. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +790 -0
  16. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  17. package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
  18. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1372 -0
  20. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +455 -0
  22. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  23. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +397 -0
  24. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +646 -0
  26. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  27. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1244 -0
  28. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +805 -0
  30. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +949 -0
  32. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  33. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1809 -0
  34. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +930 -0
  36. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  37. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +848 -0
  38. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  39. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +1284 -0
  40. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
  41. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
  42. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
  43. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1472 -0
  44. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +805 -0
  46. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  47. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2045 -0
  48. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  49. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +805 -0
  50. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
  51. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
  52. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  53. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1423 -0
  54. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  55. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +805 -0
  56. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  57. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1171 -0
  58. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  59. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1639 -0
  60. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  61. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +805 -0
  62. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  63. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2484 -0
  64. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  65. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +805 -0
  66. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  67. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +851 -0
  68. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  69. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +658 -1236
  70. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  71. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +733 -142
  72. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  73. package/artifacts/contracts/instance/Instance.sol/Instance.json +575 -2838
  74. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  75. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +2349 -0
  76. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  77. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +902 -0
  78. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  79. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1963 -739
  80. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  81. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +766 -483
  82. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  83. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +382 -162
  84. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  85. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3784 -0
  86. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
  87. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +866 -0
  88. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  89. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  90. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  91. package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -49
  92. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  93. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  94. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  95. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +223 -0
  96. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  97. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +192 -0
  98. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
  99. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
  100. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  101. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  102. package/artifacts/contracts/instance/module/{ITreasury.sol/ITreasury.json → IComponents.sol/IComponents.json} +2 -2
  103. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  104. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  105. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  106. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  107. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  108. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  109. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +957 -0
  110. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  111. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +810 -0
  112. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  113. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  114. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  115. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +772 -0
  116. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  117. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +762 -0
  118. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  119. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +873 -0
  120. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  121. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1042 -0
  122. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  123. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +810 -0
  124. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  125. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1242 -0
  126. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  127. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +805 -0
  128. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  129. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1438 -0
  130. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  131. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +866 -0
  132. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  133. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +1033 -0
  134. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  135. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +905 -0
  136. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  137. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1449 -0
  138. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  139. package/artifacts/contracts/pool/Pool.sol/Pool.json +1025 -0
  140. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  141. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +522 -0
  142. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  143. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1833 -0
  144. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  145. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +866 -0
  146. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  147. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +1036 -0
  148. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  149. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +790 -0
  150. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  151. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1159 -0
  152. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  153. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +805 -0
  154. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  155. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1552 -0
  156. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  157. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +894 -0
  158. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  159. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +804 -0
  160. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  161. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1104 -0
  162. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  163. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +1036 -0
  164. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  165. package/artifacts/contracts/{instance/service/IBundleService.sol/IBundleService.json → product/IPricingService.sol/IPricingService.json} +340 -357
  166. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  167. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +1016 -0
  168. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  169. package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → product/IRiskService.sol/IRiskService.json} +292 -291
  170. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  171. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1404 -0
  172. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
  173. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +783 -0
  174. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  175. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +854 -0
  176. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  177. package/artifacts/contracts/product/PricingService.sol/PricingService.json +932 -0
  178. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  179. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +814 -0
  180. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  181. package/artifacts/contracts/product/Product.sol/Product.json +1117 -0
  182. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  183. package/artifacts/contracts/product/RiskService.sol/RiskService.json +873 -0
  184. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  185. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +774 -0
  186. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  187. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +72 -16
  188. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  189. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +689 -113
  190. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  191. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +351 -226
  192. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
  193. package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
  194. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  195. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -0
  196. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  197. package/artifacts/contracts/registry/Registry.sol/Registry.json +1027 -149
  198. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  199. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +2147 -0
  200. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
  201. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1053 -0
  202. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  203. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +327 -322
  204. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  205. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +375 -119
  206. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  207. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2152 -0
  208. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  209. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
  210. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  211. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1389 -0
  212. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  213. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +683 -0
  214. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  215. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +352 -101
  216. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  217. package/artifacts/contracts/{components/BaseComponent.sol/BaseComponent.json → shared/Component.sol/Component.json} +350 -98
  218. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  219. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1535 -0
  220. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  221. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +854 -0
  222. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  223. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +632 -0
  224. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  225. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
  226. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  227. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
  228. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
  229. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
  230. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  231. package/artifacts/contracts/{instance/base/ComponentServiceBase.sol/ComponentServiceBase.json → shared/IComponent.sol/IComponent.json} +292 -183
  232. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  233. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1175 -0
  234. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  235. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +707 -0
  236. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  237. package/artifacts/contracts/{instance/IInstanceBase.sol/IInstanceBase.json → shared/IKeyValueStore.sol/IKeyValueStore.json} +96 -34
  238. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  239. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
  240. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  241. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +61 -22
  242. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  243. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +175 -0
  244. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  245. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +162 -15
  246. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  247. package/artifacts/contracts/{experiment/inheritance/IA.sol/ISharedA.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +15 -17
  248. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  249. package/artifacts/contracts/shared/IService.sol/IService.json +161 -154
  250. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  251. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  252. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  253. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +795 -0
  254. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  255. package/artifacts/contracts/{instance/base/IKeyValueStore.sol/IKeyValueStore.json → shared/KeyValueStore.sol/KeyValueStore.json} +129 -20
  256. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  257. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
  258. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  259. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  260. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  261. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +98 -28
  262. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  263. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +198 -0
  264. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  265. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +178 -55
  266. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  267. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +58 -0
  268. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  269. package/artifacts/contracts/shared/Service.sol/Service.json +177 -163
  270. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  271. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +635 -8
  272. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  273. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
  274. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  275. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
  276. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  277. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1646 -0
  278. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  279. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1196 -0
  280. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  281. package/artifacts/contracts/staking/Staking.sol/Staking.json +2054 -0
  282. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
  283. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +469 -0
  284. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  285. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
  286. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  287. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +842 -0
  288. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  289. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +616 -0
  290. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  291. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1425 -0
  292. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  293. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +782 -0
  294. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  295. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2297 -0
  296. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  297. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +617 -0
  298. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  299. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  300. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  301. package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
  302. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  303. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  304. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  305. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
  306. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  307. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  308. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  309. package/artifacts/contracts/type/Fee.sol/FeeLib.json +373 -0
  310. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  311. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  312. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  313. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  314. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  315. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -0
  316. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  317. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  318. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  319. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +241 -0
  320. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  321. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  322. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  323. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  324. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  325. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  326. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  327. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +204 -0
  328. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  329. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +254 -0
  330. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  331. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +265 -0
  332. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  333. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +148 -0
  334. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  335. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  336. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  337. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
  338. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  339. package/artifacts/contracts/type/String.sol/StrLib.json +180 -0
  340. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  341. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  342. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  343. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +572 -0
  344. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  345. package/artifacts/contracts/type/Version.sol/VersionLib.json +158 -0
  346. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  347. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +167 -0
  348. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  349. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +65 -0
  350. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  351. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +656 -0
  352. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  353. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +142 -0
  354. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  355. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +88 -0
  356. package/contracts/accounting/AccountingService.sol +274 -0
  357. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  358. package/contracts/accounting/IAccountingService.sol +47 -0
  359. package/contracts/authorization/AccessAdmin.sol +780 -0
  360. package/contracts/authorization/AccessAdminLib.sol +396 -0
  361. package/contracts/authorization/AccessManagerCloneable.sol +158 -0
  362. package/contracts/authorization/Authorization.sol +169 -0
  363. package/contracts/authorization/IAccess.sol +67 -0
  364. package/contracts/authorization/IAccessAdmin.sol +144 -0
  365. package/contracts/authorization/IAuthorization.sol +27 -0
  366. package/contracts/authorization/IServiceAuthorization.sol +78 -0
  367. package/contracts/authorization/ServiceAuthorization.sol +320 -0
  368. package/contracts/distribution/BasicDistribution.sol +141 -0
  369. package/contracts/distribution/BasicDistributionAuthorization.sol +67 -0
  370. package/contracts/distribution/Distribution.sol +247 -0
  371. package/contracts/distribution/DistributionService.sol +448 -0
  372. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  373. package/contracts/distribution/IDistributionComponent.sol +45 -0
  374. package/contracts/distribution/IDistributionService.sol +115 -0
  375. package/contracts/examples/fire/DamageLevel.sol +59 -0
  376. package/contracts/examples/fire/FirePool.sol +86 -0
  377. package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
  378. package/contracts/examples/fire/FireProduct.sol +433 -0
  379. package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
  380. package/contracts/examples/fire/FireUSD.sol +26 -0
  381. package/contracts/examples/unpermissioned/SimpleDistribution.sol +81 -0
  382. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  383. package/contracts/examples/unpermissioned/SimpleOracle.sol +133 -0
  384. package/contracts/examples/unpermissioned/SimplePool.sol +102 -0
  385. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  386. package/contracts/examples/unpermissioned/SimpleProduct.sol +391 -0
  387. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  388. package/contracts/instance/BundleSet.sol +130 -0
  389. package/contracts/instance/IInstance.sol +136 -51
  390. package/contracts/instance/IInstanceService.sol +103 -19
  391. package/contracts/instance/Instance.sol +246 -365
  392. package/contracts/instance/InstanceAdmin.sol +383 -0
  393. package/contracts/instance/InstanceAuthorizationV3.sol +266 -0
  394. package/contracts/instance/InstanceReader.sol +525 -208
  395. package/contracts/instance/InstanceService.sol +447 -209
  396. package/contracts/instance/InstanceServiceManager.sol +14 -32
  397. package/contracts/instance/InstanceStore.sol +298 -0
  398. package/contracts/instance/RiskSet.sol +126 -0
  399. package/contracts/instance/base/BalanceStore.sol +121 -0
  400. package/contracts/instance/{Cloneable.sol → base/Cloneable.sol} +4 -22
  401. package/contracts/instance/base/ObjectCounter.sol +20 -0
  402. package/contracts/instance/base/ObjectLifecycle.sol +108 -0
  403. package/contracts/instance/base/ObjectSet.sol +77 -0
  404. package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
  405. package/contracts/instance/module/IBundle.sol +10 -9
  406. package/contracts/instance/module/IComponents.sol +62 -0
  407. package/contracts/instance/module/IDistribution.sol +25 -10
  408. package/contracts/instance/module/IPolicy.sol +81 -21
  409. package/contracts/instance/module/IRisk.sol +6 -1
  410. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  411. package/contracts/oracle/BasicOracle.sol +45 -0
  412. package/contracts/oracle/BasicOracleAuthorization.sol +53 -0
  413. package/contracts/oracle/IOracle.sol +41 -0
  414. package/contracts/oracle/IOracleComponent.sol +33 -0
  415. package/contracts/oracle/IOracleService.sol +66 -0
  416. package/contracts/oracle/Oracle.sol +154 -0
  417. package/contracts/oracle/OracleService.sol +310 -0
  418. package/contracts/oracle/OracleServiceManager.sol +39 -0
  419. package/contracts/pool/BasicPool.sol +162 -0
  420. package/contracts/pool/BasicPoolAuthorization.sol +81 -0
  421. package/contracts/pool/BundleService.sol +386 -0
  422. package/contracts/pool/BundleServiceManager.sol +39 -0
  423. package/contracts/pool/IBundleService.sol +116 -0
  424. package/contracts/pool/IPoolComponent.sol +62 -0
  425. package/contracts/pool/IPoolService.sol +170 -0
  426. package/contracts/pool/Pool.sol +333 -0
  427. package/contracts/pool/PoolLib.sol +341 -0
  428. package/contracts/pool/PoolService.sol +614 -0
  429. package/contracts/pool/PoolServiceManager.sol +39 -0
  430. package/contracts/product/ApplicationService.sol +327 -0
  431. package/contracts/product/ApplicationServiceManager.sol +38 -0
  432. package/contracts/product/BasicProduct.sol +49 -0
  433. package/contracts/product/BasicProductAuthorization.sol +63 -0
  434. package/contracts/product/ClaimService.sol +641 -0
  435. package/contracts/product/ClaimServiceManager.sol +38 -0
  436. package/contracts/product/IApplicationService.sol +88 -0
  437. package/contracts/product/IClaimService.sol +135 -0
  438. package/contracts/product/IPolicyService.sol +102 -0
  439. package/contracts/product/IPricingService.sol +40 -0
  440. package/contracts/product/IProductComponent.sol +62 -0
  441. package/contracts/product/IRiskService.sol +48 -0
  442. package/contracts/product/PolicyService.sol +645 -0
  443. package/contracts/product/PolicyServiceLib.sol +139 -0
  444. package/contracts/product/PolicyServiceManager.sol +39 -0
  445. package/contracts/product/PricingService.sol +306 -0
  446. package/contracts/product/PricingServiceManager.sol +39 -0
  447. package/contracts/product/Product.sol +483 -0
  448. package/contracts/product/RiskService.sol +190 -0
  449. package/contracts/product/RiskServiceManager.sol +39 -0
  450. package/contracts/registry/ChainNft.sol +82 -35
  451. package/contracts/registry/IRegistry.sol +126 -32
  452. package/contracts/registry/IRegistryService.sol +40 -28
  453. package/contracts/registry/IRelease.sol +29 -0
  454. package/contracts/registry/ITransferInterceptor.sol +1 -1
  455. package/contracts/registry/Registry.sol +561 -273
  456. package/contracts/registry/RegistryAdmin.sol +188 -0
  457. package/contracts/registry/RegistryAuthorization.sol +284 -0
  458. package/contracts/registry/RegistryService.sol +116 -233
  459. package/contracts/registry/RegistryServiceManager.sol +26 -53
  460. package/contracts/registry/ReleaseAdmin.sol +195 -0
  461. package/contracts/registry/ReleaseLifecycle.sol +32 -0
  462. package/contracts/registry/ReleaseRegistry.sol +520 -0
  463. package/contracts/registry/ServiceAuthorizationV3.sol +345 -0
  464. package/contracts/registry/TokenRegistry.sol +263 -60
  465. package/contracts/shared/Component.sol +210 -0
  466. package/contracts/shared/ComponentService.sol +679 -0
  467. package/contracts/shared/ComponentServiceManager.sol +38 -0
  468. package/contracts/shared/ContractLib.sol +311 -0
  469. package/contracts/shared/IComponent.sol +58 -0
  470. package/contracts/shared/IComponentService.sol +111 -0
  471. package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
  472. package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
  473. package/contracts/{instance/base → shared}/ILifecycle.sol +5 -4
  474. package/contracts/shared/INftOwnable.sol +17 -12
  475. package/contracts/shared/IPolicyHolder.sol +35 -0
  476. package/contracts/shared/IRegisterable.sol +24 -5
  477. package/contracts/shared/IRegistryLinked.sol +11 -0
  478. package/contracts/shared/IService.sol +13 -5
  479. package/contracts/shared/InitializableERC165.sol +35 -0
  480. package/contracts/shared/InstanceLinkedComponent.sol +194 -0
  481. package/contracts/shared/KeyValueStore.sol +131 -0
  482. package/contracts/shared/Lifecycle.sol +88 -0
  483. package/contracts/shared/NftIdSet.sol +65 -0
  484. package/contracts/shared/NftOwnable.sol +77 -82
  485. package/contracts/shared/PolicyHolder.sol +63 -0
  486. package/contracts/shared/Registerable.sol +54 -38
  487. package/contracts/shared/RegistryLinked.sol +38 -0
  488. package/contracts/shared/Service.sol +45 -33
  489. package/contracts/shared/TokenHandler.sol +327 -12
  490. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  491. package/contracts/staking/IStaking.sol +195 -0
  492. package/contracts/staking/IStakingService.sol +170 -0
  493. package/contracts/staking/Staking.sol +605 -0
  494. package/contracts/staking/StakingLib.sol +281 -0
  495. package/contracts/staking/StakingLifecycle.sol +23 -0
  496. package/contracts/staking/StakingManager.sol +52 -0
  497. package/contracts/staking/StakingReader.sol +199 -0
  498. package/contracts/staking/StakingService.sol +468 -0
  499. package/contracts/staking/StakingServiceManager.sol +45 -0
  500. package/contracts/staking/StakingStore.sol +606 -0
  501. package/contracts/staking/TargetManagerLib.sol +211 -0
  502. package/contracts/{types → type}/AddressSet.sol +1 -1
  503. package/contracts/type/Amount.sol +150 -0
  504. package/contracts/{types → type}/Blocknumber.sol +27 -3
  505. package/contracts/type/ClaimId.sol +80 -0
  506. package/contracts/{types → type}/DistributorType.sol +2 -2
  507. package/contracts/type/Fee.sol +66 -0
  508. package/contracts/{types → type}/Key32.sol +2 -2
  509. package/contracts/type/Key32Set.sol +62 -0
  510. package/contracts/{types → type}/NftId.sol +28 -15
  511. package/contracts/{types → type}/NftIdSet.sol +2 -2
  512. package/contracts/type/ObjectType.sol +307 -0
  513. package/contracts/type/PayoutId.sol +82 -0
  514. package/contracts/{types → type}/Referral.sol +6 -1
  515. package/contracts/type/RequestId.sol +75 -0
  516. package/contracts/type/RiskId.sol +75 -0
  517. package/contracts/type/RoleId.sol +180 -0
  518. package/contracts/type/Seconds.sol +105 -0
  519. package/contracts/type/Selector.sol +107 -0
  520. package/contracts/{types → type}/StateId.sol +48 -4
  521. package/contracts/type/String.sol +65 -0
  522. package/contracts/{types → type}/Timestamp.sol +33 -19
  523. package/contracts/type/UFixed.sol +262 -0
  524. package/contracts/{types → type}/Version.sol +59 -7
  525. package/contracts/{shared → upgradeability}/IVersionable.sol +7 -47
  526. package/contracts/upgradeability/ProxyManager.sol +246 -0
  527. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +8 -4
  528. package/contracts/upgradeability/Versionable.sol +62 -0
  529. package/package.json +12 -8
  530. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
  531. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  532. package/artifacts/contracts/components/Distribution.sol/Distribution.json +0 -744
  533. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
  534. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -368
  535. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  536. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -152
  537. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  538. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -275
  539. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  540. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -157
  541. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  542. package/artifacts/contracts/components/Pool.sol/Pool.json +0 -939
  543. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  544. package/artifacts/contracts/components/Product.sol/Product.json +0 -855
  545. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
  546. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
  547. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
  548. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
  549. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
  550. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
  551. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  552. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  553. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  554. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  555. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  556. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  557. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  558. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  559. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  560. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  561. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  562. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  563. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  564. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  565. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  566. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  567. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  568. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  569. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  570. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  571. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  572. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  573. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
  574. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  575. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  576. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  577. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  578. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  579. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  580. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  581. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  582. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  583. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  584. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
  585. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +0 -1206
  586. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
  587. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -788
  588. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
  589. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
  590. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +0 -1082
  591. package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  592. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
  593. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -940
  594. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +0 -4
  595. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.json +0 -763
  596. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
  597. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -285
  598. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
  599. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  600. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
  601. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  602. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  603. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  604. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -502
  605. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  606. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
  607. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
  608. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -211
  609. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  610. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  611. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
  612. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -923
  613. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
  614. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -440
  615. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
  616. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
  617. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  618. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -684
  619. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  620. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -428
  621. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
  622. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
  623. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +0 -466
  624. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  625. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +0 -446
  626. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
  627. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  628. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -499
  629. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  630. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +0 -536
  631. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
  632. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -984
  633. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
  634. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -464
  635. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  636. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -718
  637. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  638. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -428
  639. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  640. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -768
  641. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  642. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -420
  643. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  644. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  645. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  646. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -35
  647. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  648. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +0 -205
  649. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  650. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -349
  651. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
  652. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +0 -442
  653. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  654. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  655. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  656. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +0 -228
  657. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  658. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  659. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  660. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -305
  661. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  662. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  663. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  664. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -600
  665. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  666. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  667. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  668. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  669. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  670. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -286
  671. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  672. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  673. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  674. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  675. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  676. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  677. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  678. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  679. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  680. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  681. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  682. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
  683. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  684. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  685. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  686. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
  687. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  688. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
  689. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  690. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  691. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  692. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  693. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  694. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -123
  695. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  696. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  697. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  698. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  699. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  700. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
  701. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  702. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -249
  703. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  704. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  705. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  706. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  707. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  708. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  709. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  710. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  711. package/contracts/components/BaseComponent.sol +0 -132
  712. package/contracts/components/Distribution.sol +0 -163
  713. package/contracts/components/IBaseComponent.sol +0 -31
  714. package/contracts/components/IDistributionComponent.sol +0 -44
  715. package/contracts/components/IPoolComponent.sol +0 -66
  716. package/contracts/components/IProductComponent.sol +0 -35
  717. package/contracts/components/Pool.sol +0 -271
  718. package/contracts/components/Product.sol +0 -292
  719. package/contracts/experiment/cloning/Cloner.sol +0 -47
  720. package/contracts/experiment/errors/Require.sol +0 -38
  721. package/contracts/experiment/errors/Revert.sol +0 -44
  722. package/contracts/experiment/inheritance/A.sol +0 -53
  723. package/contracts/experiment/inheritance/B.sol +0 -28
  724. package/contracts/experiment/inheritance/C.sol +0 -34
  725. package/contracts/experiment/inheritance/IA.sol +0 -13
  726. package/contracts/experiment/inheritance/IB.sol +0 -10
  727. package/contracts/experiment/inheritance/IC.sol +0 -12
  728. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  729. package/contracts/experiment/statemachine/ISM.sol +0 -25
  730. package/contracts/experiment/statemachine/SM.sol +0 -57
  731. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  732. package/contracts/experiment/types/TypeA.sol +0 -47
  733. package/contracts/experiment/types/TypeB.sol +0 -29
  734. package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +0 -23
  735. package/contracts/instance/BundleManager.sol +0 -129
  736. package/contracts/instance/IAccessManagerSimple.sol +0 -391
  737. package/contracts/instance/IInstanceBase.sol +0 -26
  738. package/contracts/instance/InstanceAccessManager.sol +0 -288
  739. package/contracts/instance/InstanceBase.sol +0 -41
  740. package/contracts/instance/ObjectManager.sol +0 -101
  741. package/contracts/instance/base/ComponentServiceBase.sol +0 -72
  742. package/contracts/instance/base/IInstanceBase.sol +0 -23
  743. package/contracts/instance/base/KeyValueStore.sol +0 -172
  744. package/contracts/instance/base/Lifecycle.sol +0 -100
  745. package/contracts/instance/module/IAccess.sol +0 -38
  746. package/contracts/instance/module/ISetup.sol +0 -46
  747. package/contracts/instance/module/ITreasury.sol +0 -23
  748. package/contracts/instance/service/BundleService.sol +0 -260
  749. package/contracts/instance/service/BundleServiceManager.sol +0 -54
  750. package/contracts/instance/service/ComponentOwnerService.sol +0 -317
  751. package/contracts/instance/service/DistributionService.sol +0 -118
  752. package/contracts/instance/service/DistributionServiceManager.sol +0 -54
  753. package/contracts/instance/service/IBundleService.sol +0 -45
  754. package/contracts/instance/service/IComponentOwnerService.sol +0 -20
  755. package/contracts/instance/service/IDistributionService.sol +0 -12
  756. package/contracts/instance/service/IPolicyService.sol +0 -87
  757. package/contracts/instance/service/IPoolService.sol +0 -20
  758. package/contracts/instance/service/IProductService.sol +0 -40
  759. package/contracts/instance/service/PolicyService.sol +0 -508
  760. package/contracts/instance/service/PolicyServiceManager.sol +0 -54
  761. package/contracts/instance/service/PoolService.sol +0 -124
  762. package/contracts/instance/service/PoolServiceManager.sol +0 -54
  763. package/contracts/instance/service/ProductService.sol +0 -173
  764. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  765. package/contracts/shared/ContractDeployerLib.sol +0 -72
  766. package/contracts/shared/ERC165.sol +0 -25
  767. package/contracts/shared/ProxyManager.sol +0 -94
  768. package/contracts/shared/RegisterableUpgradable.sol +0 -16
  769. package/contracts/shared/Versionable.sol +0 -147
  770. package/contracts/test/TestFee.sol +0 -25
  771. package/contracts/test/TestRegisterable.sol +0 -18
  772. package/contracts/test/TestRoleId.sol +0 -14
  773. package/contracts/test/TestService.sol +0 -24
  774. package/contracts/test/TestToken.sol +0 -26
  775. package/contracts/test/TestVersion.sol +0 -44
  776. package/contracts/test/TestVersionable.sol +0 -17
  777. package/contracts/types/ChainId.sol +0 -38
  778. package/contracts/types/Fee.sol +0 -56
  779. package/contracts/types/NumberId.sol +0 -52
  780. package/contracts/types/ObjectType.sol +0 -152
  781. package/contracts/types/RiskId.sol +0 -43
  782. package/contracts/types/RoleId.sol +0 -92
  783. package/contracts/types/UFixed.sol +0 -325
@@ -0,0 +1,1809 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "DistributionService",
4
+ "sourceName": "contracts/distribution/DistributionService.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "authority",
11
+ "type": "address"
12
+ }
13
+ ],
14
+ "name": "AccessManagedInvalidAuthority",
15
+ "type": "error"
16
+ },
17
+ {
18
+ "inputs": [
19
+ {
20
+ "internalType": "address",
21
+ "name": "caller",
22
+ "type": "address"
23
+ },
24
+ {
25
+ "internalType": "uint32",
26
+ "name": "delay",
27
+ "type": "uint32"
28
+ }
29
+ ],
30
+ "name": "AccessManagedRequiredDelay",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "caller",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "name": "AccessManagedUnauthorized",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "address",
48
+ "name": "authority",
49
+ "type": "address"
50
+ }
51
+ ],
52
+ "name": "ErrorAuthorityInvalid",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "address",
59
+ "name": "caller",
60
+ "type": "address"
61
+ }
62
+ ],
63
+ "name": "ErrorDistributionServiceCallerNotDistributor",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "inputs": [
68
+ {
69
+ "internalType": "address",
70
+ "name": "caller",
71
+ "type": "address"
72
+ }
73
+ ],
74
+ "name": "ErrorDistributionServiceCallerNotRegistered",
75
+ "type": "error"
76
+ },
77
+ {
78
+ "inputs": [
79
+ {
80
+ "internalType": "uint256",
81
+ "name": "commissionPercentage",
82
+ "type": "uint256"
83
+ },
84
+ {
85
+ "internalType": "uint256",
86
+ "name": "maxCommissionPercentage",
87
+ "type": "uint256"
88
+ }
89
+ ],
90
+ "name": "ErrorDistributionServiceCommissionTooHigh",
91
+ "type": "error"
92
+ },
93
+ {
94
+ "inputs": [
95
+ {
96
+ "internalType": "Amount",
97
+ "name": "amount",
98
+ "type": "uint96"
99
+ },
100
+ {
101
+ "internalType": "Amount",
102
+ "name": "limit",
103
+ "type": "uint96"
104
+ }
105
+ ],
106
+ "name": "ErrorDistributionServiceCommissionWithdrawAmountExceedsLimit",
107
+ "type": "error"
108
+ },
109
+ {
110
+ "inputs": [
111
+ {
112
+ "internalType": "UFixed",
113
+ "name": "maxDiscountPercentage",
114
+ "type": "uint160"
115
+ },
116
+ {
117
+ "internalType": "UFixed",
118
+ "name": "discountPercentage",
119
+ "type": "uint160"
120
+ }
121
+ ],
122
+ "name": "ErrorDistributionServiceDiscountTooHigh",
123
+ "type": "error"
124
+ },
125
+ {
126
+ "inputs": [
127
+ {
128
+ "internalType": "UFixed",
129
+ "name": "minDiscountPercentage",
130
+ "type": "uint160"
131
+ },
132
+ {
133
+ "internalType": "UFixed",
134
+ "name": "discountPercentage",
135
+ "type": "uint160"
136
+ }
137
+ ],
138
+ "name": "ErrorDistributionServiceDiscountTooLow",
139
+ "type": "error"
140
+ },
141
+ {
142
+ "inputs": [
143
+ {
144
+ "internalType": "NftId",
145
+ "name": "distributorNftId",
146
+ "type": "uint96"
147
+ },
148
+ {
149
+ "internalType": "NftId",
150
+ "name": "distributorDistributionNftId",
151
+ "type": "uint96"
152
+ },
153
+ {
154
+ "internalType": "NftId",
155
+ "name": "distributionNftId",
156
+ "type": "uint96"
157
+ }
158
+ ],
159
+ "name": "ErrorDistributionServiceDistributorDistributionMismatch",
160
+ "type": "error"
161
+ },
162
+ {
163
+ "inputs": [
164
+ {
165
+ "internalType": "DistributorType",
166
+ "name": "distributorType",
167
+ "type": "bytes8"
168
+ },
169
+ {
170
+ "internalType": "NftId",
171
+ "name": "distributorTypeDistributionNftId",
172
+ "type": "uint96"
173
+ },
174
+ {
175
+ "internalType": "NftId",
176
+ "name": "distributionNftId",
177
+ "type": "uint96"
178
+ }
179
+ ],
180
+ "name": "ErrorDistributionServiceDistributorTypeDistributionMismatch",
181
+ "type": "error"
182
+ },
183
+ {
184
+ "inputs": [
185
+ {
186
+ "internalType": "Timestamp",
187
+ "name": "expiryAt",
188
+ "type": "uint40"
189
+ }
190
+ ],
191
+ "name": "ErrorDistributionServiceExpirationInvalid",
192
+ "type": "error"
193
+ },
194
+ {
195
+ "inputs": [
196
+ {
197
+ "internalType": "Seconds",
198
+ "name": "maxReferralLifetime",
199
+ "type": "uint40"
200
+ },
201
+ {
202
+ "internalType": "Timestamp",
203
+ "name": "expiryAt",
204
+ "type": "uint40"
205
+ }
206
+ ],
207
+ "name": "ErrorDistributionServiceExpiryTooLong",
208
+ "type": "error"
209
+ },
210
+ {
211
+ "inputs": [
212
+ {
213
+ "internalType": "Amount",
214
+ "name": "transferredDistributionFeeAmount",
215
+ "type": "uint96"
216
+ },
217
+ {
218
+ "internalType": "Amount",
219
+ "name": "expectedDistributionFeeAmount",
220
+ "type": "uint96"
221
+ }
222
+ ],
223
+ "name": "ErrorDistributionServiceInvalidFeeTransferred",
224
+ "type": "error"
225
+ },
226
+ {
227
+ "inputs": [],
228
+ "name": "ErrorDistributionServiceInvalidReferral",
229
+ "type": "error"
230
+ },
231
+ {
232
+ "inputs": [
233
+ {
234
+ "internalType": "ReferralId",
235
+ "name": "referralId",
236
+ "type": "bytes8"
237
+ }
238
+ ],
239
+ "name": "ErrorDistributionServiceInvalidReferralId",
240
+ "type": "error"
241
+ },
242
+ {
243
+ "inputs": [
244
+ {
245
+ "internalType": "uint256",
246
+ "name": "maxDiscountPercentage",
247
+ "type": "uint256"
248
+ },
249
+ {
250
+ "internalType": "uint256",
251
+ "name": "limit",
252
+ "type": "uint256"
253
+ }
254
+ ],
255
+ "name": "ErrorDistributionServiceMaxDiscountTooHigh",
256
+ "type": "error"
257
+ },
258
+ {
259
+ "inputs": [
260
+ {
261
+ "internalType": "uint256",
262
+ "name": "limit",
263
+ "type": "uint256"
264
+ },
265
+ {
266
+ "internalType": "uint256",
267
+ "name": "maxReferrals",
268
+ "type": "uint256"
269
+ }
270
+ ],
271
+ "name": "ErrorDistributionServiceMaxReferralsExceeded",
272
+ "type": "error"
273
+ },
274
+ {
275
+ "inputs": [
276
+ {
277
+ "internalType": "uint256",
278
+ "name": "minFee",
279
+ "type": "uint256"
280
+ },
281
+ {
282
+ "internalType": "uint256",
283
+ "name": "limit",
284
+ "type": "uint256"
285
+ }
286
+ ],
287
+ "name": "ErrorDistributionServiceMinFeeTooHigh",
288
+ "type": "error"
289
+ },
290
+ {
291
+ "inputs": [
292
+ {
293
+ "internalType": "NftId",
294
+ "name": "nftId",
295
+ "type": "uint96"
296
+ },
297
+ {
298
+ "internalType": "NftId",
299
+ "name": "parentNftId",
300
+ "type": "uint96"
301
+ }
302
+ ],
303
+ "name": "ErrorDistributionServiceParentNftIdNotInstance",
304
+ "type": "error"
305
+ },
306
+ {
307
+ "inputs": [
308
+ {
309
+ "internalType": "ReferralId",
310
+ "name": "referralId",
311
+ "type": "bytes8"
312
+ },
313
+ {
314
+ "internalType": "NftId",
315
+ "name": "referralDistributionNft",
316
+ "type": "uint96"
317
+ },
318
+ {
319
+ "internalType": "NftId",
320
+ "name": "distributionNftId",
321
+ "type": "uint96"
322
+ }
323
+ ],
324
+ "name": "ErrorDistributionServiceReferralDistributionMismatch",
325
+ "type": "error"
326
+ },
327
+ {
328
+ "inputs": [
329
+ {
330
+ "internalType": "NftId",
331
+ "name": "distributionNftId",
332
+ "type": "uint96"
333
+ },
334
+ {
335
+ "internalType": "ReferralId",
336
+ "name": "referralId",
337
+ "type": "bytes8"
338
+ }
339
+ ],
340
+ "name": "ErrorDistributionServiceReferralInvalid",
341
+ "type": "error"
342
+ },
343
+ {
344
+ "inputs": [
345
+ {
346
+ "internalType": "uint256",
347
+ "name": "maxDiscountPercentage",
348
+ "type": "uint256"
349
+ },
350
+ {
351
+ "internalType": "uint256",
352
+ "name": "limit",
353
+ "type": "uint256"
354
+ }
355
+ ],
356
+ "name": "ErrorDistributionServiceVariableFeesTooHight",
357
+ "type": "error"
358
+ },
359
+ {
360
+ "inputs": [
361
+ {
362
+ "internalType": "NftId",
363
+ "name": "nftId",
364
+ "type": "uint96"
365
+ }
366
+ ],
367
+ "name": "ErrorNftOwnableAlreadyLinked",
368
+ "type": "error"
369
+ },
370
+ {
371
+ "inputs": [
372
+ {
373
+ "internalType": "address",
374
+ "name": "contractAddress",
375
+ "type": "address"
376
+ }
377
+ ],
378
+ "name": "ErrorNftOwnableContractNotRegistered",
379
+ "type": "error"
380
+ },
381
+ {
382
+ "inputs": [],
383
+ "name": "ErrorNftOwnableInitialOwnerZero",
384
+ "type": "error"
385
+ },
386
+ {
387
+ "inputs": [
388
+ {
389
+ "internalType": "NftId",
390
+ "name": "nftId",
391
+ "type": "uint96"
392
+ },
393
+ {
394
+ "internalType": "ObjectType",
395
+ "name": "expectedObjectType",
396
+ "type": "uint8"
397
+ }
398
+ ],
399
+ "name": "ErrorNftOwnableInvalidType",
400
+ "type": "error"
401
+ },
402
+ {
403
+ "inputs": [
404
+ {
405
+ "internalType": "address",
406
+ "name": "account",
407
+ "type": "address"
408
+ }
409
+ ],
410
+ "name": "ErrorNftOwnableNotOwner",
411
+ "type": "error"
412
+ },
413
+ {
414
+ "inputs": [
415
+ {
416
+ "internalType": "address",
417
+ "name": "registryAddress",
418
+ "type": "address"
419
+ }
420
+ ],
421
+ "name": "ErrorNotRegistry",
422
+ "type": "error"
423
+ },
424
+ {
425
+ "inputs": [],
426
+ "name": "ErrorRegisterableNotActive",
427
+ "type": "error"
428
+ },
429
+ {
430
+ "inputs": [],
431
+ "name": "ErrorVersionableInitializeNotImplemented",
432
+ "type": "error"
433
+ },
434
+ {
435
+ "inputs": [],
436
+ "name": "ErrorVersionableUpgradeNotImplemented",
437
+ "type": "error"
438
+ },
439
+ {
440
+ "inputs": [],
441
+ "name": "InvalidInitialization",
442
+ "type": "error"
443
+ },
444
+ {
445
+ "inputs": [],
446
+ "name": "NotInitializing",
447
+ "type": "error"
448
+ },
449
+ {
450
+ "inputs": [],
451
+ "name": "ReentrancyGuardReentrantCall",
452
+ "type": "error"
453
+ },
454
+ {
455
+ "inputs": [],
456
+ "name": "UFixedLibNegativeResult",
457
+ "type": "error"
458
+ },
459
+ {
460
+ "anonymous": false,
461
+ "inputs": [
462
+ {
463
+ "indexed": false,
464
+ "internalType": "address",
465
+ "name": "authority",
466
+ "type": "address"
467
+ }
468
+ ],
469
+ "name": "AuthorityUpdated",
470
+ "type": "event"
471
+ },
472
+ {
473
+ "anonymous": false,
474
+ "inputs": [
475
+ {
476
+ "indexed": false,
477
+ "internalType": "uint64",
478
+ "name": "version",
479
+ "type": "uint64"
480
+ }
481
+ ],
482
+ "name": "Initialized",
483
+ "type": "event"
484
+ },
485
+ {
486
+ "anonymous": false,
487
+ "inputs": [
488
+ {
489
+ "indexed": false,
490
+ "internalType": "NftId",
491
+ "name": "distributorNftId",
492
+ "type": "uint96"
493
+ },
494
+ {
495
+ "indexed": false,
496
+ "internalType": "address",
497
+ "name": "recipient",
498
+ "type": "address"
499
+ },
500
+ {
501
+ "indexed": false,
502
+ "internalType": "address",
503
+ "name": "tokenAddress",
504
+ "type": "address"
505
+ },
506
+ {
507
+ "indexed": false,
508
+ "internalType": "Amount",
509
+ "name": "amount",
510
+ "type": "uint96"
511
+ }
512
+ ],
513
+ "name": "LogDistributionServiceCommissionWithdrawn",
514
+ "type": "event"
515
+ },
516
+ {
517
+ "anonymous": false,
518
+ "inputs": [
519
+ {
520
+ "indexed": false,
521
+ "internalType": "NftId",
522
+ "name": "distributionNftId",
523
+ "type": "uint96"
524
+ },
525
+ {
526
+ "indexed": false,
527
+ "internalType": "NftId",
528
+ "name": "distributorNftId",
529
+ "type": "uint96"
530
+ },
531
+ {
532
+ "indexed": false,
533
+ "internalType": "DistributorType",
534
+ "name": "distributorType",
535
+ "type": "bytes8"
536
+ },
537
+ {
538
+ "indexed": false,
539
+ "internalType": "address",
540
+ "name": "distributor",
541
+ "type": "address"
542
+ }
543
+ ],
544
+ "name": "LogDistributionServiceDistributorCreated",
545
+ "type": "event"
546
+ },
547
+ {
548
+ "anonymous": false,
549
+ "inputs": [
550
+ {
551
+ "indexed": false,
552
+ "internalType": "NftId",
553
+ "name": "distributorNftId",
554
+ "type": "uint96"
555
+ },
556
+ {
557
+ "indexed": false,
558
+ "internalType": "DistributorType",
559
+ "name": "oldDistributorType",
560
+ "type": "bytes8"
561
+ },
562
+ {
563
+ "indexed": false,
564
+ "internalType": "DistributorType",
565
+ "name": "newDistributorType",
566
+ "type": "bytes8"
567
+ }
568
+ ],
569
+ "name": "LogDistributionServiceDistributorTypeChanged",
570
+ "type": "event"
571
+ },
572
+ {
573
+ "anonymous": false,
574
+ "inputs": [
575
+ {
576
+ "indexed": false,
577
+ "internalType": "NftId",
578
+ "name": "distributionNftId",
579
+ "type": "uint96"
580
+ },
581
+ {
582
+ "indexed": false,
583
+ "internalType": "string",
584
+ "name": "name",
585
+ "type": "string"
586
+ }
587
+ ],
588
+ "name": "LogDistributionServiceDistributorTypeCreated",
589
+ "type": "event"
590
+ },
591
+ {
592
+ "anonymous": false,
593
+ "inputs": [
594
+ {
595
+ "indexed": false,
596
+ "internalType": "NftId",
597
+ "name": "distributionNftId",
598
+ "type": "uint96"
599
+ },
600
+ {
601
+ "indexed": false,
602
+ "internalType": "NftId",
603
+ "name": "distributorNftId",
604
+ "type": "uint96"
605
+ },
606
+ {
607
+ "indexed": false,
608
+ "internalType": "ReferralId",
609
+ "name": "referralId",
610
+ "type": "bytes8"
611
+ },
612
+ {
613
+ "indexed": false,
614
+ "internalType": "string",
615
+ "name": "code",
616
+ "type": "string"
617
+ }
618
+ ],
619
+ "name": "LogDistributionServiceReferralCreated",
620
+ "type": "event"
621
+ },
622
+ {
623
+ "anonymous": false,
624
+ "inputs": [
625
+ {
626
+ "indexed": false,
627
+ "internalType": "NftId",
628
+ "name": "distributionNftId",
629
+ "type": "uint96"
630
+ },
631
+ {
632
+ "indexed": false,
633
+ "internalType": "NftId",
634
+ "name": "distributorNftId",
635
+ "type": "uint96"
636
+ },
637
+ {
638
+ "indexed": false,
639
+ "internalType": "ReferralId",
640
+ "name": "referralId",
641
+ "type": "bytes8"
642
+ },
643
+ {
644
+ "indexed": false,
645
+ "internalType": "uint32",
646
+ "name": "usedReferrals",
647
+ "type": "uint32"
648
+ }
649
+ ],
650
+ "name": "LogDistributionServiceReferralProcessed",
651
+ "type": "event"
652
+ },
653
+ {
654
+ "anonymous": false,
655
+ "inputs": [
656
+ {
657
+ "indexed": false,
658
+ "internalType": "NftId",
659
+ "name": "distributionNftId",
660
+ "type": "uint96"
661
+ },
662
+ {
663
+ "indexed": false,
664
+ "internalType": "ReferralId",
665
+ "name": "referralId",
666
+ "type": "bytes8"
667
+ }
668
+ ],
669
+ "name": "LogDistributionServiceSaleProcessed",
670
+ "type": "event"
671
+ },
672
+ {
673
+ "anonymous": false,
674
+ "inputs": [
675
+ {
676
+ "indexed": false,
677
+ "internalType": "NftId",
678
+ "name": "nftId",
679
+ "type": "uint96"
680
+ },
681
+ {
682
+ "indexed": false,
683
+ "internalType": "address",
684
+ "name": "owner",
685
+ "type": "address"
686
+ }
687
+ ],
688
+ "name": "LogNftOwnableNftLinkedToAddress",
689
+ "type": "event"
690
+ },
691
+ {
692
+ "inputs": [],
693
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
694
+ "outputs": [
695
+ {
696
+ "internalType": "bytes32",
697
+ "name": "",
698
+ "type": "bytes32"
699
+ }
700
+ ],
701
+ "stateMutability": "view",
702
+ "type": "function"
703
+ },
704
+ {
705
+ "inputs": [],
706
+ "name": "REGISTERABLE_LOCATION_V1",
707
+ "outputs": [
708
+ {
709
+ "internalType": "bytes32",
710
+ "name": "",
711
+ "type": "bytes32"
712
+ }
713
+ ],
714
+ "stateMutability": "view",
715
+ "type": "function"
716
+ },
717
+ {
718
+ "inputs": [],
719
+ "name": "authority",
720
+ "outputs": [
721
+ {
722
+ "internalType": "address",
723
+ "name": "",
724
+ "type": "address"
725
+ }
726
+ ],
727
+ "stateMutability": "view",
728
+ "type": "function"
729
+ },
730
+ {
731
+ "inputs": [
732
+ {
733
+ "internalType": "NftId",
734
+ "name": "distributorNftId",
735
+ "type": "uint96"
736
+ },
737
+ {
738
+ "internalType": "DistributorType",
739
+ "name": "newDistributorType",
740
+ "type": "bytes8"
741
+ },
742
+ {
743
+ "internalType": "bytes",
744
+ "name": "data",
745
+ "type": "bytes"
746
+ }
747
+ ],
748
+ "name": "changeDistributorType",
749
+ "outputs": [],
750
+ "stateMutability": "nonpayable",
751
+ "type": "function"
752
+ },
753
+ {
754
+ "inputs": [
755
+ {
756
+ "internalType": "address",
757
+ "name": "distributor",
758
+ "type": "address"
759
+ },
760
+ {
761
+ "internalType": "DistributorType",
762
+ "name": "distributorType",
763
+ "type": "bytes8"
764
+ },
765
+ {
766
+ "internalType": "bytes",
767
+ "name": "data",
768
+ "type": "bytes"
769
+ }
770
+ ],
771
+ "name": "createDistributor",
772
+ "outputs": [
773
+ {
774
+ "internalType": "NftId",
775
+ "name": "distributorNftId",
776
+ "type": "uint96"
777
+ }
778
+ ],
779
+ "stateMutability": "nonpayable",
780
+ "type": "function"
781
+ },
782
+ {
783
+ "inputs": [
784
+ {
785
+ "internalType": "string",
786
+ "name": "name",
787
+ "type": "string"
788
+ },
789
+ {
790
+ "internalType": "UFixed",
791
+ "name": "minDiscountPercentage",
792
+ "type": "uint160"
793
+ },
794
+ {
795
+ "internalType": "UFixed",
796
+ "name": "maxDiscountPercentage",
797
+ "type": "uint160"
798
+ },
799
+ {
800
+ "internalType": "UFixed",
801
+ "name": "commissionPercentage",
802
+ "type": "uint160"
803
+ },
804
+ {
805
+ "internalType": "uint32",
806
+ "name": "maxReferralCount",
807
+ "type": "uint32"
808
+ },
809
+ {
810
+ "internalType": "Seconds",
811
+ "name": "maxReferralLifetime",
812
+ "type": "uint40"
813
+ },
814
+ {
815
+ "internalType": "bool",
816
+ "name": "allowSelfReferrals",
817
+ "type": "bool"
818
+ },
819
+ {
820
+ "internalType": "bool",
821
+ "name": "allowRenewals",
822
+ "type": "bool"
823
+ },
824
+ {
825
+ "internalType": "bytes",
826
+ "name": "data",
827
+ "type": "bytes"
828
+ }
829
+ ],
830
+ "name": "createDistributorType",
831
+ "outputs": [
832
+ {
833
+ "internalType": "DistributorType",
834
+ "name": "distributorType",
835
+ "type": "bytes8"
836
+ }
837
+ ],
838
+ "stateMutability": "nonpayable",
839
+ "type": "function"
840
+ },
841
+ {
842
+ "inputs": [
843
+ {
844
+ "internalType": "NftId",
845
+ "name": "distributorNftId",
846
+ "type": "uint96"
847
+ },
848
+ {
849
+ "internalType": "string",
850
+ "name": "code",
851
+ "type": "string"
852
+ },
853
+ {
854
+ "internalType": "UFixed",
855
+ "name": "discountPercentage",
856
+ "type": "uint160"
857
+ },
858
+ {
859
+ "internalType": "uint32",
860
+ "name": "maxReferrals",
861
+ "type": "uint32"
862
+ },
863
+ {
864
+ "internalType": "Timestamp",
865
+ "name": "expiryAt",
866
+ "type": "uint40"
867
+ },
868
+ {
869
+ "internalType": "bytes",
870
+ "name": "data",
871
+ "type": "bytes"
872
+ }
873
+ ],
874
+ "name": "createReferral",
875
+ "outputs": [
876
+ {
877
+ "internalType": "ReferralId",
878
+ "name": "referralId",
879
+ "type": "bytes8"
880
+ }
881
+ ],
882
+ "stateMutability": "nonpayable",
883
+ "type": "function"
884
+ },
885
+ {
886
+ "inputs": [
887
+ {
888
+ "internalType": "contract InstanceReader",
889
+ "name": "instanceReader",
890
+ "type": "address"
891
+ },
892
+ {
893
+ "internalType": "ReferralId",
894
+ "name": "referralId",
895
+ "type": "bytes8"
896
+ }
897
+ ],
898
+ "name": "getDiscountPercentage",
899
+ "outputs": [
900
+ {
901
+ "internalType": "UFixed",
902
+ "name": "discountPercentage",
903
+ "type": "uint160"
904
+ },
905
+ {
906
+ "internalType": "ReferralStatus",
907
+ "name": "status",
908
+ "type": "uint8"
909
+ }
910
+ ],
911
+ "stateMutability": "view",
912
+ "type": "function"
913
+ },
914
+ {
915
+ "inputs": [],
916
+ "name": "getDomain",
917
+ "outputs": [
918
+ {
919
+ "internalType": "ObjectType",
920
+ "name": "serviceDomain",
921
+ "type": "uint8"
922
+ }
923
+ ],
924
+ "stateMutability": "pure",
925
+ "type": "function"
926
+ },
927
+ {
928
+ "inputs": [],
929
+ "name": "getInitialInfo",
930
+ "outputs": [
931
+ {
932
+ "components": [
933
+ {
934
+ "internalType": "NftId",
935
+ "name": "nftId",
936
+ "type": "uint96"
937
+ },
938
+ {
939
+ "internalType": "NftId",
940
+ "name": "parentNftId",
941
+ "type": "uint96"
942
+ },
943
+ {
944
+ "internalType": "ObjectType",
945
+ "name": "objectType",
946
+ "type": "uint8"
947
+ },
948
+ {
949
+ "internalType": "bool",
950
+ "name": "isInterceptor",
951
+ "type": "bool"
952
+ },
953
+ {
954
+ "internalType": "address",
955
+ "name": "objectAddress",
956
+ "type": "address"
957
+ },
958
+ {
959
+ "internalType": "address",
960
+ "name": "initialOwner",
961
+ "type": "address"
962
+ },
963
+ {
964
+ "internalType": "bytes",
965
+ "name": "data",
966
+ "type": "bytes"
967
+ }
968
+ ],
969
+ "internalType": "struct IRegistry.ObjectInfo",
970
+ "name": "info",
971
+ "type": "tuple"
972
+ }
973
+ ],
974
+ "stateMutability": "view",
975
+ "type": "function"
976
+ },
977
+ {
978
+ "inputs": [],
979
+ "name": "getNftId",
980
+ "outputs": [
981
+ {
982
+ "internalType": "NftId",
983
+ "name": "",
984
+ "type": "uint96"
985
+ }
986
+ ],
987
+ "stateMutability": "view",
988
+ "type": "function"
989
+ },
990
+ {
991
+ "inputs": [],
992
+ "name": "getOwner",
993
+ "outputs": [
994
+ {
995
+ "internalType": "address",
996
+ "name": "",
997
+ "type": "address"
998
+ }
999
+ ],
1000
+ "stateMutability": "view",
1001
+ "type": "function"
1002
+ },
1003
+ {
1004
+ "inputs": [],
1005
+ "name": "getRegistry",
1006
+ "outputs": [
1007
+ {
1008
+ "internalType": "contract IRegistry",
1009
+ "name": "",
1010
+ "type": "address"
1011
+ }
1012
+ ],
1013
+ "stateMutability": "view",
1014
+ "type": "function"
1015
+ },
1016
+ {
1017
+ "inputs": [],
1018
+ "name": "getRelease",
1019
+ "outputs": [
1020
+ {
1021
+ "internalType": "VersionPart",
1022
+ "name": "release",
1023
+ "type": "uint8"
1024
+ }
1025
+ ],
1026
+ "stateMutability": "view",
1027
+ "type": "function"
1028
+ },
1029
+ {
1030
+ "inputs": [],
1031
+ "name": "getRoleId",
1032
+ "outputs": [
1033
+ {
1034
+ "internalType": "RoleId",
1035
+ "name": "serviceRoleId",
1036
+ "type": "uint64"
1037
+ }
1038
+ ],
1039
+ "stateMutability": "view",
1040
+ "type": "function"
1041
+ },
1042
+ {
1043
+ "inputs": [],
1044
+ "name": "getVersion",
1045
+ "outputs": [
1046
+ {
1047
+ "internalType": "Version",
1048
+ "name": "",
1049
+ "type": "uint24"
1050
+ }
1051
+ ],
1052
+ "stateMutability": "pure",
1053
+ "type": "function"
1054
+ },
1055
+ {
1056
+ "inputs": [
1057
+ {
1058
+ "internalType": "address",
1059
+ "name": "activatedBy",
1060
+ "type": "address"
1061
+ },
1062
+ {
1063
+ "internalType": "bytes",
1064
+ "name": "data",
1065
+ "type": "bytes"
1066
+ }
1067
+ ],
1068
+ "name": "initializeVersionable",
1069
+ "outputs": [],
1070
+ "stateMutability": "nonpayable",
1071
+ "type": "function"
1072
+ },
1073
+ {
1074
+ "inputs": [],
1075
+ "name": "isActive",
1076
+ "outputs": [
1077
+ {
1078
+ "internalType": "bool",
1079
+ "name": "active",
1080
+ "type": "bool"
1081
+ }
1082
+ ],
1083
+ "stateMutability": "view",
1084
+ "type": "function"
1085
+ },
1086
+ {
1087
+ "inputs": [],
1088
+ "name": "isConsumingScheduledOp",
1089
+ "outputs": [
1090
+ {
1091
+ "internalType": "bytes4",
1092
+ "name": "",
1093
+ "type": "bytes4"
1094
+ }
1095
+ ],
1096
+ "stateMutability": "view",
1097
+ "type": "function"
1098
+ },
1099
+ {
1100
+ "inputs": [],
1101
+ "name": "linkToRegisteredNftId",
1102
+ "outputs": [
1103
+ {
1104
+ "internalType": "NftId",
1105
+ "name": "nftId",
1106
+ "type": "uint96"
1107
+ }
1108
+ ],
1109
+ "stateMutability": "nonpayable",
1110
+ "type": "function"
1111
+ },
1112
+ {
1113
+ "inputs": [
1114
+ {
1115
+ "internalType": "NftId",
1116
+ "name": "distributionNftId",
1117
+ "type": "uint96"
1118
+ },
1119
+ {
1120
+ "internalType": "ReferralId",
1121
+ "name": "referralId",
1122
+ "type": "bytes8"
1123
+ }
1124
+ ],
1125
+ "name": "processReferral",
1126
+ "outputs": [],
1127
+ "stateMutability": "nonpayable",
1128
+ "type": "function"
1129
+ },
1130
+ {
1131
+ "inputs": [
1132
+ {
1133
+ "internalType": "NftId",
1134
+ "name": "distributionNftId",
1135
+ "type": "uint96"
1136
+ },
1137
+ {
1138
+ "internalType": "ReferralId",
1139
+ "name": "referralId",
1140
+ "type": "bytes8"
1141
+ },
1142
+ {
1143
+ "components": [
1144
+ {
1145
+ "internalType": "Amount",
1146
+ "name": "productFeeAmount",
1147
+ "type": "uint96"
1148
+ },
1149
+ {
1150
+ "internalType": "Amount",
1151
+ "name": "distributionFeeAndCommissionAmount",
1152
+ "type": "uint96"
1153
+ },
1154
+ {
1155
+ "internalType": "Amount",
1156
+ "name": "poolPremiumAndFeeAmount",
1157
+ "type": "uint96"
1158
+ },
1159
+ {
1160
+ "internalType": "Amount",
1161
+ "name": "netPremiumAmount",
1162
+ "type": "uint96"
1163
+ },
1164
+ {
1165
+ "internalType": "Amount",
1166
+ "name": "fullPremiumAmount",
1167
+ "type": "uint96"
1168
+ },
1169
+ {
1170
+ "internalType": "Amount",
1171
+ "name": "premiumAmount",
1172
+ "type": "uint96"
1173
+ },
1174
+ {
1175
+ "internalType": "Amount",
1176
+ "name": "productFeeFixAmount",
1177
+ "type": "uint96"
1178
+ },
1179
+ {
1180
+ "internalType": "Amount",
1181
+ "name": "poolFeeFixAmount",
1182
+ "type": "uint96"
1183
+ },
1184
+ {
1185
+ "internalType": "Amount",
1186
+ "name": "bundleFeeFixAmount",
1187
+ "type": "uint96"
1188
+ },
1189
+ {
1190
+ "internalType": "Amount",
1191
+ "name": "distributionFeeFixAmount",
1192
+ "type": "uint96"
1193
+ },
1194
+ {
1195
+ "internalType": "Amount",
1196
+ "name": "productFeeVarAmount",
1197
+ "type": "uint96"
1198
+ },
1199
+ {
1200
+ "internalType": "Amount",
1201
+ "name": "poolFeeVarAmount",
1202
+ "type": "uint96"
1203
+ },
1204
+ {
1205
+ "internalType": "Amount",
1206
+ "name": "bundleFeeVarAmount",
1207
+ "type": "uint96"
1208
+ },
1209
+ {
1210
+ "internalType": "Amount",
1211
+ "name": "distributionFeeVarAmount",
1212
+ "type": "uint96"
1213
+ },
1214
+ {
1215
+ "internalType": "Amount",
1216
+ "name": "distributionOwnerFeeFixAmount",
1217
+ "type": "uint96"
1218
+ },
1219
+ {
1220
+ "internalType": "Amount",
1221
+ "name": "distributionOwnerFeeVarAmount",
1222
+ "type": "uint96"
1223
+ },
1224
+ {
1225
+ "internalType": "Amount",
1226
+ "name": "commissionAmount",
1227
+ "type": "uint96"
1228
+ },
1229
+ {
1230
+ "internalType": "Amount",
1231
+ "name": "discountAmount",
1232
+ "type": "uint96"
1233
+ }
1234
+ ],
1235
+ "internalType": "struct IPolicy.PremiumInfo",
1236
+ "name": "premium",
1237
+ "type": "tuple"
1238
+ }
1239
+ ],
1240
+ "name": "processSale",
1241
+ "outputs": [],
1242
+ "stateMutability": "nonpayable",
1243
+ "type": "function"
1244
+ },
1245
+ {
1246
+ "inputs": [
1247
+ {
1248
+ "internalType": "NftId",
1249
+ "name": "distributionNftId",
1250
+ "type": "uint96"
1251
+ },
1252
+ {
1253
+ "internalType": "ReferralId",
1254
+ "name": "referralId",
1255
+ "type": "bytes8"
1256
+ }
1257
+ ],
1258
+ "name": "referralIsValid",
1259
+ "outputs": [
1260
+ {
1261
+ "internalType": "bool",
1262
+ "name": "isValid",
1263
+ "type": "bool"
1264
+ }
1265
+ ],
1266
+ "stateMutability": "view",
1267
+ "type": "function"
1268
+ },
1269
+ {
1270
+ "inputs": [
1271
+ {
1272
+ "internalType": "address",
1273
+ "name": "newAuthority",
1274
+ "type": "address"
1275
+ }
1276
+ ],
1277
+ "name": "setAuthority",
1278
+ "outputs": [],
1279
+ "stateMutability": "nonpayable",
1280
+ "type": "function"
1281
+ },
1282
+ {
1283
+ "inputs": [
1284
+ {
1285
+ "internalType": "bytes4",
1286
+ "name": "interfaceId",
1287
+ "type": "bytes4"
1288
+ }
1289
+ ],
1290
+ "name": "supportsInterface",
1291
+ "outputs": [
1292
+ {
1293
+ "internalType": "bool",
1294
+ "name": "",
1295
+ "type": "bool"
1296
+ }
1297
+ ],
1298
+ "stateMutability": "view",
1299
+ "type": "function"
1300
+ },
1301
+ {
1302
+ "inputs": [
1303
+ {
1304
+ "internalType": "bytes",
1305
+ "name": "data",
1306
+ "type": "bytes"
1307
+ }
1308
+ ],
1309
+ "name": "upgradeVersionable",
1310
+ "outputs": [],
1311
+ "stateMutability": "nonpayable",
1312
+ "type": "function"
1313
+ },
1314
+ {
1315
+ "inputs": [
1316
+ {
1317
+ "internalType": "NftId",
1318
+ "name": "distributorNftId",
1319
+ "type": "uint96"
1320
+ },
1321
+ {
1322
+ "internalType": "Amount",
1323
+ "name": "amount",
1324
+ "type": "uint96"
1325
+ }
1326
+ ],
1327
+ "name": "withdrawCommission",
1328
+ "outputs": [
1329
+ {
1330
+ "internalType": "Amount",
1331
+ "name": "withdrawnAmount",
1332
+ "type": "uint96"
1333
+ }
1334
+ ],
1335
+ "stateMutability": "nonpayable",
1336
+ "type": "function"
1337
+ }
1338
+ ],
1339
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615b7b806100d65f395ff3fe608060405234801561000f575f80fd5b50600436106101a1575f3560e01c80635dcb3bae116100f35780638fb3603711610093578063ada9652e1161006e578063ada9652e146103f9578063b68d18091461040d578063bf7e214f14610414578063eed283151461041c575f80fd5b80638fb36037146103b2578063987cb161146103d3578063ab3fc75f146103e6575f80fd5b806376b707b7116100ce57806376b707b71461036a5780637950d0e2146103845780637a9e5e4b14610397578063893d20e8146103aa575f80fd5b80635dcb3bae1461031a578063644c45e01461032d5780636c741e781461034a575f80fd5b80631bda5efa1161015e57806325d073841161013957806325d07384146102bc578063329d6e74146102cf57806349bb9e4b146102e25780635ab1bd53146102f5575f80fd5b80631bda5efa1461025f5780631eff4b221461027f57806322f3e2d4146102b4575f80fd5b806301ffc9a7146101a5578063071e1e4a146101e657806307e71a6e146101fb5780630d8e6e2c146102265780630fec111c14610242578063138461e014610257575b5f80fd5b6101d16101b3366004614699565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101f96101f4366004614700565b610450565b005b61020e610209366004614737565b610735565b6040516001600160601b0390911681526020016101dd565b61022e610d3f565b60405162ffffff90911681526020016101dd565b61024a610dc6565b6040516101dd9190614791565b61020e610f80565b61027261026d366004614a06565b610f8a565b6040516101dd9190614adc565b6102a67f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101dd565b6101d1611597565b6101d16102ca366004614700565b61160e565b6101f96102dd366004614af1565b611aff565b6101f96102f0366004614b22565b611c49565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101dd565b61020e610328366004614b6e565b611d45565b5f80516020615ae6833981519152546001600160601b031661020e565b610352612082565b6040516001600160401b0390911681526020016101dd565b61037261210e565b60405160ff90911681526020016101dd565b6101f9610392366004614bcb565b612176565b6101f96103a5366004614d67565b6126f4565b61030261277a565b6103ba6128ab565b6040516001600160e01b031990911681526020016101dd565b6102726103e1366004614d82565b6128e0565b6101f96103f4366004614e2c565b61313c565b6102a65f80516020615ae683398151915281565b600e610372565b6103026133d0565b61042f61042a366004614e49565b6133eb565b604080516001600160a01b03909316835260ff9091166020830152016101dd565b61045c335b5f366136be565b81600e61046982826137bc565b610473848461160e565b1561072f575f73__$fb599632d08395912d9d70eb2f0f93b5e2$__63ce64d2816104a56001546001600160a01b031690565b876040518363ffffffff1660e01b81526004016104c3929190614e65565b602060405180830381865af41580156104de573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105029190614e87565b90505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610541573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105659190614e87565b6001600160a01b0316631d3be477866040518263ffffffff1660e01b81526004016105909190614adc565b5f60405180830381865afa1580156105aa573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526105d19190810190614f1d565b90506001816060018181516105e6919061502c565b63ffffffff1690525060408051631a99b41b60e31b815290516001600160a01b0384169163d4cda0d89160048083019260209291908290030181865afa158015610632573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106569190614e87565b6001600160a01b03166396260559868360ff6040518463ffffffff1660e01b815260040161068693929190615112565b5f604051808303815f87803b15801561069d575f80fd5b505af11580156106af573d5f803e3d5ffd5b505050507fd0fb19cbe3e6c7666a69cce6e9e84c1d4d23353bb2023d89040efa1ce3e5a82e86826020015187846060015160405161072494939291906001600160601b0394851681529290931660208301526001600160c01b031916604082015263ffffffff91909116606082015260800190565b60405180910390a150505b50505050565b5f61073f33610455565b82601761074c82826137bc565b5f806107566138f0565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610797573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107bb9190614e87565b60405163f0ea17c360e01b81526001600160601b03851660048201529091505f906001600160a01b0383169063f0ea17c3906024015f60405180830381865afa15801561080a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526108319190810190615149565b604051630232ca4960e01b81526001600160601b038b1660048201529091505f906001600160a01b03841690630232ca4990602401602060405180830381865afa158015610881573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a591906151f0565b905088975061091e8873__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156108f5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091991906151f0565b61399c565b1561092b5780975061096b565b6109358882613a2a565b1561096b576040516322d98b0960e11b81526001600160601b03808a166004830152821660248201526044015b60405180910390fd5b5f846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109a8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109cc9190614e87565b905060025f9054906101000a90046001600160a01b03166001600160a01b03166311a1467782888c73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610a3b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a5f91906151f0565b6040518563ffffffff1660e01b8152600401610a7e949392919061520b565b5f604051808303815f87803b158015610a95575f80fd5b505af1158015610aa7573d5f803e3d5ffd5b5050505060025f9054906101000a90046001600160a01b03166001600160a01b03166366101781828d73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610b17573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b3b91906151f0565b8d6040518563ffffffff1660e01b8152600401610b5b949392919061520b565b5f604051808303815f87803b158015610b72575f80fd5b505af1158015610b84573d5f803e3d5ffd5b50505050505f610b9c6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038d1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610be9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c0d9190614e87565b90507f81c27687c85b82d25896110abb95c71bcbe0f90ff15274c4f0dbc5710a43ec3f8b8285602001516001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c72573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c969190614e87565b604080516001600160601b0394851681526001600160a01b0393841660208201529290911690820152908b16606082015260800160405180910390a182602001516001600160a01b03166367ed5f36828b6040518363ffffffff1660e01b8152600401610d04929190614e65565b5f604051808303815f87803b158015610d1b575f80fd5b505af1158015610d2d573d5f803e3d5ffd5b50505050505050505050505092915050565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610d9d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dc1919061523d565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610e72573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e9691906151f0565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610ede61277a565b6001600160a01b03168152602001826001018054610efb9061525f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f279061525f565b8015610f725780601f10610f4957610100808354040283529160200191610f72565b820191905f5260205f20905b815481529060010190602001808311610f5557829003601f168201915b505050505081525091505090565b5f610dc130613a74565b5f610f9433610455565b5f80610f9e6138f0565b915091505f610fb56001546001600160a01b031690565b60405163677d3feb60e11b81526001600160601b03851660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa158015611002573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061102691906151f0565b90505f826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611065573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110899190614e87565b604051636a05a41360e01b81526001600160601b03841660048201526001600160a01b039190911690636a05a413906024016101c060405180830381865afa1580156110d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110fb91906152f9565b604081015151606082015151919250905f90611117908e613cca565b90506001600160a01b03808316908216111561124357604051632ffa8f7f60e11b81526001600160a01b038316600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__90635ff51efe90602401602060405180830381865af4158015611183573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111a791906153b3565b604051632ffa8f7f60e11b81526001600160a01b038316600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__90635ff51efe90602401602060405180830381865af41580156111fd573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061122191906153b3565b604051632d8d32a560e21b815260048101929092526024820152604401610962565b5f61124e8383613cd5565b90506112668f826001600160a01b0390811691161190565b15611397578e6001600160a01b031673__$bf7bc340cbb9229ef1de2c568356e67902$__635ff51efe90916040518263ffffffff1660e01b81526004016112bc91906001600160a01b0391909116815260200190565b602060405180830381865af41580156112d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112fb91906153b3565b604051632ffa8f7f60e11b81526001600160a01b038316600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__90635ff51efe90602401602060405180830381865af4158015611351573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061137591906153b3565b6040516306990c9f60e11b815260048101929092526024820152604401610962565b505050505073__$1919c6d2c69d787ccb2653a371d7e5737d$__63578c3039838e6040518363ffffffff1660e01b81526004016113d59291906153ca565b602060405180830381865af41580156113f0573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061141491906153eb565b92505f6040518061014001604052808d6001600160a01b03168152602001846001600160601b031681526020018c6001600160a01b031681526020018a63ffffffff1681526020018964ffffffffff168152602001881515815260200187151581526020018b6001600160a01b031681526020018e8152602001868152509050816001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114f49190614e87565b6001600160a01b0316634bb2d19785836040518363ffffffff1660e01b8152600401611521929190615406565b5f604051808303815f87803b158015611538575f80fd5b505af115801561154a573d5f803e3d5ffd5b505050507fcd159579c9776c25aaa89df3e9e0e273cbd95c8827ec72a5e8c28aa21c34c01b838e60405161157f9291906153ca565b60405180910390a15050509998505050505050505050565b5f6115a06133d0565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa1580156115e4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116089190615503565b15905090565b5f82600e61161c82826137bc565b604051630a4d29dd60e31b81526001600160601b038616600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015611672573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116969190615503565b8061171c5750604051637bc32ecf60e01b815273__$05887d5853069c88bcd4c0a2107db45f29$__90637bc32ecf906116dd906001600160c01b0319881690600401614adc565b602060405180830381865af41580156116f8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061171c9190615503565b15611729575f9250611af7565b5f73__$fb599632d08395912d9d70eb2f0f93b5e2$__63ce64d2816117566001546001600160a01b031690565b886040518363ffffffff1660e01b8152600401611774929190614e65565b602060405180830381865af415801561178f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117b39190614e87565b90505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117f2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118169190614e87565b6001600160a01b0316631d3be477876040518263ffffffff1660e01b81526004016118419190614adc565b5f60405180830381865afa15801561185b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526118829190810190614f1d565b6020810151604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af41580156118e1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119059190615503565b15611914575f94505050611af7565b80516119209088613d0d565b1561194457805160405163232e27d560e21b81526109629188918a9060040161551e565b60a081015160405163790a38ad60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af415801561199e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119c29190615503565b80611ad0575060a0810151604051638d38cd4b60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af4158015611a22573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a469190615503565b8015611ad05750611ad073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611a97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611abb9190615549565b8260a0015164ffffffffff9081169116111590565b9450848015611af25750806040015163ffffffff16816060015163ffffffff16105b945050505b505092915050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c611b21610d3f565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611b5f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b839190615578565b5f80516020615b268339815191528054600160401b900460ff1680611bb5575080546001600160401b03808416911610155b15611bd35760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155611bfd83613d57565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f80516020615b268339815191528054600160401b810460ff1615906001600160401b03165f81158015611c7a5750825b90505f826001600160401b03166001148015611c955750303b155b905081158015611ca3575080155b15611cc15760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611ceb57845460ff60401b1916600160401b1785555b611cf58787613d78565b8315611d3c57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b5f611d4f33610455565b5f80611d596138f0565b91509150611dc7816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d9c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dc09190614e87565b8684613f3b565b60055f9054906101000a90046001600160a01b03166001600160a01b03166357a8fba76040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611e3c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e6091906151f0565b6001600160601b03168152602001856001600160601b03168152602001611e85601790565b60ff1681526020016001151581526020015f6001600160a01b03168152602001896001600160a01b0316815260200160405180602001604052805f8152508152506040518263ffffffff1660e01b8152600401611ee29190614791565b6020604051808303815f875af1158015611efe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f2291906151f0565b92505f6040518060800160405280876001600160c01b03191681526020016001151581526020015f63ffffffff168152602001868152509050816001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fbb9190614e87565b6001600160a01b031663f9b3fe3c85836040518363ffffffff1660e01b8152600401611fe89291906155d9565b5f604051808303815f87803b158015611fff575f80fd5b505af1158015612011573d5f803e3d5ffd5b5050604080516001600160601b038781168252881660208201526001600160c01b03198a16818301526001600160a01b038b16606082015290517f4a9178ebf2691f0cc04ca591663061f3c23c8b96b53097cfa0289437162c992e9350908190036080019150a15050509392505050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63645ceefe600e6120a761210e565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af41580156120ea573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dc19190615578565b5f6121176133d0565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612152573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dc191906155fa565b61217f33610455565b82600e61218c82826137bc565b5f73__$fb599632d08395912d9d70eb2f0f93b5e2$__63ce64d2816121b96001546001600160a01b031690565b886040518363ffffffff1660e01b81526004016121d7929190614e65565b602060405180830381865af41580156121f2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122169190614e87565b90505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612255573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122799190614e87565b90505f826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122dc9190614e87565b90505f6122f3876101c00151886101e00151613fde565b90506122ff898961160e565b156125c0576102008701516002546040516374933c2f60e01b81526001600160a01b03909116906374933c2f906123409086908e908690889060040161520b565b5f604051808303815f87803b158015612357575f80fd5b505af1158015612369573d5f803e3d5ffd5b5050604051631d3be47760e01b81525f92506001600160a01b0387169150631d3be4779061239b908d90600401614adc565b5f60405180830381865afa1580156123b5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526123dc9190810190614f1d565b905060025f9054906101000a90046001600160a01b03166001600160a01b031663d165cb6485836020015173__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561244e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061247291906151f0565b866040518563ffffffff1660e01b8152600401612492949392919061520b565b5f604051808303815f87803b1580156124a9575f80fd5b505af11580156124bb573d5f803e3d5ffd5b5050505060208101516040516313d8ebc960e11b81526001600160601b0390911660048201525f906001600160a01b038716906327b1d792906024015f60405180830381865afa158015612511573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612538919081019061561a565b905060018160400181815161254d919061502c565b63ffffffff169052506020820151604051630af38b5f60e21b81526001600160a01b03871691632bce2d7c9161258b9190859060ff906004016156bd565b5f604051808303815f87803b1580156125a2575f80fd5b505af11580156125b4573d5f803e3d5ffd5b5050505050505061269e565b60025f9054906101000a90046001600160a01b03166001600160a01b03166374933c2f838b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561262c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061265091906151f0565b856040518563ffffffff1660e01b8152600401612670949392919061520b565b5f604051808303815f87803b158015612687575f80fd5b505af1158015612699573d5f803e3d5ffd5b505050505b604080516001600160601b038b1681526001600160c01b03198a1660208201527f1ada02426ee529031fdddc0d25489621c399116f75cb4bbf31ec18c7c7c3e3ef910160405180910390a1505050505050505050565b336126fd6133d0565b6001600160a01b0316816001600160a01b0316146127385760405162d1953b60e31b81526001600160a01b0382166004820152602401610962565b816001600160a01b03163b5f0361276d576040516361798f2f60e11b81526001600160a01b0383166004820152602401610962565b61277682614062565b5050565b5f805f80516020615ae683398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156127e6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061280a9190615503565b15612895576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561286b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061288f9190614e87565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020615b0683398151915280545f9190600160a01b900460ff166128d2575f61288f565b638fb3603760e01b91505090565b5f6128ea33610455565b8660176128f782826137bc565b5f806129016138f0565b9150915089515f036129265760405163714184f760e11b815260040160405180910390fd5b60405163790a38ad60e01b815264ffffffffff8816600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af415801561297a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061299e9190615503565b80612a225750612a228773__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156129ef573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a139190615549565b64ffffffffff90811691161090565b15612a495760405163186399e560e31b815264ffffffffff88166004820152602401610962565b5f612a5c6001546001600160a01b031690565b60405163677d3feb60e11b81526001600160601b038e1660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa158015612aa9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612acd91906151f0565b9050612ad98184613d0d565b15612b125760405163e172170d60e01b81526001600160601b03808e166004830152808316602483015284166044820152606401610962565b5f826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b4f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b739190614e87565b6040516313d8ebc960e11b81526001600160601b038f1660048201529091505f906001600160a01b038316906327b1d792906024015f60405180830381865afa158015612bc2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612be9919081019061561a565b516040516368322c6360e11b81529091505f906001600160a01b0384169063d06458c690612c1b908590600401614adc565b5f60405180830381865afa158015612c35573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612c5c91908101906156de565b90508b63ffffffff16816060015163ffffffff161015612ca557606081015160405163c0eab50360e01b815263ffffffff9182166004820152908d166024820152604401610962565b80516001600160a01b03808f1691161115612ce957805160405163b316883360e01b81526001600160a01b039182166004820152908e166024820152604401610962565b60408101516001600160a01b03808f1691161015612d33576040808201519051637dd03ff960e11b81526001600160a01b039182166004820152908e166024820152604401610962565b6080810151604051633682752160e21b815264ffffffffff909116600482015273__$71e292c09eace9601b3e21e68a1278917a$__9063da09d48490602401602060405180830381865af4158015612d8d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612db191906153b3565b73__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612df8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e1c9190615549565b604051633682752160e21b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063da09d48490602401602060405180830381865af4158015612e71573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e9591906153b3565b604051633682752160e21b815264ffffffffff8e16600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063da09d48490602401602060405180830381865af4158015612ee9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f0d91906153b3565b612f1791906157ff565b1115612f4d57608081015160405163941185d360e01b815264ffffffffff9182166004820152908c166024820152604401610962565b5050604051631f849e6b60e11b815273__$05887d5853069c88bcd4c0a2107db45f29$__9150633f093cd690612f899086908f906004016153ca565b602060405180830381865af4158015612fa4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fc891906153eb565b95505f604051806101000160405280856001600160601b031681526020018e6001600160601b031681526020018b63ffffffff1681526020015f63ffffffff1681526020018c6001600160a01b031681526020018a64ffffffffff1681526020018d8152602001898152509050826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015613071573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130959190614e87565b6001600160a01b0316634a82439288836040518363ffffffff1660e01b81526004016130c2929190615812565b5f604051808303815f87803b1580156130d9575f80fd5b505af11580156130eb573d5f803e3d5ffd5b505050507f75877f30372d5d5274d26a87127a9dcb9944f7fc094a00f5e126ea90220d46e0848e898f6040516131249493929190615836565b60405180910390a15050505050509695505050505050565b61314533610455565b6131508360176137bc565b5f8061315a6138f0565b915091506131c8816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561319d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131c19190614e87565b8584613f3b565b5f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613205573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132299190614e87565b6040516313d8ebc960e11b81526001600160601b03881660048201526001600160a01b0391909116906327b1d792906024015f60405180830381865afa158015613275573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261329c919081019061561a565b80516001600160c01b0319871682526060820186905260408051631a99b41b60e31b8152905192935090916001600160a01b0385169163d4cda0d89160048083019260209291908290030181865afa1580156132fa573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061331e9190614e87565b6001600160a01b0316632bce2d7c888460ff6040518463ffffffff1660e01b815260040161334e939291906156bd565b5f604051808303815f87803b158015613365575f80fd5b505af1158015613377573d5f803e3d5ffd5b5050604080516001600160601b038b1681526001600160c01b031980861660208301528a16918101919091527fbc91a707be82165c58e12c3cdd805449dbceec4592db04a692e68b120a4daa7792506060019050611d33565b5f80516020615b06833981519152546001600160a01b031690565b5f805f846001600160a01b0316631d3be477856040518263ffffffff1660e01b815260040161341a9190614adc565b5f60405180830381865afa158015613434573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261345b9190810190614f1d565b60a081015160405163790a38ad60e01b815264ffffffffff909116600482015290915073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af41580156134b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134dc9190615503565b156135595773__$bf7bc340cbb9229ef1de2c568356e67902$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015613528573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061354c9190614e87565b60645b92509250506136b7565b6135a88160a0015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156129ef573d5f803e3d5ffd5b1561361f5773__$bf7bc340cbb9229ef1de2c568356e67902$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156135f4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136189190614e87565b606e61354f565b806040015163ffffffff16816060015163ffffffff16106136ac5773__$bf7bc340cbb9229ef1de2c568356e67902$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015613681573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136a59190614e87565b607861354f565b608001519150600a90505b9250929050565b5f80516020615b068339815191525f806136f66136d96133d0565b87306136e860045f8a8c615878565b6136f19161589f565b6140c2565b91509150816137b45763ffffffff81161561379157825460ff60a01b1916600160a01b1783556137246133d0565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401613753939291906158d7565b5f604051808303815f87803b15801561376a575f80fd5b505af115801561377c573d5f803e3d5ffd5b5050845460ff60a01b19168555506137b49050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610962565b505050505050565b60405163037c8cb160e51b815260ff8216600482015273__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af415801561380c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138309190615503565b806138be57506001546001600160a01b0316604051635b12715d60e11b81526001600160601b038416600482015260ff831660248201526001600160a01b03919091169063b624e2ba90604401602060405180830381865afa158015613898573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138bc9190615503565b155b156127765760405163d711af7560e01b81526001600160601b038316600482015260ff82166024820152604401610962565b5f8073__$19db5f0436f9beab06d91aaebdafaf50ff$__63ed35264761391e6001546001600160a01b031690565b6040805160e084901b6001600160e01b03191681526001600160a01b03929092166004830152336024830152600e604483015280516064808401938290030181865af4158015613970573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139949190615916565b915091509091565b604051631315996960e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063262b32d2906044015b602060405180830381865af41580156139fd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a219190615503565b90505b92915050565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c906044016139e2565b5f805f80516020615ae683398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613ae0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b049190615503565b15613b305780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610962565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015613b82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ba69190615503565b613bce5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610962565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015613c20573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c4491906151f0565b81546bffffffffffffffffffffffff19166001600160601b039190911690811782557f88857b75cbef7f257c9d5a473e28aaf6a91cc28f717f60f2cda3bcf5623d7b5490613c9061277a565b604080516001600160601b0390931683526001600160a01b0390911660208301520160405180910390a1546001600160601b031692915050565b5f613a218284615943565b5f6001600160a01b038083169084161015613d035760405163117efe6d60e31b815260040160405180910390fd5b613a218284615962565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c51906044016139e2565b613d5f6141ca565b60405163502ec37160e01b815260040160405180910390fd5b5f80516020615b268339815191528054600160401b810460ff1615906001600160401b03165f81158015613da95750825b90505f826001600160401b03166001148015613dc45750303b155b905081158015613dd2575080155b15613df05760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315613e1a57845460ff60401b1916600160401b1785555b5f8087806020019051810190613e309190615981565b91509150613e3f82828b614202565b613e4960286142a4565b600280546001600160a01b0319166001600160a01b0392909216919091179055613e73600b6142a4565b600380546001600160a01b0319166001600160a01b0392909216919091179055613e9d600a6142a4565b600480546001600160a01b0319166001600160a01b0392909216919091179055613ec760026142a4565b600580546001600160a01b0319166001600160a01b0392909216919091179055613ef763c7f9373d60e01b614335565b50508315611d3c57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611d33565b6040516368322c6360e11b81525f906001600160a01b0385169063d06458c690613f69908690600401614adc565b5f60405180830381865afa158015613f83573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613faa91908101906156de565b602001519050613fba8183613d0d565b1561072f578281836040516313bf6c4560e21b81526004016109629392919061551e565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af415801561403e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a2191906151f0565b5f80516020615b0683398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251614130919061599d565b5f60405180830381855afa9150503d805f8114614168576040519150601f19603f3d011682016040523d82523d5f602084013e61416d565b606091505b509150915081156141bf57604081511061419f578080602001905181019061419591906159b3565b90945092506141bf565b60208151106141bf57808060200190518101906141bc9190615503565b93505b505094509492505050565b5f80516020615b2683398151915254600160401b900460ff1661420057604051631afcd79f60e31b815260040160405180910390fd5b565b61420a6141ca565b614212614368565b61428f8383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015614253573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061427791906151f0565b60085f8660405180602001604052805f815250614378565b61429f63daf9067160e01b614335565b505050565b5f6142b76001546001600160a01b031690565b6001600160a01b031663d39e6043836142ce61210e565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015614311573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a249190614e87565b61433d6141ca565b614365816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b50565b6143706141ca565b6142006144bf565b6143806141ca565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af41580156143d6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143fa9190615503565b6144225760405163cf6935e560e01b81526001600160a01b0388166004820152602401610962565b61442b876144ed565b61443586836144fe565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016144a48382615a2b565b506144b5634a531f3360e01b614335565b5050505050505050565b6144c76141ca565b60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b6144f56141ca565b61436581614574565b6145066141ca565b61450e614585565b614517826145cd565b6001600160a01b03811661453e5760405163f17ef42d60e01b815260040160405180910390fd5b5f80516020615ae683398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b61457c6141ca565b61436581614062565b61458d6141ca565b6142006301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6145d56141ca565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af415801561462b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061464f9190615503565b6146775760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610962565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b5f602082840312156146a9575f80fd5b81356001600160e01b0319811681146146c0575f80fd5b9392505050565b6001600160601b0381168114614365575f80fd5b80356146e6816146c7565b919050565b6001600160c01b031981168114614365575f80fd5b5f8060408385031215614711575f80fd5b823561471c816146c7565b9150602083013561472c816146eb565b809150509250929050565b5f8060408385031215614748575f80fd5b8235614753816146c7565b9150602083013561472c816146c7565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516147d9608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e08084015261481d610100840182614763565b949350505050565b634e487b7160e01b5f52604160045260245ffd5b60405161024081016001600160401b038111828210171561485c5761485c614825565b60405290565b60405161010081016001600160401b038111828210171561485c5761485c614825565b604051606081016001600160401b038111828210171561485c5761485c614825565b604051608081016001600160401b038111828210171561485c5761485c614825565b60405161014081016001600160401b038111828210171561485c5761485c614825565b604051601f8201601f191681016001600160401b038111828210171561491457614914614825565b604052919050565b5f6001600160401b0382111561493457614934614825565b50601f01601f191660200190565b5f82601f830112614951575f80fd5b8135602083015f6149696149648461491c565b6148ec565b905082815285838301111561497c575f80fd5b828260208301375f92810160200192909252509392505050565b6001600160a01b0381168114614365575f80fd5b80356146e681614996565b63ffffffff81168114614365575f80fd5b80356146e6816149b5565b64ffffffffff81168114614365575f80fd5b80356146e6816149d1565b8015158114614365575f80fd5b80356146e6816149ee565b5f805f805f805f805f6101208a8c031215614a1f575f80fd5b89356001600160401b03811115614a34575f80fd5b614a408c828d01614942565b99505060208a0135614a5181614996565b9750614a5f60408b016149aa565b9650614a6d60608b016149aa565b9550614a7b60808b016149c6565b9450614a8960a08b016149e3565b9350614a9760c08b016149fb565b9250614aa560e08b016149fb565b91506101008a01356001600160401b03811115614ac0575f80fd5b614acc8c828d01614942565b9150509295985092959850929598565b6001600160c01b031991909116815260200190565b5f60208284031215614b01575f80fd5b81356001600160401b03811115614b16575f80fd5b61481d84828501614942565b5f8060408385031215614b33575f80fd5b8235614b3e81614996565b915060208301356001600160401b03811115614b58575f80fd5b614b6485828601614942565b9150509250929050565b5f805f60608486031215614b80575f80fd5b8335614b8b81614996565b92506020840135614b9b816146eb565b915060408401356001600160401b03811115614bb5575f80fd5b614bc186828701614942565b9150509250925092565b5f805f838503610280811215614bdf575f80fd5b8435614bea816146c7565b93506020850135614bfa816146eb565b9250610240603f1982011215614c0e575f80fd5b50614c17614839565b614c23604086016146db565b8152614c31606086016146db565b6020820152614c42608086016146db565b6040820152614c5360a086016146db565b6060820152614c6460c086016146db565b6080820152614c7560e086016146db565b60a0820152614c8761010086016146db565b60c0820152614c9961012086016146db565b60e0820152614cab61014086016146db565b610100820152614cbe61016086016146db565b610120820152614cd161018086016146db565b610140820152614ce46101a086016146db565b610160820152614cf76101c086016146db565b610180820152614d0a6101e086016146db565b6101a0820152614d1d61020086016146db565b6101c0820152614d3061022086016146db565b6101e0820152614d4361024086016146db565b610200820152614d5661026086016146db565b610220820152809150509250925092565b5f60208284031215614d77575f80fd5b81356146c081614996565b5f805f805f8060c08789031215614d97575f80fd5b8635614da2816146c7565b955060208701356001600160401b03811115614dbc575f80fd5b614dc889828a01614942565b9550506040870135614dd981614996565b93506060870135614de9816149b5565b92506080870135614df9816149d1565b915060a08701356001600160401b03811115614e13575f80fd5b614e1f89828a01614942565b9150509295509295509295565b5f805f60608486031215614e3e575f80fd5b8335614b8b816146c7565b5f8060408385031215614e5a575f80fd5b823561471c81614996565b6001600160a01b039290921682526001600160601b0316602082015260400190565b5f60208284031215614e97575f80fd5b81516146c081614996565b80516146e6816146c7565b80516146e6816149b5565b80516146e681614996565b80516146e6816149d1565b5f82601f830112614edd575f80fd5b8151602083015f614ef06149648461491c565b9050828152858383011115614f03575f80fd5b8282602083015e5f92810160200192909252509392505050565b5f60208284031215614f2d575f80fd5b81516001600160401b03811115614f42575f80fd5b82016101008185031215614f54575f80fd5b614f5c614862565b614f6582614ea2565b8152614f7360208301614ea2565b6020820152614f8460408301614ead565b6040820152614f9560608301614ead565b6060820152614fa660808301614eb8565b6080820152614fb760a08301614ec3565b60a082015260c08201516001600160401b03811115614fd4575f80fd5b614fe086828501614ece565b60c08301525060e08201516001600160401b03811115614ffe575f80fd5b61500a86828501614ece565b60e083015250949350505050565b634e487b7160e01b5f52601160045260245ffd5b63ffffffff8181168382160190811115613a2457613a24615018565b6001600160601b0381511682525f602082015161507060208501826001600160601b03169052565b506040820151615088604085018263ffffffff169052565b5060608201516150a0606085018263ffffffff169052565b5060808201516150bb60808501826001600160a01b03169052565b5060a08201516150d460a085018264ffffffffff169052565b5060c082015161010060c08501526150f0610100850182614763565b905060e083015184820360e08601526151098282614763565b95945050505050565b6001600160401b0360c01b84168152606060208201525f6151366060830185615048565b905060ff83166040830152949350505050565b5f60208284031215615159575f80fd5b81516001600160401b0381111561516e575f80fd5b82016060818503121561517f575f80fd5b615187614885565b81516001600160401b0381111561519c575f80fd5b6151a886828501614ece565b82525060208201516151b981614996565b602082015260408201516001600160401b038111156151d6575f80fd5b6151e286828501614ece565b604083015250949350505050565b5f60208284031215615200575f80fd5b81516146c0816146c7565b6001600160a01b039490941684526001600160601b039283166020850152908216604084015216606082015260800190565b5f6020828403121561524d575f80fd5b815162ffffff811681146146c0575f80fd5b600181811c9082168061527357607f821691505b60208210810361529157634e487b7160e01b5f52602260045260245ffd5b50919050565b5f604082840312156152a7575f80fd5b604080519081016001600160401b03811182821017156152c9576152c9614825565b806040525080915082516152dc81614996565b815260208301516152ec816146c7565b6020919091015292915050565b5f6101c082840312801561530b575f80fd5b5060405160e081016001600160401b038111828210171561532e5761532e614825565b60405261533b8484615297565b815261534a8460408501615297565b602082015261535c8460808501615297565b604082015261536e8460c08501615297565b6060820152615381846101008501615297565b6080820152615394846101408501615297565b60a08201526153a7846101808501615297565b60c08201529392505050565b5f602082840312156153c3575f80fd5b5051919050565b6001600160601b0383168152604060208201525f61481d6040830184614763565b5f602082840312156153fb575f80fd5b81516146c0816146eb565b6001600160c01b03198316815260406020820181905282516001600160a01b0316908201525f602083015161544660608401826001600160601b03169052565b5060408301516001600160a01b038116608084015250606083015163ffffffff811660a084015250608083015164ffffffffff811660c08401525060a083015180151560e08401525060c08301518015156101008401525060e08301516001600160a01b03811661012084015250610100830151610140808401526154cf610180840182614763565b9050610120840151603f19848303016101608501526154ee8282614763565b9695505050505050565b80516146e6816149ee565b5f60208284031215615513575f80fd5b81516146c0816149ee565b6001600160c01b03199390931683526001600160601b03918216602084015216604082015260600190565b5f60208284031215615559575f80fd5b81516146c0816149d1565b6001600160401b0381168114614365575f80fd5b5f60208284031215615588575f80fd5b81516146c081615564565b6001600160401b0360c01b815116825260208101511515602083015263ffffffff60408201511660408301525f60608201516080606085015261481d6080850182614763565b6001600160601b0383168152604060208201525f61481d6040830184615593565b5f6020828403121561560a575f80fd5b815160ff811681146146c0575f80fd5b5f6020828403121561562a575f80fd5b81516001600160401b0381111561563f575f80fd5b820160808185031215615650575f80fd5b6156586148a7565b8151615663816146eb565b81526020820151615673816149ee565b60208201526040820151615686816149b5565b604082015260608201516001600160401b038111156156a3575f80fd5b6156af86828501614ece565b606083015250949350505050565b6001600160601b0384168152606060208201525f6151366060830185615593565b5f602082840312156156ee575f80fd5b81516001600160401b03811115615703575f80fd5b82016101408185031215615715575f80fd5b61571d6148c9565b61572682614eb8565b815261573460208301614ea2565b602082015261574560408301614eb8565b604082015261575660608301614ead565b606082015261576760808301614ec3565b608082015261577860a083016154f8565b60a082015261578960c083016154f8565b60c082015261579a60e08301614eb8565b60e08201526101008201516001600160401b038111156157b8575f80fd5b6157c486828501614ece565b610100830152506101208201516001600160401b038111156157e4575f80fd5b6157f086828501614ece565b61012083015250949350505050565b81810381811115613a2457613a24615018565b6001600160401b0360c01b83168152604060208201525f61481d6040830184615048565b6001600160601b03851681526001600160601b03841660208201526001600160401b0360c01b83166040820152608060608201525f6154ee6080830184614763565b5f8085851115615886575f80fd5b83861115615892575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156158d0576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f8060408385031215615927575f80fd5b8251615932816146c7565b602084015190925061472c81614996565b6001600160a01b038181168382160190811115613a2457613a24615018565b6001600160a01b038281168282160390811115613a2457613a24615018565b5f8060408385031215615992575f80fd5b825161593281614996565b5f82518060208501845e5f920191825250919050565b5f80604083850312156159c4575f80fd5b82516159cf816149ee565b602084015190925061472c816149b5565b601f82111561429f57805f5260205f20601f840160051c81016020851015615a055750805b601f840160051c820191505b81811015615a24575f8155600101615a11565b5050505050565b81516001600160401b03811115615a4457615a44614825565b615a5881615a52845461525f565b846159e0565b6020601f821160018114615a8a575f8315615a735750848201515b5f19600385901b1c1916600184901b178455615a24565b5f84815260208120601f198516915b82811015615ab95787850151825560209485019460019092019101615a99565b5084821015615ad657868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212208fe766ef6390c7ffe54e05990e4be2a8facc7b14d76dca3588b3aaa6b298d88164736f6c634300081a0033",
1340
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106101a1575f3560e01c80635dcb3bae116100f35780638fb3603711610093578063ada9652e1161006e578063ada9652e146103f9578063b68d18091461040d578063bf7e214f14610414578063eed283151461041c575f80fd5b80638fb36037146103b2578063987cb161146103d3578063ab3fc75f146103e6575f80fd5b806376b707b7116100ce57806376b707b71461036a5780637950d0e2146103845780637a9e5e4b14610397578063893d20e8146103aa575f80fd5b80635dcb3bae1461031a578063644c45e01461032d5780636c741e781461034a575f80fd5b80631bda5efa1161015e57806325d073841161013957806325d07384146102bc578063329d6e74146102cf57806349bb9e4b146102e25780635ab1bd53146102f5575f80fd5b80631bda5efa1461025f5780631eff4b221461027f57806322f3e2d4146102b4575f80fd5b806301ffc9a7146101a5578063071e1e4a146101e657806307e71a6e146101fb5780630d8e6e2c146102265780630fec111c14610242578063138461e014610257575b5f80fd5b6101d16101b3366004614699565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101f96101f4366004614700565b610450565b005b61020e610209366004614737565b610735565b6040516001600160601b0390911681526020016101dd565b61022e610d3f565b60405162ffffff90911681526020016101dd565b61024a610dc6565b6040516101dd9190614791565b61020e610f80565b61027261026d366004614a06565b610f8a565b6040516101dd9190614adc565b6102a67f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101dd565b6101d1611597565b6101d16102ca366004614700565b61160e565b6101f96102dd366004614af1565b611aff565b6101f96102f0366004614b22565b611c49565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101dd565b61020e610328366004614b6e565b611d45565b5f80516020615ae6833981519152546001600160601b031661020e565b610352612082565b6040516001600160401b0390911681526020016101dd565b61037261210e565b60405160ff90911681526020016101dd565b6101f9610392366004614bcb565b612176565b6101f96103a5366004614d67565b6126f4565b61030261277a565b6103ba6128ab565b6040516001600160e01b031990911681526020016101dd565b6102726103e1366004614d82565b6128e0565b6101f96103f4366004614e2c565b61313c565b6102a65f80516020615ae683398151915281565b600e610372565b6103026133d0565b61042f61042a366004614e49565b6133eb565b604080516001600160a01b03909316835260ff9091166020830152016101dd565b61045c335b5f366136be565b81600e61046982826137bc565b610473848461160e565b1561072f575f73__$fb599632d08395912d9d70eb2f0f93b5e2$__63ce64d2816104a56001546001600160a01b031690565b876040518363ffffffff1660e01b81526004016104c3929190614e65565b602060405180830381865af41580156104de573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105029190614e87565b90505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610541573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105659190614e87565b6001600160a01b0316631d3be477866040518263ffffffff1660e01b81526004016105909190614adc565b5f60405180830381865afa1580156105aa573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526105d19190810190614f1d565b90506001816060018181516105e6919061502c565b63ffffffff1690525060408051631a99b41b60e31b815290516001600160a01b0384169163d4cda0d89160048083019260209291908290030181865afa158015610632573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106569190614e87565b6001600160a01b03166396260559868360ff6040518463ffffffff1660e01b815260040161068693929190615112565b5f604051808303815f87803b15801561069d575f80fd5b505af11580156106af573d5f803e3d5ffd5b505050507fd0fb19cbe3e6c7666a69cce6e9e84c1d4d23353bb2023d89040efa1ce3e5a82e86826020015187846060015160405161072494939291906001600160601b0394851681529290931660208301526001600160c01b031916604082015263ffffffff91909116606082015260800190565b60405180910390a150505b50505050565b5f61073f33610455565b82601761074c82826137bc565b5f806107566138f0565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610797573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107bb9190614e87565b60405163f0ea17c360e01b81526001600160601b03851660048201529091505f906001600160a01b0383169063f0ea17c3906024015f60405180830381865afa15801561080a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526108319190810190615149565b604051630232ca4960e01b81526001600160601b038b1660048201529091505f906001600160a01b03841690630232ca4990602401602060405180830381865afa158015610881573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a591906151f0565b905088975061091e8873__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156108f5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091991906151f0565b61399c565b1561092b5780975061096b565b6109358882613a2a565b1561096b576040516322d98b0960e11b81526001600160601b03808a166004830152821660248201526044015b60405180910390fd5b5f846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109a8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109cc9190614e87565b905060025f9054906101000a90046001600160a01b03166001600160a01b03166311a1467782888c73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610a3b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a5f91906151f0565b6040518563ffffffff1660e01b8152600401610a7e949392919061520b565b5f604051808303815f87803b158015610a95575f80fd5b505af1158015610aa7573d5f803e3d5ffd5b5050505060025f9054906101000a90046001600160a01b03166001600160a01b03166366101781828d73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610b17573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b3b91906151f0565b8d6040518563ffffffff1660e01b8152600401610b5b949392919061520b565b5f604051808303815f87803b158015610b72575f80fd5b505af1158015610b84573d5f803e3d5ffd5b50505050505f610b9c6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038d1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610be9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c0d9190614e87565b90507f81c27687c85b82d25896110abb95c71bcbe0f90ff15274c4f0dbc5710a43ec3f8b8285602001516001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c72573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c969190614e87565b604080516001600160601b0394851681526001600160a01b0393841660208201529290911690820152908b16606082015260800160405180910390a182602001516001600160a01b03166367ed5f36828b6040518363ffffffff1660e01b8152600401610d04929190614e65565b5f604051808303815f87803b158015610d1b575f80fd5b505af1158015610d2d573d5f803e3d5ffd5b50505050505050505050505092915050565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610d9d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dc1919061523d565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610e72573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e9691906151f0565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610ede61277a565b6001600160a01b03168152602001826001018054610efb9061525f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f279061525f565b8015610f725780601f10610f4957610100808354040283529160200191610f72565b820191905f5260205f20905b815481529060010190602001808311610f5557829003601f168201915b505050505081525091505090565b5f610dc130613a74565b5f610f9433610455565b5f80610f9e6138f0565b915091505f610fb56001546001600160a01b031690565b60405163677d3feb60e11b81526001600160601b03851660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa158015611002573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061102691906151f0565b90505f826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611065573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110899190614e87565b604051636a05a41360e01b81526001600160601b03841660048201526001600160a01b039190911690636a05a413906024016101c060405180830381865afa1580156110d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110fb91906152f9565b604081015151606082015151919250905f90611117908e613cca565b90506001600160a01b03808316908216111561124357604051632ffa8f7f60e11b81526001600160a01b038316600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__90635ff51efe90602401602060405180830381865af4158015611183573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111a791906153b3565b604051632ffa8f7f60e11b81526001600160a01b038316600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__90635ff51efe90602401602060405180830381865af41580156111fd573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061122191906153b3565b604051632d8d32a560e21b815260048101929092526024820152604401610962565b5f61124e8383613cd5565b90506112668f826001600160a01b0390811691161190565b15611397578e6001600160a01b031673__$bf7bc340cbb9229ef1de2c568356e67902$__635ff51efe90916040518263ffffffff1660e01b81526004016112bc91906001600160a01b0391909116815260200190565b602060405180830381865af41580156112d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112fb91906153b3565b604051632ffa8f7f60e11b81526001600160a01b038316600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__90635ff51efe90602401602060405180830381865af4158015611351573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061137591906153b3565b6040516306990c9f60e11b815260048101929092526024820152604401610962565b505050505073__$1919c6d2c69d787ccb2653a371d7e5737d$__63578c3039838e6040518363ffffffff1660e01b81526004016113d59291906153ca565b602060405180830381865af41580156113f0573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061141491906153eb565b92505f6040518061014001604052808d6001600160a01b03168152602001846001600160601b031681526020018c6001600160a01b031681526020018a63ffffffff1681526020018964ffffffffff168152602001881515815260200187151581526020018b6001600160a01b031681526020018e8152602001868152509050816001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114f49190614e87565b6001600160a01b0316634bb2d19785836040518363ffffffff1660e01b8152600401611521929190615406565b5f604051808303815f87803b158015611538575f80fd5b505af115801561154a573d5f803e3d5ffd5b505050507fcd159579c9776c25aaa89df3e9e0e273cbd95c8827ec72a5e8c28aa21c34c01b838e60405161157f9291906153ca565b60405180910390a15050509998505050505050505050565b5f6115a06133d0565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa1580156115e4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116089190615503565b15905090565b5f82600e61161c82826137bc565b604051630a4d29dd60e31b81526001600160601b038616600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015611672573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116969190615503565b8061171c5750604051637bc32ecf60e01b815273__$05887d5853069c88bcd4c0a2107db45f29$__90637bc32ecf906116dd906001600160c01b0319881690600401614adc565b602060405180830381865af41580156116f8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061171c9190615503565b15611729575f9250611af7565b5f73__$fb599632d08395912d9d70eb2f0f93b5e2$__63ce64d2816117566001546001600160a01b031690565b886040518363ffffffff1660e01b8152600401611774929190614e65565b602060405180830381865af415801561178f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117b39190614e87565b90505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117f2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118169190614e87565b6001600160a01b0316631d3be477876040518263ffffffff1660e01b81526004016118419190614adc565b5f60405180830381865afa15801561185b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526118829190810190614f1d565b6020810151604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af41580156118e1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119059190615503565b15611914575f94505050611af7565b80516119209088613d0d565b1561194457805160405163232e27d560e21b81526109629188918a9060040161551e565b60a081015160405163790a38ad60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af415801561199e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119c29190615503565b80611ad0575060a0810151604051638d38cd4b60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af4158015611a22573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a469190615503565b8015611ad05750611ad073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611a97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611abb9190615549565b8260a0015164ffffffffff9081169116111590565b9450848015611af25750806040015163ffffffff16816060015163ffffffff16105b945050505b505092915050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c611b21610d3f565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611b5f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b839190615578565b5f80516020615b268339815191528054600160401b900460ff1680611bb5575080546001600160401b03808416911610155b15611bd35760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155611bfd83613d57565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f80516020615b268339815191528054600160401b810460ff1615906001600160401b03165f81158015611c7a5750825b90505f826001600160401b03166001148015611c955750303b155b905081158015611ca3575080155b15611cc15760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611ceb57845460ff60401b1916600160401b1785555b611cf58787613d78565b8315611d3c57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b5f611d4f33610455565b5f80611d596138f0565b91509150611dc7816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d9c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dc09190614e87565b8684613f3b565b60055f9054906101000a90046001600160a01b03166001600160a01b03166357a8fba76040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611e3c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e6091906151f0565b6001600160601b03168152602001856001600160601b03168152602001611e85601790565b60ff1681526020016001151581526020015f6001600160a01b03168152602001896001600160a01b0316815260200160405180602001604052805f8152508152506040518263ffffffff1660e01b8152600401611ee29190614791565b6020604051808303815f875af1158015611efe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f2291906151f0565b92505f6040518060800160405280876001600160c01b03191681526020016001151581526020015f63ffffffff168152602001868152509050816001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fbb9190614e87565b6001600160a01b031663f9b3fe3c85836040518363ffffffff1660e01b8152600401611fe89291906155d9565b5f604051808303815f87803b158015611fff575f80fd5b505af1158015612011573d5f803e3d5ffd5b5050604080516001600160601b038781168252881660208201526001600160c01b03198a16818301526001600160a01b038b16606082015290517f4a9178ebf2691f0cc04ca591663061f3c23c8b96b53097cfa0289437162c992e9350908190036080019150a15050509392505050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63645ceefe600e6120a761210e565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af41580156120ea573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dc19190615578565b5f6121176133d0565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612152573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dc191906155fa565b61217f33610455565b82600e61218c82826137bc565b5f73__$fb599632d08395912d9d70eb2f0f93b5e2$__63ce64d2816121b96001546001600160a01b031690565b886040518363ffffffff1660e01b81526004016121d7929190614e65565b602060405180830381865af41580156121f2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122169190614e87565b90505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612255573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122799190614e87565b90505f826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122dc9190614e87565b90505f6122f3876101c00151886101e00151613fde565b90506122ff898961160e565b156125c0576102008701516002546040516374933c2f60e01b81526001600160a01b03909116906374933c2f906123409086908e908690889060040161520b565b5f604051808303815f87803b158015612357575f80fd5b505af1158015612369573d5f803e3d5ffd5b5050604051631d3be47760e01b81525f92506001600160a01b0387169150631d3be4779061239b908d90600401614adc565b5f60405180830381865afa1580156123b5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526123dc9190810190614f1d565b905060025f9054906101000a90046001600160a01b03166001600160a01b031663d165cb6485836020015173__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561244e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061247291906151f0565b866040518563ffffffff1660e01b8152600401612492949392919061520b565b5f604051808303815f87803b1580156124a9575f80fd5b505af11580156124bb573d5f803e3d5ffd5b5050505060208101516040516313d8ebc960e11b81526001600160601b0390911660048201525f906001600160a01b038716906327b1d792906024015f60405180830381865afa158015612511573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612538919081019061561a565b905060018160400181815161254d919061502c565b63ffffffff169052506020820151604051630af38b5f60e21b81526001600160a01b03871691632bce2d7c9161258b9190859060ff906004016156bd565b5f604051808303815f87803b1580156125a2575f80fd5b505af11580156125b4573d5f803e3d5ffd5b5050505050505061269e565b60025f9054906101000a90046001600160a01b03166001600160a01b03166374933c2f838b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561262c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061265091906151f0565b856040518563ffffffff1660e01b8152600401612670949392919061520b565b5f604051808303815f87803b158015612687575f80fd5b505af1158015612699573d5f803e3d5ffd5b505050505b604080516001600160601b038b1681526001600160c01b03198a1660208201527f1ada02426ee529031fdddc0d25489621c399116f75cb4bbf31ec18c7c7c3e3ef910160405180910390a1505050505050505050565b336126fd6133d0565b6001600160a01b0316816001600160a01b0316146127385760405162d1953b60e31b81526001600160a01b0382166004820152602401610962565b816001600160a01b03163b5f0361276d576040516361798f2f60e11b81526001600160a01b0383166004820152602401610962565b61277682614062565b5050565b5f805f80516020615ae683398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156127e6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061280a9190615503565b15612895576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561286b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061288f9190614e87565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020615b0683398151915280545f9190600160a01b900460ff166128d2575f61288f565b638fb3603760e01b91505090565b5f6128ea33610455565b8660176128f782826137bc565b5f806129016138f0565b9150915089515f036129265760405163714184f760e11b815260040160405180910390fd5b60405163790a38ad60e01b815264ffffffffff8816600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af415801561297a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061299e9190615503565b80612a225750612a228773__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156129ef573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a139190615549565b64ffffffffff90811691161090565b15612a495760405163186399e560e31b815264ffffffffff88166004820152602401610962565b5f612a5c6001546001600160a01b031690565b60405163677d3feb60e11b81526001600160601b038e1660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa158015612aa9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612acd91906151f0565b9050612ad98184613d0d565b15612b125760405163e172170d60e01b81526001600160601b03808e166004830152808316602483015284166044820152606401610962565b5f826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b4f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b739190614e87565b6040516313d8ebc960e11b81526001600160601b038f1660048201529091505f906001600160a01b038316906327b1d792906024015f60405180830381865afa158015612bc2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612be9919081019061561a565b516040516368322c6360e11b81529091505f906001600160a01b0384169063d06458c690612c1b908590600401614adc565b5f60405180830381865afa158015612c35573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612c5c91908101906156de565b90508b63ffffffff16816060015163ffffffff161015612ca557606081015160405163c0eab50360e01b815263ffffffff9182166004820152908d166024820152604401610962565b80516001600160a01b03808f1691161115612ce957805160405163b316883360e01b81526001600160a01b039182166004820152908e166024820152604401610962565b60408101516001600160a01b03808f1691161015612d33576040808201519051637dd03ff960e11b81526001600160a01b039182166004820152908e166024820152604401610962565b6080810151604051633682752160e21b815264ffffffffff909116600482015273__$71e292c09eace9601b3e21e68a1278917a$__9063da09d48490602401602060405180830381865af4158015612d8d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612db191906153b3565b73__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612df8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e1c9190615549565b604051633682752160e21b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063da09d48490602401602060405180830381865af4158015612e71573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e9591906153b3565b604051633682752160e21b815264ffffffffff8e16600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063da09d48490602401602060405180830381865af4158015612ee9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f0d91906153b3565b612f1791906157ff565b1115612f4d57608081015160405163941185d360e01b815264ffffffffff9182166004820152908c166024820152604401610962565b5050604051631f849e6b60e11b815273__$05887d5853069c88bcd4c0a2107db45f29$__9150633f093cd690612f899086908f906004016153ca565b602060405180830381865af4158015612fa4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fc891906153eb565b95505f604051806101000160405280856001600160601b031681526020018e6001600160601b031681526020018b63ffffffff1681526020015f63ffffffff1681526020018c6001600160a01b031681526020018a64ffffffffff1681526020018d8152602001898152509050826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015613071573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130959190614e87565b6001600160a01b0316634a82439288836040518363ffffffff1660e01b81526004016130c2929190615812565b5f604051808303815f87803b1580156130d9575f80fd5b505af11580156130eb573d5f803e3d5ffd5b505050507f75877f30372d5d5274d26a87127a9dcb9944f7fc094a00f5e126ea90220d46e0848e898f6040516131249493929190615836565b60405180910390a15050505050509695505050505050565b61314533610455565b6131508360176137bc565b5f8061315a6138f0565b915091506131c8816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561319d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131c19190614e87565b8584613f3b565b5f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613205573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132299190614e87565b6040516313d8ebc960e11b81526001600160601b03881660048201526001600160a01b0391909116906327b1d792906024015f60405180830381865afa158015613275573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261329c919081019061561a565b80516001600160c01b0319871682526060820186905260408051631a99b41b60e31b8152905192935090916001600160a01b0385169163d4cda0d89160048083019260209291908290030181865afa1580156132fa573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061331e9190614e87565b6001600160a01b0316632bce2d7c888460ff6040518463ffffffff1660e01b815260040161334e939291906156bd565b5f604051808303815f87803b158015613365575f80fd5b505af1158015613377573d5f803e3d5ffd5b5050604080516001600160601b038b1681526001600160c01b031980861660208301528a16918101919091527fbc91a707be82165c58e12c3cdd805449dbceec4592db04a692e68b120a4daa7792506060019050611d33565b5f80516020615b06833981519152546001600160a01b031690565b5f805f846001600160a01b0316631d3be477856040518263ffffffff1660e01b815260040161341a9190614adc565b5f60405180830381865afa158015613434573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261345b9190810190614f1d565b60a081015160405163790a38ad60e01b815264ffffffffff909116600482015290915073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af41580156134b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134dc9190615503565b156135595773__$bf7bc340cbb9229ef1de2c568356e67902$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015613528573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061354c9190614e87565b60645b92509250506136b7565b6135a88160a0015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156129ef573d5f803e3d5ffd5b1561361f5773__$bf7bc340cbb9229ef1de2c568356e67902$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156135f4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136189190614e87565b606e61354f565b806040015163ffffffff16816060015163ffffffff16106136ac5773__$bf7bc340cbb9229ef1de2c568356e67902$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015613681573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136a59190614e87565b607861354f565b608001519150600a90505b9250929050565b5f80516020615b068339815191525f806136f66136d96133d0565b87306136e860045f8a8c615878565b6136f19161589f565b6140c2565b91509150816137b45763ffffffff81161561379157825460ff60a01b1916600160a01b1783556137246133d0565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401613753939291906158d7565b5f604051808303815f87803b15801561376a575f80fd5b505af115801561377c573d5f803e3d5ffd5b5050845460ff60a01b19168555506137b49050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610962565b505050505050565b60405163037c8cb160e51b815260ff8216600482015273__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af415801561380c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138309190615503565b806138be57506001546001600160a01b0316604051635b12715d60e11b81526001600160601b038416600482015260ff831660248201526001600160a01b03919091169063b624e2ba90604401602060405180830381865afa158015613898573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138bc9190615503565b155b156127765760405163d711af7560e01b81526001600160601b038316600482015260ff82166024820152604401610962565b5f8073__$19db5f0436f9beab06d91aaebdafaf50ff$__63ed35264761391e6001546001600160a01b031690565b6040805160e084901b6001600160e01b03191681526001600160a01b03929092166004830152336024830152600e604483015280516064808401938290030181865af4158015613970573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139949190615916565b915091509091565b604051631315996960e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063262b32d2906044015b602060405180830381865af41580156139fd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a219190615503565b90505b92915050565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c906044016139e2565b5f805f80516020615ae683398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613ae0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b049190615503565b15613b305780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610962565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015613b82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ba69190615503565b613bce5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610962565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015613c20573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c4491906151f0565b81546bffffffffffffffffffffffff19166001600160601b039190911690811782557f88857b75cbef7f257c9d5a473e28aaf6a91cc28f717f60f2cda3bcf5623d7b5490613c9061277a565b604080516001600160601b0390931683526001600160a01b0390911660208301520160405180910390a1546001600160601b031692915050565b5f613a218284615943565b5f6001600160a01b038083169084161015613d035760405163117efe6d60e31b815260040160405180910390fd5b613a218284615962565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c51906044016139e2565b613d5f6141ca565b60405163502ec37160e01b815260040160405180910390fd5b5f80516020615b268339815191528054600160401b810460ff1615906001600160401b03165f81158015613da95750825b90505f826001600160401b03166001148015613dc45750303b155b905081158015613dd2575080155b15613df05760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315613e1a57845460ff60401b1916600160401b1785555b5f8087806020019051810190613e309190615981565b91509150613e3f82828b614202565b613e4960286142a4565b600280546001600160a01b0319166001600160a01b0392909216919091179055613e73600b6142a4565b600380546001600160a01b0319166001600160a01b0392909216919091179055613e9d600a6142a4565b600480546001600160a01b0319166001600160a01b0392909216919091179055613ec760026142a4565b600580546001600160a01b0319166001600160a01b0392909216919091179055613ef763c7f9373d60e01b614335565b50508315611d3c57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611d33565b6040516368322c6360e11b81525f906001600160a01b0385169063d06458c690613f69908690600401614adc565b5f60405180830381865afa158015613f83573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613faa91908101906156de565b602001519050613fba8183613d0d565b1561072f578281836040516313bf6c4560e21b81526004016109629392919061551e565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af415801561403e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a2191906151f0565b5f80516020615b0683398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251614130919061599d565b5f60405180830381855afa9150503d805f8114614168576040519150601f19603f3d011682016040523d82523d5f602084013e61416d565b606091505b509150915081156141bf57604081511061419f578080602001905181019061419591906159b3565b90945092506141bf565b60208151106141bf57808060200190518101906141bc9190615503565b93505b505094509492505050565b5f80516020615b2683398151915254600160401b900460ff1661420057604051631afcd79f60e31b815260040160405180910390fd5b565b61420a6141ca565b614212614368565b61428f8383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015614253573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061427791906151f0565b60085f8660405180602001604052805f815250614378565b61429f63daf9067160e01b614335565b505050565b5f6142b76001546001600160a01b031690565b6001600160a01b031663d39e6043836142ce61210e565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015614311573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a249190614e87565b61433d6141ca565b614365816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b50565b6143706141ca565b6142006144bf565b6143806141ca565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af41580156143d6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143fa9190615503565b6144225760405163cf6935e560e01b81526001600160a01b0388166004820152602401610962565b61442b876144ed565b61443586836144fe565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016144a48382615a2b565b506144b5634a531f3360e01b614335565b5050505050505050565b6144c76141ca565b60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b6144f56141ca565b61436581614574565b6145066141ca565b61450e614585565b614517826145cd565b6001600160a01b03811661453e5760405163f17ef42d60e01b815260040160405180910390fd5b5f80516020615ae683398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b61457c6141ca565b61436581614062565b61458d6141ca565b6142006301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6145d56141ca565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af415801561462b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061464f9190615503565b6146775760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610962565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b5f602082840312156146a9575f80fd5b81356001600160e01b0319811681146146c0575f80fd5b9392505050565b6001600160601b0381168114614365575f80fd5b80356146e6816146c7565b919050565b6001600160c01b031981168114614365575f80fd5b5f8060408385031215614711575f80fd5b823561471c816146c7565b9150602083013561472c816146eb565b809150509250929050565b5f8060408385031215614748575f80fd5b8235614753816146c7565b9150602083013561472c816146c7565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516147d9608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e08084015261481d610100840182614763565b949350505050565b634e487b7160e01b5f52604160045260245ffd5b60405161024081016001600160401b038111828210171561485c5761485c614825565b60405290565b60405161010081016001600160401b038111828210171561485c5761485c614825565b604051606081016001600160401b038111828210171561485c5761485c614825565b604051608081016001600160401b038111828210171561485c5761485c614825565b60405161014081016001600160401b038111828210171561485c5761485c614825565b604051601f8201601f191681016001600160401b038111828210171561491457614914614825565b604052919050565b5f6001600160401b0382111561493457614934614825565b50601f01601f191660200190565b5f82601f830112614951575f80fd5b8135602083015f6149696149648461491c565b6148ec565b905082815285838301111561497c575f80fd5b828260208301375f92810160200192909252509392505050565b6001600160a01b0381168114614365575f80fd5b80356146e681614996565b63ffffffff81168114614365575f80fd5b80356146e6816149b5565b64ffffffffff81168114614365575f80fd5b80356146e6816149d1565b8015158114614365575f80fd5b80356146e6816149ee565b5f805f805f805f805f6101208a8c031215614a1f575f80fd5b89356001600160401b03811115614a34575f80fd5b614a408c828d01614942565b99505060208a0135614a5181614996565b9750614a5f60408b016149aa565b9650614a6d60608b016149aa565b9550614a7b60808b016149c6565b9450614a8960a08b016149e3565b9350614a9760c08b016149fb565b9250614aa560e08b016149fb565b91506101008a01356001600160401b03811115614ac0575f80fd5b614acc8c828d01614942565b9150509295985092959850929598565b6001600160c01b031991909116815260200190565b5f60208284031215614b01575f80fd5b81356001600160401b03811115614b16575f80fd5b61481d84828501614942565b5f8060408385031215614b33575f80fd5b8235614b3e81614996565b915060208301356001600160401b03811115614b58575f80fd5b614b6485828601614942565b9150509250929050565b5f805f60608486031215614b80575f80fd5b8335614b8b81614996565b92506020840135614b9b816146eb565b915060408401356001600160401b03811115614bb5575f80fd5b614bc186828701614942565b9150509250925092565b5f805f838503610280811215614bdf575f80fd5b8435614bea816146c7565b93506020850135614bfa816146eb565b9250610240603f1982011215614c0e575f80fd5b50614c17614839565b614c23604086016146db565b8152614c31606086016146db565b6020820152614c42608086016146db565b6040820152614c5360a086016146db565b6060820152614c6460c086016146db565b6080820152614c7560e086016146db565b60a0820152614c8761010086016146db565b60c0820152614c9961012086016146db565b60e0820152614cab61014086016146db565b610100820152614cbe61016086016146db565b610120820152614cd161018086016146db565b610140820152614ce46101a086016146db565b610160820152614cf76101c086016146db565b610180820152614d0a6101e086016146db565b6101a0820152614d1d61020086016146db565b6101c0820152614d3061022086016146db565b6101e0820152614d4361024086016146db565b610200820152614d5661026086016146db565b610220820152809150509250925092565b5f60208284031215614d77575f80fd5b81356146c081614996565b5f805f805f8060c08789031215614d97575f80fd5b8635614da2816146c7565b955060208701356001600160401b03811115614dbc575f80fd5b614dc889828a01614942565b9550506040870135614dd981614996565b93506060870135614de9816149b5565b92506080870135614df9816149d1565b915060a08701356001600160401b03811115614e13575f80fd5b614e1f89828a01614942565b9150509295509295509295565b5f805f60608486031215614e3e575f80fd5b8335614b8b816146c7565b5f8060408385031215614e5a575f80fd5b823561471c81614996565b6001600160a01b039290921682526001600160601b0316602082015260400190565b5f60208284031215614e97575f80fd5b81516146c081614996565b80516146e6816146c7565b80516146e6816149b5565b80516146e681614996565b80516146e6816149d1565b5f82601f830112614edd575f80fd5b8151602083015f614ef06149648461491c565b9050828152858383011115614f03575f80fd5b8282602083015e5f92810160200192909252509392505050565b5f60208284031215614f2d575f80fd5b81516001600160401b03811115614f42575f80fd5b82016101008185031215614f54575f80fd5b614f5c614862565b614f6582614ea2565b8152614f7360208301614ea2565b6020820152614f8460408301614ead565b6040820152614f9560608301614ead565b6060820152614fa660808301614eb8565b6080820152614fb760a08301614ec3565b60a082015260c08201516001600160401b03811115614fd4575f80fd5b614fe086828501614ece565b60c08301525060e08201516001600160401b03811115614ffe575f80fd5b61500a86828501614ece565b60e083015250949350505050565b634e487b7160e01b5f52601160045260245ffd5b63ffffffff8181168382160190811115613a2457613a24615018565b6001600160601b0381511682525f602082015161507060208501826001600160601b03169052565b506040820151615088604085018263ffffffff169052565b5060608201516150a0606085018263ffffffff169052565b5060808201516150bb60808501826001600160a01b03169052565b5060a08201516150d460a085018264ffffffffff169052565b5060c082015161010060c08501526150f0610100850182614763565b905060e083015184820360e08601526151098282614763565b95945050505050565b6001600160401b0360c01b84168152606060208201525f6151366060830185615048565b905060ff83166040830152949350505050565b5f60208284031215615159575f80fd5b81516001600160401b0381111561516e575f80fd5b82016060818503121561517f575f80fd5b615187614885565b81516001600160401b0381111561519c575f80fd5b6151a886828501614ece565b82525060208201516151b981614996565b602082015260408201516001600160401b038111156151d6575f80fd5b6151e286828501614ece565b604083015250949350505050565b5f60208284031215615200575f80fd5b81516146c0816146c7565b6001600160a01b039490941684526001600160601b039283166020850152908216604084015216606082015260800190565b5f6020828403121561524d575f80fd5b815162ffffff811681146146c0575f80fd5b600181811c9082168061527357607f821691505b60208210810361529157634e487b7160e01b5f52602260045260245ffd5b50919050565b5f604082840312156152a7575f80fd5b604080519081016001600160401b03811182821017156152c9576152c9614825565b806040525080915082516152dc81614996565b815260208301516152ec816146c7565b6020919091015292915050565b5f6101c082840312801561530b575f80fd5b5060405160e081016001600160401b038111828210171561532e5761532e614825565b60405261533b8484615297565b815261534a8460408501615297565b602082015261535c8460808501615297565b604082015261536e8460c08501615297565b6060820152615381846101008501615297565b6080820152615394846101408501615297565b60a08201526153a7846101808501615297565b60c08201529392505050565b5f602082840312156153c3575f80fd5b5051919050565b6001600160601b0383168152604060208201525f61481d6040830184614763565b5f602082840312156153fb575f80fd5b81516146c0816146eb565b6001600160c01b03198316815260406020820181905282516001600160a01b0316908201525f602083015161544660608401826001600160601b03169052565b5060408301516001600160a01b038116608084015250606083015163ffffffff811660a084015250608083015164ffffffffff811660c08401525060a083015180151560e08401525060c08301518015156101008401525060e08301516001600160a01b03811661012084015250610100830151610140808401526154cf610180840182614763565b9050610120840151603f19848303016101608501526154ee8282614763565b9695505050505050565b80516146e6816149ee565b5f60208284031215615513575f80fd5b81516146c0816149ee565b6001600160c01b03199390931683526001600160601b03918216602084015216604082015260600190565b5f60208284031215615559575f80fd5b81516146c0816149d1565b6001600160401b0381168114614365575f80fd5b5f60208284031215615588575f80fd5b81516146c081615564565b6001600160401b0360c01b815116825260208101511515602083015263ffffffff60408201511660408301525f60608201516080606085015261481d6080850182614763565b6001600160601b0383168152604060208201525f61481d6040830184615593565b5f6020828403121561560a575f80fd5b815160ff811681146146c0575f80fd5b5f6020828403121561562a575f80fd5b81516001600160401b0381111561563f575f80fd5b820160808185031215615650575f80fd5b6156586148a7565b8151615663816146eb565b81526020820151615673816149ee565b60208201526040820151615686816149b5565b604082015260608201516001600160401b038111156156a3575f80fd5b6156af86828501614ece565b606083015250949350505050565b6001600160601b0384168152606060208201525f6151366060830185615593565b5f602082840312156156ee575f80fd5b81516001600160401b03811115615703575f80fd5b82016101408185031215615715575f80fd5b61571d6148c9565b61572682614eb8565b815261573460208301614ea2565b602082015261574560408301614eb8565b604082015261575660608301614ead565b606082015261576760808301614ec3565b608082015261577860a083016154f8565b60a082015261578960c083016154f8565b60c082015261579a60e08301614eb8565b60e08201526101008201516001600160401b038111156157b8575f80fd5b6157c486828501614ece565b610100830152506101208201516001600160401b038111156157e4575f80fd5b6157f086828501614ece565b61012083015250949350505050565b81810381811115613a2457613a24615018565b6001600160401b0360c01b83168152604060208201525f61481d6040830184615048565b6001600160601b03851681526001600160601b03841660208201526001600160401b0360c01b83166040820152608060608201525f6154ee6080830184614763565b5f8085851115615886575f80fd5b83861115615892575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156158d0576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f8060408385031215615927575f80fd5b8251615932816146c7565b602084015190925061472c81614996565b6001600160a01b038181168382160190811115613a2457613a24615018565b6001600160a01b038281168282160390811115613a2457613a24615018565b5f8060408385031215615992575f80fd5b825161593281614996565b5f82518060208501845e5f920191825250919050565b5f80604083850312156159c4575f80fd5b82516159cf816149ee565b602084015190925061472c816149b5565b601f82111561429f57805f5260205f20601f840160051c81016020851015615a055750805b601f840160051c820191505b81811015615a24575f8155600101615a11565b5050505050565b81516001600160401b03811115615a4457615a44614825565b615a5881615a52845461525f565b846159e0565b6020601f821160018114615a8a575f8315615a735750848201515b5f19600385901b1c1916600184901b178455615a24565b5f84815260208120601f198516915b82811015615ab95787850151825560209485019460019092019101615a99565b5084821015615ad657868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212208fe766ef6390c7ffe54e05990e4be2a8facc7b14d76dca3588b3aaa6b298d88164736f6c634300081a0033",
1341
+ "linkReferences": {
1342
+ "contracts/pool/PoolLib.sol": {
1343
+ "PoolLib": [
1344
+ {
1345
+ "length": 20,
1346
+ "start": 14794
1347
+ }
1348
+ ]
1349
+ },
1350
+ "contracts/shared/ContractLib.sol": {
1351
+ "ContractLib": [
1352
+ {
1353
+ "length": 20,
1354
+ "start": 1361
1355
+ },
1356
+ {
1357
+ "length": 20,
1358
+ "start": 6146
1359
+ },
1360
+ {
1361
+ "length": 20,
1362
+ "start": 8805
1363
+ },
1364
+ {
1365
+ "length": 20,
1366
+ "start": 17524
1367
+ },
1368
+ {
1369
+ "length": 20,
1370
+ "start": 18121
1371
+ }
1372
+ ]
1373
+ },
1374
+ "contracts/type/Amount.sol": {
1375
+ "AmountLib": [
1376
+ {
1377
+ "length": 20,
1378
+ "start": 2438
1379
+ },
1380
+ {
1381
+ "length": 20,
1382
+ "start": 2764
1383
+ },
1384
+ {
1385
+ "length": 20,
1386
+ "start": 2984
1387
+ },
1388
+ {
1389
+ "length": 20,
1390
+ "start": 9439
1391
+ },
1392
+ {
1393
+ "length": 20,
1394
+ "start": 9917
1395
+ },
1396
+ {
1397
+ "length": 20,
1398
+ "start": 15002
1399
+ },
1400
+ {
1401
+ "length": 20,
1402
+ "start": 15144
1403
+ },
1404
+ {
1405
+ "length": 20,
1406
+ "start": 16604
1407
+ }
1408
+ ]
1409
+ },
1410
+ "contracts/type/DistributorType.sol": {
1411
+ "DistributorTypeLib": [
1412
+ {
1413
+ "length": 20,
1414
+ "start": 5236
1415
+ }
1416
+ ]
1417
+ },
1418
+ "contracts/type/NftId.sol": {
1419
+ "NftIdLib": [
1420
+ {
1421
+ "length": 20,
1422
+ "start": 3843
1423
+ },
1424
+ {
1425
+ "length": 20,
1426
+ "start": 5904
1427
+ },
1428
+ {
1429
+ "length": 20,
1430
+ "start": 6527
1431
+ },
1432
+ {
1433
+ "length": 20,
1434
+ "start": 7885
1435
+ },
1436
+ {
1437
+ "length": 20,
1438
+ "start": 10372
1439
+ },
1440
+ {
1441
+ "length": 20,
1442
+ "start": 15230
1443
+ },
1444
+ {
1445
+ "length": 20,
1446
+ "start": 15883
1447
+ }
1448
+ ]
1449
+ },
1450
+ "contracts/type/ObjectType.sol": {
1451
+ "ObjectTypeLib": [
1452
+ {
1453
+ "length": 20,
1454
+ "start": 14506
1455
+ }
1456
+ ]
1457
+ },
1458
+ "contracts/type/Referral.sol": {
1459
+ "ReferralLib": [
1460
+ {
1461
+ "length": 20,
1462
+ "start": 6017
1463
+ },
1464
+ {
1465
+ "length": 20,
1466
+ "start": 12340
1467
+ }
1468
+ ]
1469
+ },
1470
+ "contracts/type/RoleId.sol": {
1471
+ "RoleIdLib": [
1472
+ {
1473
+ "length": 20,
1474
+ "start": 8539
1475
+ }
1476
+ ]
1477
+ },
1478
+ "contracts/type/Seconds.sol": {
1479
+ "SecondsLib": [
1480
+ {
1481
+ "length": 20,
1482
+ "start": 11819
1483
+ }
1484
+ ]
1485
+ },
1486
+ "contracts/type/Timestamp.sol": {
1487
+ "TimestampLib": [
1488
+ {
1489
+ "length": 20,
1490
+ "start": 6716
1491
+ },
1492
+ {
1493
+ "length": 20,
1494
+ "start": 6848
1495
+ },
1496
+ {
1497
+ "length": 20,
1498
+ "start": 6952
1499
+ },
1500
+ {
1501
+ "length": 20,
1502
+ "start": 10776
1503
+ },
1504
+ {
1505
+ "length": 20,
1506
+ "start": 10880
1507
+ },
1508
+ {
1509
+ "length": 20,
1510
+ "start": 11913
1511
+ },
1512
+ {
1513
+ "length": 20,
1514
+ "start": 12047
1515
+ },
1516
+ {
1517
+ "length": 20,
1518
+ "start": 12167
1519
+ },
1520
+ {
1521
+ "length": 20,
1522
+ "start": 13654
1523
+ },
1524
+ {
1525
+ "length": 20,
1526
+ "start": 13881
1527
+ }
1528
+ ]
1529
+ },
1530
+ "contracts/type/UFixed.sol": {
1531
+ "UFixedLib": [
1532
+ {
1533
+ "length": 20,
1534
+ "start": 4641
1535
+ },
1536
+ {
1537
+ "length": 20,
1538
+ "start": 4763
1539
+ },
1540
+ {
1541
+ "length": 20,
1542
+ "start": 4941
1543
+ },
1544
+ {
1545
+ "length": 20,
1546
+ "start": 5103
1547
+ },
1548
+ {
1549
+ "length": 20,
1550
+ "start": 13753
1551
+ },
1552
+ {
1553
+ "length": 20,
1554
+ "start": 13957
1555
+ },
1556
+ {
1557
+ "length": 20,
1558
+ "start": 14098
1559
+ }
1560
+ ]
1561
+ },
1562
+ "contracts/type/Version.sol": {
1563
+ "VersionLib": [
1564
+ {
1565
+ "length": 20,
1566
+ "start": 3643
1567
+ },
1568
+ {
1569
+ "length": 20,
1570
+ "start": 7127
1571
+ }
1572
+ ]
1573
+ }
1574
+ },
1575
+ "deployedLinkReferences": {
1576
+ "contracts/pool/PoolLib.sol": {
1577
+ "PoolLib": [
1578
+ {
1579
+ "length": 20,
1580
+ "start": 14580
1581
+ }
1582
+ ]
1583
+ },
1584
+ "contracts/shared/ContractLib.sol": {
1585
+ "ContractLib": [
1586
+ {
1587
+ "length": 20,
1588
+ "start": 1147
1589
+ },
1590
+ {
1591
+ "length": 20,
1592
+ "start": 5932
1593
+ },
1594
+ {
1595
+ "length": 20,
1596
+ "start": 8591
1597
+ },
1598
+ {
1599
+ "length": 20,
1600
+ "start": 17310
1601
+ },
1602
+ {
1603
+ "length": 20,
1604
+ "start": 17907
1605
+ }
1606
+ ]
1607
+ },
1608
+ "contracts/type/Amount.sol": {
1609
+ "AmountLib": [
1610
+ {
1611
+ "length": 20,
1612
+ "start": 2224
1613
+ },
1614
+ {
1615
+ "length": 20,
1616
+ "start": 2550
1617
+ },
1618
+ {
1619
+ "length": 20,
1620
+ "start": 2770
1621
+ },
1622
+ {
1623
+ "length": 20,
1624
+ "start": 9225
1625
+ },
1626
+ {
1627
+ "length": 20,
1628
+ "start": 9703
1629
+ },
1630
+ {
1631
+ "length": 20,
1632
+ "start": 14788
1633
+ },
1634
+ {
1635
+ "length": 20,
1636
+ "start": 14930
1637
+ },
1638
+ {
1639
+ "length": 20,
1640
+ "start": 16390
1641
+ }
1642
+ ]
1643
+ },
1644
+ "contracts/type/DistributorType.sol": {
1645
+ "DistributorTypeLib": [
1646
+ {
1647
+ "length": 20,
1648
+ "start": 5022
1649
+ }
1650
+ ]
1651
+ },
1652
+ "contracts/type/NftId.sol": {
1653
+ "NftIdLib": [
1654
+ {
1655
+ "length": 20,
1656
+ "start": 3629
1657
+ },
1658
+ {
1659
+ "length": 20,
1660
+ "start": 5690
1661
+ },
1662
+ {
1663
+ "length": 20,
1664
+ "start": 6313
1665
+ },
1666
+ {
1667
+ "length": 20,
1668
+ "start": 7671
1669
+ },
1670
+ {
1671
+ "length": 20,
1672
+ "start": 10158
1673
+ },
1674
+ {
1675
+ "length": 20,
1676
+ "start": 15016
1677
+ },
1678
+ {
1679
+ "length": 20,
1680
+ "start": 15669
1681
+ }
1682
+ ]
1683
+ },
1684
+ "contracts/type/ObjectType.sol": {
1685
+ "ObjectTypeLib": [
1686
+ {
1687
+ "length": 20,
1688
+ "start": 14292
1689
+ }
1690
+ ]
1691
+ },
1692
+ "contracts/type/Referral.sol": {
1693
+ "ReferralLib": [
1694
+ {
1695
+ "length": 20,
1696
+ "start": 5803
1697
+ },
1698
+ {
1699
+ "length": 20,
1700
+ "start": 12126
1701
+ }
1702
+ ]
1703
+ },
1704
+ "contracts/type/RoleId.sol": {
1705
+ "RoleIdLib": [
1706
+ {
1707
+ "length": 20,
1708
+ "start": 8325
1709
+ }
1710
+ ]
1711
+ },
1712
+ "contracts/type/Seconds.sol": {
1713
+ "SecondsLib": [
1714
+ {
1715
+ "length": 20,
1716
+ "start": 11605
1717
+ }
1718
+ ]
1719
+ },
1720
+ "contracts/type/Timestamp.sol": {
1721
+ "TimestampLib": [
1722
+ {
1723
+ "length": 20,
1724
+ "start": 6502
1725
+ },
1726
+ {
1727
+ "length": 20,
1728
+ "start": 6634
1729
+ },
1730
+ {
1731
+ "length": 20,
1732
+ "start": 6738
1733
+ },
1734
+ {
1735
+ "length": 20,
1736
+ "start": 10562
1737
+ },
1738
+ {
1739
+ "length": 20,
1740
+ "start": 10666
1741
+ },
1742
+ {
1743
+ "length": 20,
1744
+ "start": 11699
1745
+ },
1746
+ {
1747
+ "length": 20,
1748
+ "start": 11833
1749
+ },
1750
+ {
1751
+ "length": 20,
1752
+ "start": 11953
1753
+ },
1754
+ {
1755
+ "length": 20,
1756
+ "start": 13440
1757
+ },
1758
+ {
1759
+ "length": 20,
1760
+ "start": 13667
1761
+ }
1762
+ ]
1763
+ },
1764
+ "contracts/type/UFixed.sol": {
1765
+ "UFixedLib": [
1766
+ {
1767
+ "length": 20,
1768
+ "start": 4427
1769
+ },
1770
+ {
1771
+ "length": 20,
1772
+ "start": 4549
1773
+ },
1774
+ {
1775
+ "length": 20,
1776
+ "start": 4727
1777
+ },
1778
+ {
1779
+ "length": 20,
1780
+ "start": 4889
1781
+ },
1782
+ {
1783
+ "length": 20,
1784
+ "start": 13539
1785
+ },
1786
+ {
1787
+ "length": 20,
1788
+ "start": 13743
1789
+ },
1790
+ {
1791
+ "length": 20,
1792
+ "start": 13884
1793
+ }
1794
+ ]
1795
+ },
1796
+ "contracts/type/Version.sol": {
1797
+ "VersionLib": [
1798
+ {
1799
+ "length": 20,
1800
+ "start": 3429
1801
+ },
1802
+ {
1803
+ "length": 20,
1804
+ "start": 6913
1805
+ }
1806
+ ]
1807
+ }
1808
+ }
1809
+ }