@etherisc/gif-next 0.0.2-f7c17b4-970 → 0.0.2-f7d1200-068

Sign up to get free protection for your applications and to get access to all the features.
Files changed (634) hide show
  1. package/README.md +54 -88
  2. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  3. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1253 -0
  4. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  5. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
  6. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  7. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +358 -0
  8. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  9. package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
  10. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1032 -0
  12. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +258 -0
  14. package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +290 -0
  16. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  17. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
  18. package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +390 -0
  20. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
  22. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  23. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1518 -0
  24. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +410 -0
  26. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  27. package/artifacts/contracts/{components → distribution}/Distribution.sol/Distribution.json +264 -378
  28. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1557 -0
  30. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +854 -0
  32. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  33. package/artifacts/contracts/{components → distribution}/IDistributionComponent.sol/IDistributionComponent.json +314 -248
  34. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +945 -0
  36. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  37. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +703 -0
  38. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  39. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +290 -2132
  40. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  41. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +328 -69
  42. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  43. package/artifacts/contracts/instance/Instance.sol/Instance.json +402 -2896
  44. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  45. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1626 -0
  46. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  47. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
  48. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  49. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +673 -371
  50. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  51. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +387 -262
  52. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  53. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +115 -74
  54. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  55. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3469 -0
  56. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  57. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  58. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  59. package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -49
  60. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  61. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  62. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  63. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
  64. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  65. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
  66. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
  67. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +25 -150
  68. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  69. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  70. package/artifacts/contracts/instance/module/{ITreasury.sol/ITreasury.json → IComponents.sol/IComponents.json} +2 -2
  71. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  72. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  73. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  74. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  75. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  76. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  77. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +1155 -0
  78. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  79. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -0
  80. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  81. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  82. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  83. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +802 -0
  84. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  85. package/artifacts/contracts/{instance/service/IBundleService.sol/IBundleService.json → oracle/IOracleService.sol/IOracleService.json} +337 -284
  86. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  87. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1055 -0
  88. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  89. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1034 -0
  90. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  91. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +730 -0
  92. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  93. package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/BasicPool.sol/BasicPool.json} +320 -339
  94. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  95. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -0
  96. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  97. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1521 -0
  98. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  99. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +830 -0
  100. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  101. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +938 -0
  102. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  103. package/artifacts/contracts/{components → pool}/IPoolComponent.sol/IPoolComponent.json +297 -380
  104. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  105. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1213 -0
  106. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  107. package/artifacts/contracts/pool/Pool.sol/Pool.json +1218 -0
  108. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  109. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1700 -0
  110. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  111. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +798 -0
  112. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  113. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +863 -0
  114. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  115. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +730 -0
  116. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  117. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1280 -0
  118. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  119. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -0
  120. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  121. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1339 -0
  122. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  123. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +826 -0
  124. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  125. package/artifacts/contracts/{instance/service → product}/IApplicationService.sol/IApplicationService.json +137 -87
  126. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  127. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +788 -0
  128. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  129. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +816 -0
  130. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  131. package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → product/IPricingService.sol/IPricingService.json} +203 -226
  132. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  133. package/artifacts/contracts/{components → product}/IProductComponent.sol/IProductComponent.json +418 -173
  134. package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
  135. package/artifacts/contracts/{instance/service → product}/IProductService.sol/IProductService.json +90 -63
  136. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  137. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1335 -0
  138. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  139. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +794 -0
  140. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  141. package/artifacts/contracts/product/PricingService.sol/PricingService.json +1017 -0
  142. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  143. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +786 -0
  144. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  145. package/artifacts/contracts/{components → product}/Product.sol/Product.json +381 -310
  146. package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
  147. package/artifacts/contracts/product/ProductService.sol/ProductService.json +708 -0
  148. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
  149. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +702 -0
  150. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  151. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +15 -2
  152. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  153. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +191 -18
  154. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  155. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +199 -138
  156. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  157. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
  158. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  159. package/artifacts/contracts/registry/Registry.sol/Registry.json +453 -34
  160. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  161. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1746 -0
  162. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  163. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +372 -86
  164. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  165. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +105 -54
  166. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  167. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
  168. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  169. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1159 -0
  170. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  171. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -0
  172. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  173. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +316 -153
  174. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  175. package/artifacts/contracts/{components → shared}/Component.sol/Component.json +199 -115
  176. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  177. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1712 -0
  178. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  179. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +820 -0
  180. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  181. package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +100 -102
  182. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  183. package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +236 -52
  184. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  185. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1033 -0
  186. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  187. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +737 -0
  188. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  189. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +59 -14
  190. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  191. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -6
  192. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  193. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +3 -10
  194. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  195. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +87 -9
  196. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  197. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +3 -10
  198. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  199. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
  200. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  201. package/artifacts/contracts/shared/IService.sol/IService.json +106 -18
  202. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
  203. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
  204. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  205. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +73 -0
  206. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  207. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +977 -0
  208. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  209. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +497 -0
  210. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  211. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +133 -0
  212. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  213. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  214. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  215. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +15 -22
  216. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  217. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +98 -26
  218. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  219. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +23 -22
  220. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  221. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -15
  222. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  223. package/artifacts/contracts/shared/Service.sol/Service.json +113 -20
  224. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  225. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +107 -6
  226. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  227. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
  228. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  229. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
  230. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  231. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +470 -0
  232. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  233. package/artifacts/contracts/staking/Staking.sol/Staking.json +1991 -0
  234. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  235. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
  236. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  237. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +773 -0
  238. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  239. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
  240. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  241. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1343 -0
  242. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  243. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +718 -0
  244. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  245. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2242 -0
  246. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  247. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +576 -0
  248. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  249. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  250. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  251. package/artifacts/contracts/type/Amount.sol/AmountLib.json +374 -0
  252. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  253. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  254. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  255. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
  256. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  257. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  258. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  259. package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
  260. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  261. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  262. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  263. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
  264. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  265. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  266. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  267. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
  268. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  269. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  270. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  271. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  272. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  273. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  274. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  275. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +86 -0
  276. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  277. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
  278. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  279. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +222 -0
  280. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  281. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
  282. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  283. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  284. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  285. package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
  286. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  287. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  288. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  289. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  290. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
  291. package/artifacts/contracts/type/UFixed.sol/MathLib.json +16 -0
  292. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  293. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +535 -0
  294. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  295. package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
  296. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  297. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +68 -0
  298. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  299. package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
  300. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  301. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +617 -0
  302. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  303. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  304. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  305. package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
  306. package/contracts/authorization/AccessAdmin.sol +591 -0
  307. package/contracts/authorization/AccessManagerCloneable.sol +16 -0
  308. package/contracts/authorization/Authorization.sol +218 -0
  309. package/contracts/authorization/IAccess.sol +48 -0
  310. package/contracts/authorization/IAccessAdmin.sol +136 -0
  311. package/contracts/authorization/IAuthorization.sol +54 -0
  312. package/contracts/authorization/IModuleAuthorization.sol +21 -0
  313. package/contracts/authorization/IServiceAuthorization.sol +38 -0
  314. package/contracts/authorization/ModuleAuthorization.sol +78 -0
  315. package/contracts/authorization/ServiceAuthorization.sol +90 -0
  316. package/contracts/distribution/BasicDistribution.sol +138 -0
  317. package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
  318. package/contracts/{components → distribution}/Distribution.sol +179 -192
  319. package/contracts/distribution/DistributionService.sol +336 -0
  320. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  321. package/contracts/distribution/IDistributionComponent.sol +52 -0
  322. package/contracts/distribution/IDistributionService.sol +97 -0
  323. package/contracts/instance/{BundleManager.sol → BundleSet.sol} +32 -31
  324. package/contracts/instance/IInstance.sol +60 -66
  325. package/contracts/instance/IInstanceService.sol +57 -24
  326. package/contracts/instance/Instance.sol +176 -213
  327. package/contracts/instance/InstanceAdmin.sol +266 -0
  328. package/contracts/instance/InstanceAuthorizationV3.sol +204 -0
  329. package/contracts/instance/InstanceReader.sol +180 -65
  330. package/contracts/instance/InstanceService.sol +310 -357
  331. package/contracts/instance/InstanceServiceManager.sol +12 -26
  332. package/contracts/instance/InstanceStore.sol +277 -0
  333. package/contracts/instance/base/BalanceStore.sol +123 -0
  334. package/contracts/instance/{Cloneable.sol → base/Cloneable.sol} +4 -22
  335. package/contracts/instance/base/ObjectCounter.sol +21 -0
  336. package/contracts/instance/base/ObjectLifecycle.sol +104 -0
  337. package/contracts/instance/{ObjectManager.sol → base/ObjectSet.sol} +19 -24
  338. package/contracts/instance/module/IAccess.sol +19 -20
  339. package/contracts/instance/module/IBundle.sol +8 -9
  340. package/contracts/instance/module/{ISetup.sol → IComponents.sol} +21 -23
  341. package/contracts/instance/module/IDistribution.sol +6 -4
  342. package/contracts/instance/module/IPolicy.sol +52 -16
  343. package/contracts/instance/module/IRisk.sol +1 -1
  344. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  345. package/contracts/oracle/BasicOracle.sol +48 -0
  346. package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
  347. package/contracts/oracle/IOracle.sol +36 -0
  348. package/contracts/oracle/IOracleComponent.sol +33 -0
  349. package/contracts/oracle/IOracleService.sol +65 -0
  350. package/contracts/oracle/Oracle.sol +166 -0
  351. package/contracts/oracle/OracleService.sol +278 -0
  352. package/contracts/oracle/OracleServiceManager.sol +39 -0
  353. package/contracts/pool/BasicPool.sol +166 -0
  354. package/contracts/pool/BasicPoolAuthorization.sol +58 -0
  355. package/contracts/pool/BundleService.sol +450 -0
  356. package/contracts/pool/BundleServiceManager.sol +39 -0
  357. package/contracts/pool/IBundleService.sol +135 -0
  358. package/contracts/pool/IPoolComponent.sol +58 -0
  359. package/contracts/pool/IPoolService.sol +149 -0
  360. package/contracts/pool/Pool.sol +328 -0
  361. package/contracts/pool/PoolService.sol +559 -0
  362. package/contracts/pool/PoolServiceManager.sol +39 -0
  363. package/contracts/product/ApplicationService.sol +230 -0
  364. package/contracts/{instance/service → product}/ApplicationServiceManager.sol +11 -8
  365. package/contracts/product/BasicProduct.sol +52 -0
  366. package/contracts/product/BasicProductAuthorization.sol +43 -0
  367. package/contracts/product/ClaimService.sol +424 -0
  368. package/contracts/{instance/service → product}/ClaimServiceManager.sol +11 -8
  369. package/contracts/{instance/service → product}/IApplicationService.sol +15 -36
  370. package/contracts/product/IClaimService.sol +100 -0
  371. package/contracts/product/IPolicyService.sol +85 -0
  372. package/contracts/product/IPricingService.sol +39 -0
  373. package/contracts/product/IProductComponent.sol +40 -0
  374. package/contracts/product/IProductService.sol +33 -0
  375. package/contracts/product/PolicyService.sol +556 -0
  376. package/contracts/product/PolicyServiceManager.sol +39 -0
  377. package/contracts/product/PricingService.sol +300 -0
  378. package/contracts/product/PricingServiceManager.sol +39 -0
  379. package/contracts/product/Product.sol +411 -0
  380. package/contracts/product/ProductService.sol +99 -0
  381. package/contracts/product/ProductServiceManager.sol +39 -0
  382. package/contracts/registry/ChainNft.sol +16 -1
  383. package/contracts/registry/IRegistry.sol +61 -26
  384. package/contracts/registry/IRegistryService.sol +44 -42
  385. package/contracts/registry/ITransferInterceptor.sol +1 -0
  386. package/contracts/registry/Registry.sol +251 -139
  387. package/contracts/registry/RegistryAdmin.sol +365 -0
  388. package/contracts/registry/RegistryService.sol +70 -101
  389. package/contracts/registry/RegistryServiceManager.sol +23 -32
  390. package/contracts/registry/ReleaseLifecycle.sol +27 -0
  391. package/contracts/registry/ReleaseRegistry.sol +485 -0
  392. package/contracts/registry/ServiceAuthorizationV3.sol +200 -0
  393. package/contracts/registry/TokenRegistry.sol +261 -62
  394. package/contracts/shared/Component.sol +281 -0
  395. package/contracts/shared/ComponentService.sol +650 -0
  396. package/contracts/shared/ComponentServiceManager.sol +35 -0
  397. package/contracts/shared/ComponentVerifyingService.sol +117 -0
  398. package/contracts/{components → shared}/IComponent.sol +30 -27
  399. package/contracts/shared/IComponentService.sol +108 -0
  400. package/contracts/shared/IInstanceLinkedComponent.sol +56 -0
  401. package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
  402. package/contracts/{instance/base → shared}/ILifecycle.sol +3 -4
  403. package/contracts/shared/INftOwnable.sol +2 -2
  404. package/contracts/shared/IPolicyHolder.sol +29 -10
  405. package/contracts/shared/IRegistryLinked.sol +0 -1
  406. package/contracts/shared/IService.sol +15 -6
  407. package/contracts/shared/InitializableCustom.sol +177 -0
  408. package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +2 -2
  409. package/contracts/shared/InstanceLinkedComponent.sol +172 -0
  410. package/contracts/shared/KeyValueStore.sol +131 -0
  411. package/contracts/shared/Lifecycle.sol +77 -0
  412. package/contracts/shared/NftIdSet.sol +65 -0
  413. package/contracts/shared/NftOwnable.sol +5 -18
  414. package/contracts/shared/PolicyHolder.sol +41 -23
  415. package/contracts/shared/Registerable.sol +13 -12
  416. package/contracts/shared/RegistryLinked.sol +0 -5
  417. package/contracts/shared/Service.sol +47 -23
  418. package/contracts/shared/TokenHandler.sol +41 -6
  419. package/contracts/staking/IStaking.sol +167 -0
  420. package/contracts/staking/IStakingService.sol +160 -0
  421. package/contracts/staking/StakeManagerLib.sol +231 -0
  422. package/contracts/staking/Staking.sol +516 -0
  423. package/contracts/staking/StakingLifecycle.sol +23 -0
  424. package/contracts/staking/StakingManager.sol +50 -0
  425. package/contracts/staking/StakingReader.sol +183 -0
  426. package/contracts/staking/StakingService.sol +407 -0
  427. package/contracts/staking/StakingServiceManager.sol +44 -0
  428. package/contracts/staking/StakingStore.sol +605 -0
  429. package/contracts/staking/TargetManagerLib.sol +207 -0
  430. package/contracts/{types → type}/AddressSet.sol +1 -1
  431. package/contracts/type/Amount.sol +135 -0
  432. package/contracts/{types → type}/Blocknumber.sol +27 -3
  433. package/contracts/{types → type}/ClaimId.sol +25 -2
  434. package/contracts/{types → type}/Fee.sol +33 -23
  435. package/contracts/{types → type}/NftId.sol +21 -15
  436. package/contracts/{types → type}/NftIdSet.sol +2 -2
  437. package/contracts/type/ObjectType.sol +271 -0
  438. package/contracts/{types → type}/PayoutId.sol +33 -5
  439. package/contracts/{types → type}/Referral.sol +6 -1
  440. package/contracts/type/RequestId.sol +75 -0
  441. package/contracts/{types → type}/RiskId.sol +1 -1
  442. package/contracts/type/RoleId.sol +174 -0
  443. package/contracts/{types → type}/Seconds.sol +40 -1
  444. package/contracts/type/Selector.sol +102 -0
  445. package/contracts/{types → type}/StateId.sol +34 -4
  446. package/contracts/type/String.sol +53 -0
  447. package/contracts/{types → type}/Timestamp.sol +22 -2
  448. package/contracts/{types → type}/UFixed.sol +35 -9
  449. package/contracts/{types → type}/Version.sol +5 -2
  450. package/contracts/{shared → upgradeability}/IVersionable.sol +1 -1
  451. package/contracts/{shared → upgradeability}/ProxyManager.sol +36 -7
  452. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
  453. package/contracts/{shared → upgradeability}/Versionable.sol +1 -1
  454. package/package.json +8 -5
  455. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  456. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  457. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
  458. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  459. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  460. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  461. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  462. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  463. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
  464. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -764
  465. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
  466. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
  467. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -984
  468. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
  469. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -261
  470. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
  471. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  472. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  473. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  474. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -502
  475. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  476. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
  477. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  478. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  479. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
  480. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -858
  481. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
  482. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -657
  483. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
  484. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1085
  485. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
  486. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -661
  487. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
  488. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -743
  489. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
  490. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -637
  491. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  492. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -935
  493. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  494. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -677
  495. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
  496. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
  497. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
  498. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +0 -398
  499. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  500. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +0 -480
  501. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
  502. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  503. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -336
  504. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  505. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
  506. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1109
  507. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
  508. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -717
  509. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  510. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -716
  511. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  512. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -649
  513. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  514. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -766
  515. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  516. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -649
  517. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
  518. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
  519. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
  520. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -547
  521. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  522. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  523. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  524. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
  525. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  526. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  527. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -582
  528. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  529. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  530. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  531. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  532. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  533. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  534. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -383
  535. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  536. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  537. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  538. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -510
  539. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  540. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  541. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  542. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  543. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  544. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
  545. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  546. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  547. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  548. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  549. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  550. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  551. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  552. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  553. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
  554. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -100
  555. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  556. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  557. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  558. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
  559. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  560. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  561. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  562. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
  563. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  564. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
  565. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  566. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  567. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  568. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  569. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
  570. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -100
  571. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  572. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -123
  573. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  574. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  575. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  576. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  577. package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
  578. package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +0 -124
  579. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  580. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  581. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -267
  582. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  583. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  584. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  585. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  586. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  587. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  588. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  589. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  590. package/contracts/components/Component.sol +0 -221
  591. package/contracts/components/IDistributionComponent.sol +0 -100
  592. package/contracts/components/IPoolComponent.sol +0 -151
  593. package/contracts/components/IProductComponent.sol +0 -40
  594. package/contracts/components/Pool.sol +0 -378
  595. package/contracts/components/Product.sol +0 -293
  596. package/contracts/instance/InstanceAccessManager.sol +0 -297
  597. package/contracts/instance/base/ComponentService.sol +0 -134
  598. package/contracts/instance/base/KeyValueStore.sol +0 -172
  599. package/contracts/instance/base/Lifecycle.sol +0 -100
  600. package/contracts/instance/module/ITreasury.sol +0 -23
  601. package/contracts/instance/service/ApplicationService.sol +0 -269
  602. package/contracts/instance/service/BundleService.sol +0 -299
  603. package/contracts/instance/service/BundleServiceManager.sol +0 -51
  604. package/contracts/instance/service/ClaimService.sol +0 -151
  605. package/contracts/instance/service/DistributionService.sol +0 -277
  606. package/contracts/instance/service/DistributionServiceManager.sol +0 -51
  607. package/contracts/instance/service/IBundleService.sol +0 -55
  608. package/contracts/instance/service/IClaimService.sol +0 -61
  609. package/contracts/instance/service/IDistributionService.sol +0 -65
  610. package/contracts/instance/service/IPolicyService.sol +0 -90
  611. package/contracts/instance/service/IPoolService.sol +0 -20
  612. package/contracts/instance/service/IProductService.sol +0 -40
  613. package/contracts/instance/service/PolicyService.sol +0 -476
  614. package/contracts/instance/service/PolicyServiceManager.sol +0 -54
  615. package/contracts/instance/service/PoolService.sol +0 -109
  616. package/contracts/instance/service/PoolServiceManager.sol +0 -51
  617. package/contracts/instance/service/ProductService.sol +0 -233
  618. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  619. package/contracts/registry/RegistryAccessManager.sol +0 -216
  620. package/contracts/registry/ReleaseManager.sol +0 -322
  621. package/contracts/shared/ContractDeployerLib.sol +0 -72
  622. package/contracts/test/TestFee.sol +0 -25
  623. package/contracts/test/TestRegisterable.sol +0 -18
  624. package/contracts/test/TestRoleId.sol +0 -14
  625. package/contracts/test/TestService.sol +0 -25
  626. package/contracts/test/TestToken.sol +0 -26
  627. package/contracts/test/TestVersion.sol +0 -44
  628. package/contracts/test/TestVersionable.sol +0 -17
  629. package/contracts/types/ChainId.sol +0 -38
  630. package/contracts/types/NumberId.sol +0 -52
  631. package/contracts/types/ObjectType.sol +0 -156
  632. package/contracts/types/RoleId.sol +0 -95
  633. /package/contracts/{types → type}/DistributorType.sol +0 -0
  634. /package/contracts/{types → type}/Key32.sol +0 -0
@@ -0,0 +1,1335 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "PolicyService",
4
+ "sourceName": "contracts/product/PolicyService.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": "NftId",
48
+ "name": "componentNftId",
49
+ "type": "uint96"
50
+ }
51
+ ],
52
+ "name": "ErrorComponentVerifyingServiceComponentIsLocked",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "NftId",
59
+ "name": "componentNftId",
60
+ "type": "uint96"
61
+ },
62
+ {
63
+ "internalType": "ObjectType",
64
+ "name": "expectedType",
65
+ "type": "uint8"
66
+ },
67
+ {
68
+ "internalType": "ObjectType",
69
+ "name": "actualType",
70
+ "type": "uint8"
71
+ }
72
+ ],
73
+ "name": "ErrorComponentVerifyingServiceComponentTypeInvalid",
74
+ "type": "error"
75
+ },
76
+ {
77
+ "inputs": [
78
+ {
79
+ "internalType": "NftId",
80
+ "name": "nftId",
81
+ "type": "uint96"
82
+ }
83
+ ],
84
+ "name": "ErrorNftOwnableAlreadyLinked",
85
+ "type": "error"
86
+ },
87
+ {
88
+ "inputs": [
89
+ {
90
+ "internalType": "address",
91
+ "name": "contractAddress",
92
+ "type": "address"
93
+ }
94
+ ],
95
+ "name": "ErrorNftOwnableContractNotRegistered",
96
+ "type": "error"
97
+ },
98
+ {
99
+ "inputs": [],
100
+ "name": "ErrorNftOwnableInitialOwnerZero",
101
+ "type": "error"
102
+ },
103
+ {
104
+ "inputs": [
105
+ {
106
+ "internalType": "address",
107
+ "name": "account",
108
+ "type": "address"
109
+ }
110
+ ],
111
+ "name": "ErrorNftOwnableNotOwner",
112
+ "type": "error"
113
+ },
114
+ {
115
+ "inputs": [
116
+ {
117
+ "internalType": "address",
118
+ "name": "registryAddress",
119
+ "type": "address"
120
+ }
121
+ ],
122
+ "name": "ErrorNotRegistry",
123
+ "type": "error"
124
+ },
125
+ {
126
+ "inputs": [
127
+ {
128
+ "internalType": "address",
129
+ "name": "policyOwner",
130
+ "type": "address"
131
+ },
132
+ {
133
+ "internalType": "address",
134
+ "name": "tokenHandler",
135
+ "type": "address"
136
+ },
137
+ {
138
+ "internalType": "uint256",
139
+ "name": "premiumAmount",
140
+ "type": "uint256"
141
+ },
142
+ {
143
+ "internalType": "uint256",
144
+ "name": "allowance",
145
+ "type": "uint256"
146
+ }
147
+ ],
148
+ "name": "ErrorPolicyServiceAllowanceInsufficient",
149
+ "type": "error"
150
+ },
151
+ {
152
+ "inputs": [
153
+ {
154
+ "internalType": "address",
155
+ "name": "policyOwner",
156
+ "type": "address"
157
+ },
158
+ {
159
+ "internalType": "uint256",
160
+ "name": "premiumAmount",
161
+ "type": "uint256"
162
+ },
163
+ {
164
+ "internalType": "uint256",
165
+ "name": "balance",
166
+ "type": "uint256"
167
+ }
168
+ ],
169
+ "name": "ErrorPolicyServiceBalanceInsufficient",
170
+ "type": "error"
171
+ },
172
+ {
173
+ "inputs": [
174
+ {
175
+ "internalType": "address",
176
+ "name": "customer",
177
+ "type": "address"
178
+ },
179
+ {
180
+ "internalType": "address",
181
+ "name": "tokenHandlerAddress",
182
+ "type": "address"
183
+ },
184
+ {
185
+ "internalType": "uint256",
186
+ "name": "amount",
187
+ "type": "uint256"
188
+ }
189
+ ],
190
+ "name": "ErrorPolicyServiceInsufficientAllowance",
191
+ "type": "error"
192
+ },
193
+ {
194
+ "inputs": [
195
+ {
196
+ "internalType": "NftId",
197
+ "name": "policyNftId",
198
+ "type": "uint96"
199
+ },
200
+ {
201
+ "internalType": "uint16",
202
+ "name": "openClaimsCount",
203
+ "type": "uint16"
204
+ }
205
+ ],
206
+ "name": "ErrorPolicyServiceOpenClaims",
207
+ "type": "error"
208
+ },
209
+ {
210
+ "inputs": [
211
+ {
212
+ "internalType": "NftId",
213
+ "name": "policyNftId",
214
+ "type": "uint96"
215
+ }
216
+ ],
217
+ "name": "ErrorPolicyServicePolicyAlreadyActivated",
218
+ "type": "error"
219
+ },
220
+ {
221
+ "inputs": [
222
+ {
223
+ "internalType": "NftId",
224
+ "name": "policyNftId",
225
+ "type": "uint96"
226
+ }
227
+ ],
228
+ "name": "ErrorPolicyServicePolicyAlreadyClosed",
229
+ "type": "error"
230
+ },
231
+ {
232
+ "inputs": [
233
+ {
234
+ "internalType": "NftId",
235
+ "name": "policyNftId",
236
+ "type": "uint96"
237
+ },
238
+ {
239
+ "internalType": "Timestamp",
240
+ "name": "lowerLimit",
241
+ "type": "uint40"
242
+ },
243
+ {
244
+ "internalType": "Timestamp",
245
+ "name": "expiredAt",
246
+ "type": "uint40"
247
+ }
248
+ ],
249
+ "name": "ErrorPolicyServicePolicyExpirationTooEarly",
250
+ "type": "error"
251
+ },
252
+ {
253
+ "inputs": [
254
+ {
255
+ "internalType": "NftId",
256
+ "name": "policyNftId",
257
+ "type": "uint96"
258
+ },
259
+ {
260
+ "internalType": "Timestamp",
261
+ "name": "upperLimit",
262
+ "type": "uint40"
263
+ },
264
+ {
265
+ "internalType": "Timestamp",
266
+ "name": "expiredAt",
267
+ "type": "uint40"
268
+ }
269
+ ],
270
+ "name": "ErrorPolicyServicePolicyExpirationTooLate",
271
+ "type": "error"
272
+ },
273
+ {
274
+ "inputs": [
275
+ {
276
+ "internalType": "NftId",
277
+ "name": "policyNftId",
278
+ "type": "uint96"
279
+ },
280
+ {
281
+ "internalType": "Timestamp",
282
+ "name": "expiredAt",
283
+ "type": "uint40"
284
+ }
285
+ ],
286
+ "name": "ErrorPolicyServicePolicyHasNotExpired",
287
+ "type": "error"
288
+ },
289
+ {
290
+ "inputs": [
291
+ {
292
+ "internalType": "NftId",
293
+ "name": "policyNftId",
294
+ "type": "uint96"
295
+ }
296
+ ],
297
+ "name": "ErrorPolicyServicePolicyNotActivated",
298
+ "type": "error"
299
+ },
300
+ {
301
+ "inputs": [
302
+ {
303
+ "internalType": "NftId",
304
+ "name": "policyNftId",
305
+ "type": "uint96"
306
+ },
307
+ {
308
+ "internalType": "StateId",
309
+ "name": "state",
310
+ "type": "uint8"
311
+ }
312
+ ],
313
+ "name": "ErrorPolicyServicePolicyNotActive",
314
+ "type": "error"
315
+ },
316
+ {
317
+ "inputs": [
318
+ {
319
+ "internalType": "NftId",
320
+ "name": "applicationNftId",
321
+ "type": "uint96"
322
+ },
323
+ {
324
+ "internalType": "NftId",
325
+ "name": "expectedProductNftId",
326
+ "type": "uint96"
327
+ },
328
+ {
329
+ "internalType": "NftId",
330
+ "name": "actualProductNftId",
331
+ "type": "uint96"
332
+ }
333
+ ],
334
+ "name": "ErrorPolicyServicePolicyProductMismatch",
335
+ "type": "error"
336
+ },
337
+ {
338
+ "inputs": [
339
+ {
340
+ "internalType": "NftId",
341
+ "name": "applicationNftId",
342
+ "type": "uint96"
343
+ }
344
+ ],
345
+ "name": "ErrorPolicyServicePolicyStateNotApplied",
346
+ "type": "error"
347
+ },
348
+ {
349
+ "inputs": [
350
+ {
351
+ "internalType": "NftId",
352
+ "name": "applicationNftId",
353
+ "type": "uint96"
354
+ }
355
+ ],
356
+ "name": "ErrorPolicyServicePolicyStateNotCollateralized",
357
+ "type": "error"
358
+ },
359
+ {
360
+ "inputs": [
361
+ {
362
+ "internalType": "NftId",
363
+ "name": "policyNftId",
364
+ "type": "uint96"
365
+ },
366
+ {
367
+ "internalType": "Amount",
368
+ "name": "premiumPaidAmount",
369
+ "type": "uint96"
370
+ }
371
+ ],
372
+ "name": "ErrorPolicyServicePremiumAlreadyPaid",
373
+ "type": "error"
374
+ },
375
+ {
376
+ "inputs": [
377
+ {
378
+ "internalType": "uint256",
379
+ "name": "premiumExpectedAmount",
380
+ "type": "uint256"
381
+ },
382
+ {
383
+ "internalType": "uint256",
384
+ "name": "premiumToBePaidAmount",
385
+ "type": "uint256"
386
+ }
387
+ ],
388
+ "name": "ErrorPolicyServicePremiumHigherThanExpected",
389
+ "type": "error"
390
+ },
391
+ {
392
+ "inputs": [
393
+ {
394
+ "internalType": "NftId",
395
+ "name": "policyNftId",
396
+ "type": "uint96"
397
+ },
398
+ {
399
+ "internalType": "Amount",
400
+ "name": "expectedPremiumAmount",
401
+ "type": "uint96"
402
+ },
403
+ {
404
+ "internalType": "Amount",
405
+ "name": "recalculatedPremiumAmount",
406
+ "type": "uint96"
407
+ }
408
+ ],
409
+ "name": "ErrorPolicyServicePremiumMismatch",
410
+ "type": "error"
411
+ },
412
+ {
413
+ "inputs": [
414
+ {
415
+ "internalType": "NftId",
416
+ "name": "policyNftId",
417
+ "type": "uint96"
418
+ },
419
+ {
420
+ "internalType": "Amount",
421
+ "name": "premiumAmount",
422
+ "type": "uint96"
423
+ },
424
+ {
425
+ "internalType": "Amount",
426
+ "name": "premiumPaidAmount",
427
+ "type": "uint96"
428
+ }
429
+ ],
430
+ "name": "ErrorPolicyServicePremiumNotFullyPaid",
431
+ "type": "error"
432
+ },
433
+ {
434
+ "inputs": [
435
+ {
436
+ "internalType": "NftId",
437
+ "name": "policyNftId",
438
+ "type": "uint96"
439
+ },
440
+ {
441
+ "internalType": "Amount",
442
+ "name": "expectedPremiumAmount",
443
+ "type": "uint96"
444
+ },
445
+ {
446
+ "internalType": "Amount",
447
+ "name": "transferredPremiumAmount",
448
+ "type": "uint96"
449
+ }
450
+ ],
451
+ "name": "ErrorPolicyServiceTransferredPremiumMismatch",
452
+ "type": "error"
453
+ },
454
+ {
455
+ "inputs": [],
456
+ "name": "ErrorServiceNotImplemented",
457
+ "type": "error"
458
+ },
459
+ {
460
+ "inputs": [],
461
+ "name": "InvalidInitialization",
462
+ "type": "error"
463
+ },
464
+ {
465
+ "inputs": [],
466
+ "name": "NotInitializing",
467
+ "type": "error"
468
+ },
469
+ {
470
+ "anonymous": false,
471
+ "inputs": [
472
+ {
473
+ "indexed": false,
474
+ "internalType": "address",
475
+ "name": "authority",
476
+ "type": "address"
477
+ }
478
+ ],
479
+ "name": "AuthorityUpdated",
480
+ "type": "event"
481
+ },
482
+ {
483
+ "anonymous": false,
484
+ "inputs": [
485
+ {
486
+ "indexed": false,
487
+ "internalType": "uint64",
488
+ "name": "version",
489
+ "type": "uint64"
490
+ }
491
+ ],
492
+ "name": "Initialized",
493
+ "type": "event"
494
+ },
495
+ {
496
+ "anonymous": false,
497
+ "inputs": [
498
+ {
499
+ "indexed": false,
500
+ "internalType": "uint256",
501
+ "name": "idx",
502
+ "type": "uint256"
503
+ },
504
+ {
505
+ "indexed": false,
506
+ "internalType": "string",
507
+ "name": "message",
508
+ "type": "string"
509
+ }
510
+ ],
511
+ "name": "LogDebug",
512
+ "type": "event"
513
+ },
514
+ {
515
+ "anonymous": false,
516
+ "inputs": [
517
+ {
518
+ "indexed": false,
519
+ "internalType": "NftId",
520
+ "name": "policyNftId",
521
+ "type": "uint96"
522
+ }
523
+ ],
524
+ "name": "LogPolicyServicePolicyDeclined",
525
+ "type": "event"
526
+ },
527
+ {
528
+ "anonymous": false,
529
+ "inputs": [
530
+ {
531
+ "indexed": false,
532
+ "internalType": "NftId",
533
+ "name": "policyNftId",
534
+ "type": "uint96"
535
+ },
536
+ {
537
+ "indexed": false,
538
+ "internalType": "Timestamp",
539
+ "name": "expiredAt",
540
+ "type": "uint40"
541
+ }
542
+ ],
543
+ "name": "LogPolicyServicePolicyExpirationUpdated",
544
+ "type": "event"
545
+ },
546
+ {
547
+ "anonymous": false,
548
+ "inputs": [
549
+ {
550
+ "indexed": false,
551
+ "internalType": "address",
552
+ "name": "sender",
553
+ "type": "address"
554
+ }
555
+ ],
556
+ "name": "LogProductServiceSender",
557
+ "type": "event"
558
+ },
559
+ {
560
+ "inputs": [],
561
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
562
+ "outputs": [
563
+ {
564
+ "internalType": "bytes32",
565
+ "name": "",
566
+ "type": "bytes32"
567
+ }
568
+ ],
569
+ "stateMutability": "view",
570
+ "type": "function"
571
+ },
572
+ {
573
+ "inputs": [],
574
+ "name": "REGISTERABLE_LOCATION_V1",
575
+ "outputs": [
576
+ {
577
+ "internalType": "bytes32",
578
+ "name": "",
579
+ "type": "bytes32"
580
+ }
581
+ ],
582
+ "stateMutability": "view",
583
+ "type": "function"
584
+ },
585
+ {
586
+ "inputs": [
587
+ {
588
+ "internalType": "NftId",
589
+ "name": "policyNftId",
590
+ "type": "uint96"
591
+ },
592
+ {
593
+ "internalType": "Timestamp",
594
+ "name": "activateAt",
595
+ "type": "uint40"
596
+ }
597
+ ],
598
+ "name": "activate",
599
+ "outputs": [],
600
+ "stateMutability": "nonpayable",
601
+ "type": "function"
602
+ },
603
+ {
604
+ "inputs": [],
605
+ "name": "authority",
606
+ "outputs": [
607
+ {
608
+ "internalType": "address",
609
+ "name": "",
610
+ "type": "address"
611
+ }
612
+ ],
613
+ "stateMutability": "view",
614
+ "type": "function"
615
+ },
616
+ {
617
+ "inputs": [
618
+ {
619
+ "internalType": "NftId",
620
+ "name": "policyNftId",
621
+ "type": "uint96"
622
+ }
623
+ ],
624
+ "name": "close",
625
+ "outputs": [],
626
+ "stateMutability": "nonpayable",
627
+ "type": "function"
628
+ },
629
+ {
630
+ "inputs": [
631
+ {
632
+ "internalType": "NftId",
633
+ "name": "applicationNftId",
634
+ "type": "uint96"
635
+ },
636
+ {
637
+ "internalType": "bool",
638
+ "name": "requirePremiumPayment",
639
+ "type": "bool"
640
+ },
641
+ {
642
+ "internalType": "Timestamp",
643
+ "name": "activateAt",
644
+ "type": "uint40"
645
+ }
646
+ ],
647
+ "name": "collateralize",
648
+ "outputs": [],
649
+ "stateMutability": "nonpayable",
650
+ "type": "function"
651
+ },
652
+ {
653
+ "inputs": [
654
+ {
655
+ "internalType": "NftId",
656
+ "name": "policyNftId",
657
+ "type": "uint96"
658
+ },
659
+ {
660
+ "internalType": "Timestamp",
661
+ "name": "activateAt",
662
+ "type": "uint40"
663
+ }
664
+ ],
665
+ "name": "collectPremium",
666
+ "outputs": [],
667
+ "stateMutability": "nonpayable",
668
+ "type": "function"
669
+ },
670
+ {
671
+ "inputs": [
672
+ {
673
+ "internalType": "NftId",
674
+ "name": "applicationNftId",
675
+ "type": "uint96"
676
+ }
677
+ ],
678
+ "name": "decline",
679
+ "outputs": [],
680
+ "stateMutability": "nonpayable",
681
+ "type": "function"
682
+ },
683
+ {
684
+ "inputs": [
685
+ {
686
+ "internalType": "NftId",
687
+ "name": "policyNftId",
688
+ "type": "uint96"
689
+ },
690
+ {
691
+ "internalType": "Timestamp",
692
+ "name": "expireAt",
693
+ "type": "uint40"
694
+ }
695
+ ],
696
+ "name": "expire",
697
+ "outputs": [
698
+ {
699
+ "internalType": "Timestamp",
700
+ "name": "",
701
+ "type": "uint40"
702
+ }
703
+ ],
704
+ "stateMutability": "nonpayable",
705
+ "type": "function"
706
+ },
707
+ {
708
+ "inputs": [],
709
+ "name": "getDomain",
710
+ "outputs": [
711
+ {
712
+ "internalType": "ObjectType",
713
+ "name": "serviceDomain",
714
+ "type": "uint8"
715
+ }
716
+ ],
717
+ "stateMutability": "pure",
718
+ "type": "function"
719
+ },
720
+ {
721
+ "inputs": [],
722
+ "name": "getInitialInfo",
723
+ "outputs": [
724
+ {
725
+ "components": [
726
+ {
727
+ "internalType": "NftId",
728
+ "name": "nftId",
729
+ "type": "uint96"
730
+ },
731
+ {
732
+ "internalType": "NftId",
733
+ "name": "parentNftId",
734
+ "type": "uint96"
735
+ },
736
+ {
737
+ "internalType": "ObjectType",
738
+ "name": "objectType",
739
+ "type": "uint8"
740
+ },
741
+ {
742
+ "internalType": "bool",
743
+ "name": "isInterceptor",
744
+ "type": "bool"
745
+ },
746
+ {
747
+ "internalType": "address",
748
+ "name": "objectAddress",
749
+ "type": "address"
750
+ },
751
+ {
752
+ "internalType": "address",
753
+ "name": "initialOwner",
754
+ "type": "address"
755
+ },
756
+ {
757
+ "internalType": "bytes",
758
+ "name": "data",
759
+ "type": "bytes"
760
+ }
761
+ ],
762
+ "internalType": "struct IRegistry.ObjectInfo",
763
+ "name": "info",
764
+ "type": "tuple"
765
+ }
766
+ ],
767
+ "stateMutability": "view",
768
+ "type": "function"
769
+ },
770
+ {
771
+ "inputs": [],
772
+ "name": "getNftId",
773
+ "outputs": [
774
+ {
775
+ "internalType": "NftId",
776
+ "name": "",
777
+ "type": "uint96"
778
+ }
779
+ ],
780
+ "stateMutability": "view",
781
+ "type": "function"
782
+ },
783
+ {
784
+ "inputs": [],
785
+ "name": "getOwner",
786
+ "outputs": [
787
+ {
788
+ "internalType": "address",
789
+ "name": "",
790
+ "type": "address"
791
+ }
792
+ ],
793
+ "stateMutability": "view",
794
+ "type": "function"
795
+ },
796
+ {
797
+ "inputs": [],
798
+ "name": "getRegistry",
799
+ "outputs": [
800
+ {
801
+ "internalType": "contract IRegistry",
802
+ "name": "",
803
+ "type": "address"
804
+ }
805
+ ],
806
+ "stateMutability": "view",
807
+ "type": "function"
808
+ },
809
+ {
810
+ "inputs": [],
811
+ "name": "getRoleId",
812
+ "outputs": [
813
+ {
814
+ "internalType": "RoleId",
815
+ "name": "serviceRoleId",
816
+ "type": "uint64"
817
+ }
818
+ ],
819
+ "stateMutability": "pure",
820
+ "type": "function"
821
+ },
822
+ {
823
+ "inputs": [],
824
+ "name": "getVersion",
825
+ "outputs": [
826
+ {
827
+ "internalType": "Version",
828
+ "name": "",
829
+ "type": "uint24"
830
+ }
831
+ ],
832
+ "stateMutability": "pure",
833
+ "type": "function"
834
+ },
835
+ {
836
+ "inputs": [],
837
+ "name": "initializeERC165",
838
+ "outputs": [],
839
+ "stateMutability": "nonpayable",
840
+ "type": "function"
841
+ },
842
+ {
843
+ "inputs": [
844
+ {
845
+ "internalType": "address",
846
+ "name": "initialOwner",
847
+ "type": "address"
848
+ },
849
+ {
850
+ "internalType": "address",
851
+ "name": "registryAddress",
852
+ "type": "address"
853
+ }
854
+ ],
855
+ "name": "initializeNftOwnable",
856
+ "outputs": [],
857
+ "stateMutability": "nonpayable",
858
+ "type": "function"
859
+ },
860
+ {
861
+ "inputs": [
862
+ {
863
+ "internalType": "address",
864
+ "name": "registryAddress",
865
+ "type": "address"
866
+ },
867
+ {
868
+ "internalType": "NftId",
869
+ "name": "parentNftId",
870
+ "type": "uint96"
871
+ },
872
+ {
873
+ "internalType": "ObjectType",
874
+ "name": "objectType",
875
+ "type": "uint8"
876
+ },
877
+ {
878
+ "internalType": "bool",
879
+ "name": "isInterceptor",
880
+ "type": "bool"
881
+ },
882
+ {
883
+ "internalType": "address",
884
+ "name": "initialOwner",
885
+ "type": "address"
886
+ },
887
+ {
888
+ "internalType": "bytes",
889
+ "name": "registryData",
890
+ "type": "bytes"
891
+ }
892
+ ],
893
+ "name": "initializeRegisterable",
894
+ "outputs": [],
895
+ "stateMutability": "nonpayable",
896
+ "type": "function"
897
+ },
898
+ {
899
+ "inputs": [
900
+ {
901
+ "internalType": "address",
902
+ "name": "registryAddress",
903
+ "type": "address"
904
+ }
905
+ ],
906
+ "name": "initializeRegistryLinked",
907
+ "outputs": [],
908
+ "stateMutability": "nonpayable",
909
+ "type": "function"
910
+ },
911
+ {
912
+ "inputs": [
913
+ {
914
+ "internalType": "address",
915
+ "name": "registry",
916
+ "type": "address"
917
+ },
918
+ {
919
+ "internalType": "address",
920
+ "name": "authority",
921
+ "type": "address"
922
+ },
923
+ {
924
+ "internalType": "address",
925
+ "name": "initialOwner",
926
+ "type": "address"
927
+ }
928
+ ],
929
+ "name": "initializeService",
930
+ "outputs": [],
931
+ "stateMutability": "nonpayable",
932
+ "type": "function"
933
+ },
934
+ {
935
+ "inputs": [
936
+ {
937
+ "internalType": "address",
938
+ "name": "activatedBy",
939
+ "type": "address"
940
+ },
941
+ {
942
+ "internalType": "bytes",
943
+ "name": "data",
944
+ "type": "bytes"
945
+ }
946
+ ],
947
+ "name": "initializeVersionable",
948
+ "outputs": [],
949
+ "stateMutability": "nonpayable",
950
+ "type": "function"
951
+ },
952
+ {
953
+ "inputs": [],
954
+ "name": "isConsumingScheduledOp",
955
+ "outputs": [
956
+ {
957
+ "internalType": "bytes4",
958
+ "name": "",
959
+ "type": "bytes4"
960
+ }
961
+ ],
962
+ "stateMutability": "view",
963
+ "type": "function"
964
+ },
965
+ {
966
+ "inputs": [],
967
+ "name": "linkToRegisteredNftId",
968
+ "outputs": [
969
+ {
970
+ "internalType": "NftId",
971
+ "name": "nftId",
972
+ "type": "uint96"
973
+ }
974
+ ],
975
+ "stateMutability": "nonpayable",
976
+ "type": "function"
977
+ },
978
+ {
979
+ "inputs": [
980
+ {
981
+ "internalType": "bytes4",
982
+ "name": "interfaceId",
983
+ "type": "bytes4"
984
+ }
985
+ ],
986
+ "name": "registerInterface",
987
+ "outputs": [],
988
+ "stateMutability": "nonpayable",
989
+ "type": "function"
990
+ },
991
+ {
992
+ "inputs": [
993
+ {
994
+ "internalType": "address",
995
+ "name": "newAuthority",
996
+ "type": "address"
997
+ }
998
+ ],
999
+ "name": "setAuthority",
1000
+ "outputs": [],
1001
+ "stateMutability": "nonpayable",
1002
+ "type": "function"
1003
+ },
1004
+ {
1005
+ "inputs": [
1006
+ {
1007
+ "internalType": "bytes4",
1008
+ "name": "interfaceId",
1009
+ "type": "bytes4"
1010
+ }
1011
+ ],
1012
+ "name": "supportsInterface",
1013
+ "outputs": [
1014
+ {
1015
+ "internalType": "bool",
1016
+ "name": "",
1017
+ "type": "bool"
1018
+ }
1019
+ ],
1020
+ "stateMutability": "view",
1021
+ "type": "function"
1022
+ },
1023
+ {
1024
+ "inputs": [
1025
+ {
1026
+ "internalType": "bytes",
1027
+ "name": "data",
1028
+ "type": "bytes"
1029
+ }
1030
+ ],
1031
+ "name": "upgradeVersionable",
1032
+ "outputs": [],
1033
+ "stateMutability": "nonpayable",
1034
+ "type": "function"
1035
+ }
1036
+ ],
1037
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615807806100d65f395ff3fe608060405234801561000f575f80fd5b50600436106101bb575f3560e01c8063644c45e0116100f35780638fb3603711610093578063b68d18091161006e578063b68d180914610429578063bbfbbfba14610438578063bf7e214f1461044b578063f7c34ee014610468575f80fd5b80638fb36037146103e15780639ffcede914610402578063ada9652e14610415575f80fd5b80637a9e5e4b116100ce5780637a9e5e4b1461038a5780637baa9a0b1461039d578063893d20e8146103c65780638e32e979146103ce575f80fd5b8063644c45e01461033a578063675393bf146103575780636c741e781461036a575f80fd5b8063214cdb801161015e57806336fc697e1161013957806336fc697e146102e757806349bb9e4b146102ef5780634d5e16a9146103025780635ab1bd5314610315575f80fd5b8063214cdb80146102ae57806327bb7a33146102c1578063329d6e74146102d4575f80fd5b80630fec111c116101995780630fec111c14610231578063138461e0146102465780631c817972146102665780631eff4b2214610279575f80fd5b806301ffc9a7146101bf5780630aaba8e8146102005780630d8e6e2c14610215575b5f80fd5b6101eb6101cd3660046145ba565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61021361020e3660046145f5565b61047b565b005b61021d610970565b60405162ffffff90911681526020016101f7565b6102396109f7565b6040516101f7919061463e565b61024e610b83565b6040516001600160601b0390911681526020016101f7565b6102136102743660046146f1565b610b8d565b6102a07f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101f7565b6102136102bc3660046145ba565b6110ee565b6102136102cf3660046148ca565b61111a565b6102136102e236600461495d565b6111bf565b610213611309565b6102136102fd36600461498e565b61134e565b6102136103103660046149da565b61144a565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101f7565b5f80516020615772833981519152546001600160601b031661024e565b610213610365366004614a11565b6116f6565b610372611803565b6040516001600160401b0390911681526020016101f7565b610213610398366004614a11565b6118f9565b6103b06103ab3660046149da565b611991565b60405164ffffffffff90911681526020016101f7565b610322611f08565b6102136103dc366004614a2c565b612039565b6103e9612176565b6040516001600160e01b031990911681526020016101f7565b6102136104103660046145f5565b6121ab565b6102a05f8051602061577283398151915281565b604051601581526020016101f7565b6102136104463660046149da565b612451565b5f80516020615792833981519152546001600160a01b0316610322565b610213610476366004614a69565b612918565b5f610486600c61298e565b925050505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156104c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104eb9190614a95565b60405163bd7d9d8560e01b81526001600160601b03851660048201529091505f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa15801561053a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526105619190810190614b42565b604051639096a1f360e01b81526001600160601b03861660048201529091505f906001600160a01b03841690639096a1f390602401602060405180830381865afa1580156105b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105d59190614cf3565b90506105e18183612a2a565b6106175760405163536eb56160e11b81526001600160601b038616600482015260ff821660248201526044015b60405180910390fd5b610200820151604051638d38cd4b60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af4158015610672573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106969190614d19565b156106bf5760405163bdcc947d60e01b81526001600160601b038616600482015260240161060e565b61016082015161ffff161561070357610160820151604051637459ec8b60e11b81526001600160601b038716600482015261ffff909116602482015260440161060e565b6107158260a001518360c00151612ada565b6107575760a082015160c08301516040516348d5f6c560e01b81526001600160601b03808916600483015292831660248201529116604482015260640161060e565b600754825160405163f0ea17c360e01b81526001600160601b0390911660048201526001600160a01b039182169163a5f4c73191879187169063f0ea17c3906024015f60405180830381865afa1580156107b3573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526107da9190810190614d3f565b6040015188866040518563ffffffff1660e01b81526004016107ff9493929190614fdf565b5f604051808303815f87803b158015610816575f80fd5b505af1158015610828573d5f803e3d5ffd5b5050505073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610873573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108979190615023565b64ffffffffff1661020083015260408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa1580156108e7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061090b9190614a95565b6001600160a01b031663985aeba7868460c85b6040518463ffffffff1660e01b815260040161093c9392919061503e565b5f604051808303815f87803b158015610953575f80fd5b505af1158015610965573d5f803e3d5ffd5b505050505050505050565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156109ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109f29190615072565b905090565b6109ff6144e9565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610a75573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a999190615094565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610ae1611f08565b6001600160a01b03168152602001826001018054610afe906150af565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2a906150af565b8015610b755780601f10610b4c57610100808354040283529160200191610b75565b820191905f5260205f20905b815481529060010190602001808311610b5857829003601f168201915b505050505081525091505090565b5f6109f230612b66565b5f80610b99600c61298e565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bdb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bff9190614a95565b604051639096a1f360e01b81526001600160601b0388166004820152909150610c85906001600160a01b03831690639096a1f3906024015b602060405180830381865afa158015610c52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c769190614cf3565b600a5b60ff9081169116141590565b15610cae57604051631130ddad60e21b81526001600160601b038716600482015260240161060e565b60405163bd7d9d8560e01b81526001600160601b03871660048201525f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa158015610cfa573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610d219190810190614b42565b9050610d30815f015185612d5f565b15610d6c578051604051631a06208360e01b81526001600160601b03808a1660048301529182166024820152908516604482015260640161060e565b5f602860075460405163f0ea17c360e01b81526001600160601b03881660048201529192505f9182916001600160a01b03908116916384d1f7cf9189919089169063f0ea17c3906024015f60405180830381865afa158015610dd0573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610df79190810190614d3f565b604001518a8e89602001518a608001516040518763ffffffff1660e01b8152600401610e67969594939291906001600160a01b0396871681529490951660208501526001600160601b0392831660408501529082166060840152811660808301529190911660a082015260c00190565b60408051808303815f875af1158015610e82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ea691906150e7565b91509150610ec488610eb55f90565b64ffffffffff90811691161190565b15610f685764ffffffffff8881166101c0860181905260e08601516040516352bcc5a760e11b81526004810192909252909116602482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063a5798b4e90604401602060405180830381865af4158015610f36573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f5a9190615023565b64ffffffffff166101e08501525b610f70614526565b891561101057610f81878c87612da9565b60a0810151604051632620eecb60e11b815291925073__$3bac17678db7ae928afa209f2f44deec9c$__91634c41dd9691610fc29160040190815260200190565b602060405180830381865af4158015610fdd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110019190615094565b6001600160601b031660c08601525b866001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561104c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110709190614a95565b6001600160a01b031663985aeba78c87876040518463ffffffff1660e01b815260040161109f9392919061503e565b5f604051808303815f87803b1580156110b6575f80fd5b505af11580156110c8573d5f803e3d5ffd5b5050505089156110e1576110e1868c875f015184613256565b5050505050505050505050565b6110f6613497565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b611122613497565b61112c8287612918565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3016111b5838261515f565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c6111e1610970565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801561121f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611243919061522d565b5f805160206157b28339815191528054600160401b900460ff1680611275575080546001600160401b03808416911610155b156112935760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556112bd836134cf565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b611311613497565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b5f805160206157b28339815191528054600160401b810460ff1615906001600160401b03165f8115801561137f5750825b90505f826001600160401b0316600114801561139a5750303b155b9050811580156113a8575080155b156113c65760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156113f057845460ff60401b1916600160401b1785555b6113fa87876134d7565b831561144157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b5f611455600c61298e565b925050505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611496573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114ba9190614a95565b60405163bd7d9d8560e01b81526001600160601b03861660048201529091505f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa158015611509573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526115309190810190614b42565b6101c081015160405163790a38ad60e01b815264ffffffffff909116600482015290915073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af415801561158e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115b29190614d19565b6115da5760405163f95747d360e01b81526001600160601b038616600482015260240161060e565b64ffffffffff8481166101c0830181905260e08301516040516352bcc5a760e11b81526004810192909252909116602482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063a5798b4e90604401602060405180830381865af4158015611647573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061166b9190615023565b64ffffffffff166101e082015260408051631a99b41b60e31b815290516001600160a01b0385169163d4cda0d89160048083019260209291908290030181865afa1580156116bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116df9190614a95565b6001600160a01b031663985aeba7868360ff61091e565b6116fe613497565b806001600160a01b03163b5f036117335760405163fdeac91f60e01b81526001600160a01b038216600482015260240161060e565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526318788cbb60e11b60048201526301ffc9a790602401602060405180830381865afa9250505080156117ad575060408051601f3d908101601f191682019092526117aa91810190614d19565b60015b6117d55760405163fdeac91f60e01b81526001600160a01b038216600482015260240161060e565b806117fe5760405163fdeac91f60e01b81526001600160a01b038316600482015260240161060e565b505b50565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d36015604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af415801561186e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118929190614cf3565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af41580156118d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109f2919061522d565b336119185f80516020615792833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b0316146119535760405162d1953b60e31b81526001600160a01b038216600482015260240161060e565b816001600160a01b03163b5f03611988576040516361798f2f60e11b81526001600160a01b038316600482015260240161060e565b6117fe82613ab0565b5f808061199e600c61298e565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119e0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a049190614a95565b60405163bd7d9d8560e01b81526001600160601b03881660048201529091505f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa158015611a53573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611a7a9190810190614b42565b9050611a89815f015185612d5f565b15611ac5578051604051631a06208360e01b81526001600160601b03808a1660048301529182166024820152908516604482015260640161060e565b604051639096a1f360e01b81526001600160601b03881660048201525f906001600160a01b03841690639096a1f390602401602060405180830381865afa158015611b12573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b369190614cf3565b9050611b428183612a2a565b611b735760405163536eb56160e11b81526001600160601b038916600482015260ff8216602482015260440161060e565b60405163790a38ad60e01b815264ffffffffff8816600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af4158015611bc7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611beb9190614d19565b15611c5e5773__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611c37573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c5b9190615023565b96505b6101e082015164ffffffffff90811690881610611cb5576101e08201516040516372f7b9bd60e11b81526001600160601b038a16600482015264ffffffffff9182166024820152908816604482015260640161060e565b611d338773__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611d00573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d249190615023565b64ffffffffff90811691161090565b15611dde578773__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611d80573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611da49190615023565b604051631c66624d60e01b81526001600160601b03909216600483015264ffffffffff90811660248301528816604482015260640161060e565b64ffffffffff87166101e083015260408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa158015611e2f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e539190614a95565b6001600160a01b031663985aeba7898460ff6040518463ffffffff1660e01b8152600401611e839392919061503e565b5f604051808303815f87803b158015611e9a575f80fd5b505af1158015611eac573d5f803e3d5ffd5b5050604080516001600160601b038c16815264ffffffffff8b1660208201527f78c7b2401beaecd3c89e9a37210cba72e9f33e125194b23cb6c42a6d07c4fe14935001905060405180910390a186955050505050505b92915050565b5f805f8051602061577283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611f74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f989190614d19565b15612023576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611ff9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061201d9190614a95565b91505090565b54600160601b90046001600160a01b0316919050565b612041613497565b6120bd83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612081573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120a59190615094565b60085f8560405180602001604052805f81525061111a565b6001600160a01b038216156120da576120d582613b10565b612151565b5f6120e56002613b21565b905061214f816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612126573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061214a9190614a95565b613b10565b505b612161634a531f3360e01b6110ee565b61217163daf9067160e01b6110ee565b505050565b5f8051602061579283398151915280545f9190600160a01b900460ff1661219d575f61201d565b638fb3603760e01b91505090565b5f806121b7600c61298e565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061221d9190614a95565b604051639096a1f360e01b81526001600160601b0386166004820152909150612259906001600160a01b03831690639096a1f390602401610c37565b1561228257604051631130ddad60e21b81526001600160601b038516600482015260240161060e565b60405163bd7d9d8560e01b81526001600160601b03851660048201525f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa1580156122ce573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526122f59190810190614b42565b9050612304815f015185612d5f565b15612340578051604051631a06208360e01b81526001600160601b0380881660048301529182166024820152908516604482015260640161060e565b826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561237c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123a09190614a95565b6001600160a01b0316635d4345cc86601e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b1580156123f7575f80fd5b505af1158015612409573d5f803e3d5ffd5b50506040516001600160601b03881681527fa9d1c49a019bf7dc62cfada9540cd302c4fc54f6ed05d99b581074ed70441fae9250602001905060405180910390a15050505050565b5f61245c600c61298e565b925050505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561249d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124c19190614a95565b604051639096a1f360e01b81526001600160601b03861660048201529091505f906001600160a01b03831690639096a1f390602401602060405180830381865afa158015612511573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125359190614cf3565b90506125498160285b60ff90811691161490565b6125715760405163904913a960e01b81526001600160601b038616600482015260240161060e565b60405163bd7d9d8560e01b81526001600160601b03861660048201525f906001600160a01b0384169063bd7d9d85906024015f60405180830381865afa1580156125bd573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526125e49190810190614b42565b60c08101516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612643573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126679190614d19565b1561269e5760c0810151604051636cc0f84b60e01b81526001600160601b038089166004830152909116602482015260440161060e565b5f6126aa858884612da9565b60a0810151604051632620eecb60e11b815291925073__$3bac17678db7ae928afa209f2f44deec9c$__91634c41dd96916126eb9160040190815260200190565b602060405180830381865af4158015612706573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061272a9190615094565b6001600160601b031660c083015260408051631a99b41b60e31b815290516001600160a01b0387169163d4cda0d89160048083019260209291908290030181865afa15801561277b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061279f9190614a95565b6001600160a01b031663985aeba7888460ff6040518463ffffffff1660e01b81526004016127cf9392919061503e565b5f604051808303815f87803b1580156127e6575f80fd5b505af11580156127f8573d5f803e3d5ffd5b5050604051638d38cd4b60e01b815264ffffffffff8916600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9250638d38cd4b9150602401602060405180830381865af4158015612850573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128749190614d19565b80156128fa57506101c082015160405163790a38ad60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af41580156128d6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128fa9190614d19565b1561290957612909878761144a565b6114418488845f015184613256565b612920613497565b612929816116f6565b612931611309565b6001600160a01b0382166129585760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061577283398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b5f6129976144e9565b5f6129aa6001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa1580156129ee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a129190615094565b9250612a2083856001613c22565b9395909450915050565b5f612a36836028610c79565b15612a4257505f611f02565b612ac573__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612a8c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ab09190615023565b836101c0015164ffffffffff90811691161090565b15612ad157505f611f02565b50600192915050565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c4cade9d906044015b602060405180830381865af4158015612b3b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b5f9190614d19565b9392505050565b5f805f8051602061577283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612bd2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bf69190614d19565b15612c225780546040516301ab8b6760e21b81526001600160601b03909116600482015260240161060e565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612c74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c989190614d19565b612cc05760405163b9304b0d60e01b81526001600160a01b038416600482015260240161060e565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015612d12573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d369190615094565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401612b20565b612db1614526565b5f825f015190505f856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612df5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e199190614a95565b6008546060860151608087015160e088015161010089015160208a01516040808c01519051637a5ff29d60e11b81529798506001600160a01b039096169663f4bfe53a96612e76968b969095909490939092909190600401615248565b61024060405180830381865afa158015612e92573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612eb691906152c5565b60a0808201519086015160405163046e44af60e11b81526001600160601b0390911660048201529194509073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015612f1b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f3f91906153b6565b1015612fec5760a084015160405163046e44af60e11b81526001600160601b03909116600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015612fa1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fc591906153b6565b60a0840151604051632b11e0c160e11b81526004810192909252602482015260440161060e565b60405163f0ea17c360e01b81526001600160601b03831660048201525f906001600160a01b0383169063f0ea17c3906024015f60405180830381865afa158015613038573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261305f9190810190614d3f565b6060015190505f6130786001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03891660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156130c5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130e99190614a95565b90506131d6826001600160a01b03166321df0da76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561312a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061314e9190614a95565b83838960a0015173__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968b60a001516040518263ffffffff1660e01b815260040161319291815260200190565b602060405180830381865af41580156131ad573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131d19190615094565b613eb9565b505061324d81876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015613218573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061323c9190614a95565b848760200151886040015188614095565b50509392505050565b60405163f0ea17c360e01b81526001600160601b03831660048201525f906001600160a01b0386169063f0ea17c3906024015f60405180830381865afa1580156132a2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526132c99190810190614d3f565b6060015190505f6132e26001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561332f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133539190614a95565b90505f805f806133638a8961424f565b8a5160405163c661667d60e01b815294985092965090945092506001600160a01b0388169163c661667d9161339e91899186916004016153cd565b5f604051808303815f87803b1580156133b5575f80fd5b505af11580156133c7573d5f803e3d5ffd5b505050602088015160405163c661667d60e01b81526001600160a01b038916925063c661667d916133fe91899188916004016153cd565b5f604051808303815f87803b158015613415575f80fd5b505af1158015613427573d5f803e3d5ffd5b505050604080890151905163c661667d60e01b81526001600160a01b038916925063c661667d9161345e91899187916004016153cd565b5f604051808303815f87803b158015613475575f80fd5b505af1158015613487573d5f803e3d5ffd5b5050505050505050505050505050565b5f805160206157b283398151915254600160401b900460ff166134cd57604051631afcd79f60e31b815260040160405180910390fd5b565b6101bb613497565b5f805160206157b28339815191528054600160401b810460ff1615906001600160401b03165f811580156135085750825b90505f826001600160401b031660011480156135235750303b155b905081158015613531575080155b1561354f5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561357957845460ff60401b1916600160401b1785555b5f808780602001905181019061358f91906153f9565b925050915061359f82828b612039565b5f6135a8610970565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af41580156135fb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061361f9190614cf3565b90506136336001546001600160a01b031690565b6001600160a01b031663d39e604360146040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa158015613687573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136ab9190614a95565b600280546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043601e6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa15801561371f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137439190614a95565b600480546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043600b6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa1580156137b7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137db9190614a95565b600380546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e604360166040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa15801561384f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138739190614a95565b600580546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043600f6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa1580156138e7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061390b9190614a95565b600780546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043600e6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa15801561397f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139a39190614a95565b600680546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e604360196040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa158015613a17573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a3b9190614a95565b600880546001600160a01b0319166001600160a01b0392909216919091179055613a6b6304d90f6b60e01b6110ee565b505050831561144157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611438565b5f8051602061579283398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b613b18613497565b61180081614448565b5f613b346001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015613b97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bbb9190614cf3565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613bfe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f029190614a95565b613c2a6144e9565b5f80613c3e6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa158015613c8b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613cb29190810190615438565b9250613cbf85600b610c79565b15613d1557604083015160ff868116911614613d1057604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff8088166024830152909116604482015260640161060e565b613da6565b613d25836040015161253e600c90565b80613d3b5750613d3b836040015161253e600f90565b80613d515750613d51836040015161253e600e90565b80613d675750613d67836040015161253e600d90565b613da657604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff8088166024830152909116604482015260640161060e565b613db38360200151614459565b91508315613eb057816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613df7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e1b9190614a95565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa158015613e63573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e879190614d19565b15613eb057604051637d71120960e11b81526001600160601b038716600482015260240161060e565b50935093915050565b60405163046e44af60e11b81526001600160601b03821660048201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015613f11573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f3591906153b6565b6040516370a0823160e01b81526001600160a01b0386811660048301529192505f918816906370a0823190602401602060405180830381865afa158015613f7e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613fa291906153b6565b604051636eb1769f60e11b81526001600160a01b03878116600483015288811660248301529192505f9189169063dd62ed3e90604401602060405180830381865afa158015613ff3573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061401791906153b6565b9050828210156140535760405163503edf3960e11b81526001600160a01b0387166004820152602481018490526044810183905260640161060e565b828110156111b557604051630afa3e2d60e11b81526001600160a01b03808816600483015288166024820152604481018490526064810182905260840161060e565b5f805f806140a38a8961424f565b60035460c08a01516101408b015195995093975091955093506001600160a01b0316916367438c50918c918c9173__$3bac17678db7ae928afa209f2f44deec9c$__91634c41dd96916140f591615508565b6040518263ffffffff1660e01b815260040161411391815260200190565b602060405180830381865af415801561412e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141529190615094565b6040516001600160e01b031960e086901b1681526001600160a01b0390931660048401526001600160601b0391821660248401521660448201526064015f604051808303815f87803b1580156141a6575f80fd5b505af11580156141b8573d5f803e3d5ffd5b505060065460405163ab54c54560e01b81526001600160a01b03909116925063ab54c54591506141f09087908a908a90600401615618565b5f604051808303815f87803b158015614207575f80fd5b505af1158015614219573d5f803e3d5ffd5b5050600754604051637d42d39760e01b81526001600160a01b039091169250637d42d397915061345e908a908990600401615646565b6040516302d764c760e21b81526001600160601b03821660048201525f9081908190819081906001600160a01b03881690630b5d931c9060240161020060405180830381865afa1580156142a5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142c991906156b0565b805160405163f0ea17c360e01b81526001600160601b03821660048201529096509091506001600160a01b0388169063f0ea17c3906024015f60405180830381865afa15801561431b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526143429190810190614d3f565b60800151602082015160405163f0ea17c360e01b81526001600160601b0390911660048201529094506001600160a01b0388169063f0ea17c3906024015f60405180830381865afa158015614399573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526143c09190810190614d3f565b6080015160405163f0ea17c360e01b81526001600160601b03881660048201529093506001600160a01b0388169063f0ea17c3906024015f60405180830381865afa158015614411573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526144389190810190614d3f565b6080015191505092959194509250565b614450613497565b61180081613ab0565b5f61446c6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa1580156144b8573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526144df9190810190615438565b6080015192915050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6040518061024001604052805f6001600160601b031681526020015f6001600160601b031681526020015f6001600160601b031681526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b5f602082840312156145ca575f80fd5b81356001600160e01b031981168114612b5f575f80fd5b6001600160601b0381168114611800575f80fd5b5f60208284031215614605575f80fd5b8135612b5f816145e1565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614686608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e0808401526146ca610100840182614610565b949350505050565b8015158114611800575f80fd5b64ffffffffff81168114611800575f80fd5b5f805f60608486031215614703575f80fd5b833561470e816145e1565b9250602084013561471e816146d2565b9150604084013561472e816146df565b809150509250925092565b6001600160a01b0381168114611800575f80fd5b60ff81168114611800575f80fd5b634e487b7160e01b5f52604160045260245ffd5b60405161022081016001600160401b03811182821017156147925761479261475b565b60405290565b60405160c081016001600160401b03811182821017156147925761479261475b565b60405161024081016001600160401b03811182821017156147925761479261475b565b60405160e081016001600160401b03811182821017156147925761479261475b565b60405161012081016001600160401b03811182821017156147925761479261475b565b604051601f8201601f191681016001600160401b038111828210171561484a5761484a61475b565b604052919050565b5f6001600160401b0382111561486a5761486a61475b565b50601f01601f191660200190565b5f82601f830112614887575f80fd5b813561489a61489582614852565b614822565b8181528460208386010111156148ae575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f805f8060c087890312156148df575f80fd5b86356148ea81614739565b955060208701356148fa816145e1565b9450604087013561490a8161474d565b9350606087013561491a816146d2565b9250608087013561492a81614739565b915060a08701356001600160401b03811115614944575f80fd5b61495089828a01614878565b9150509295509295509295565b5f6020828403121561496d575f80fd5b81356001600160401b03811115614982575f80fd5b6146ca84828501614878565b5f806040838503121561499f575f80fd5b82356149aa81614739565b915060208301356001600160401b038111156149c4575f80fd5b6149d085828601614878565b9150509250929050565b5f80604083850312156149eb575f80fd5b82356149f6816145e1565b91506020830135614a06816146df565b809150509250929050565b5f60208284031215614a21575f80fd5b8135612b5f81614739565b5f805f60608486031215614a3e575f80fd5b8335614a4981614739565b92506020840135614a5981614739565b9150604084013561472e81614739565b5f8060408385031215614a7a575f80fd5b8235614a8581614739565b91506020830135614a0681614739565b5f60208284031215614aa5575f80fd5b8151612b5f81614739565b8051614abb816145e1565b919050565b80516001600160c01b031981168114614abb575f80fd5b8051614abb816146df565b5f82601f830112614af1575f80fd5b8151602083015f614b0461489584614852565b9050828152858383011115614b17575f80fd5b8282602083015e5f92810160200192909252509392505050565b805161ffff81168114614abb575f80fd5b5f60208284031215614b52575f80fd5b81516001600160401b03811115614b67575f80fd5b82016102208185031215614b79575f80fd5b614b8161476f565b614b8a82614ab0565b8152614b9860208301614ab0565b6020820152614ba960408301614ac0565b6040820152614bba60608301614ac0565b6060820152614bcb60808301614ab0565b6080820152614bdc60a08301614ab0565b60a0820152614bed60c08301614ab0565b60c0820152614bfe60e08301614ad7565b60e08201526101008201516001600160401b03811115614c1c575f80fd5b614c2886828501614ae2565b610100830152506101208201516001600160401b03811115614c48575f80fd5b614c5486828501614ae2565b61012083015250614c686101408301614b31565b610140820152614c7b6101608301614b31565b610160820152614c8e6101808301614ab0565b610180820152614ca16101a08301614ab0565b6101a0820152614cb46101c08301614ad7565b6101c0820152614cc76101e08301614ad7565b6101e0820152614cda6102008301614ad7565b610200820152949350505050565b8051614abb8161474d565b5f60208284031215614d03575f80fd5b8151612b5f8161474d565b8051614abb816146d2565b5f60208284031215614d29575f80fd5b8151612b5f816146d2565b8051614abb81614739565b5f60208284031215614d4f575f80fd5b81516001600160401b03811115614d64575f80fd5b820160c08185031215614d75575f80fd5b614d7d614798565b81516001600160401b03811115614d92575f80fd5b614d9e86828501614ae2565b825250614dad60208301614ab0565b6020820152614dbe60408301614d34565b6040820152614dcf60608301614d34565b6060820152614de060808301614d34565b608082015260a08201516001600160401b03811115614dfd575f80fd5b614e0986828501614ae2565b60a083015250949350505050565b80516001600160601b031682525f6020820151614e3f60208501826001600160601b03169052565b506040820151614e5b60408501826001600160c01b0319169052565b506060820151614e7760608501826001600160c01b0319169052565b506080820151614e9260808501826001600160601b03169052565b5060a0820151614ead60a08501826001600160601b03169052565b5060c0820151614ec860c08501826001600160601b03169052565b5060e0820151614ee160e085018264ffffffffff169052565b50610100820151610220610100850152614eff610220850182614610565b9050610120830151848203610120860152614f1a8282614610565b915050610140830151614f3461014086018261ffff169052565b50610160830151614f4c61016086018261ffff169052565b50610180830151614f696101808601826001600160601b03169052565b506101a0830151614f866101a08601826001600160601b03169052565b506101c0830151614fa16101c086018264ffffffffff169052565b506101e0830151614fbc6101e086018264ffffffffff169052565b50610200830151614fd761020086018264ffffffffff169052565b509392505050565b6001600160a01b038581168252841660208201526001600160601b03831660408201526080606082018190525f9061501990830184614e17565b9695505050505050565b5f60208284031215615033575f80fd5b8151612b5f816146df565b6001600160601b0384168152606060208201525f61505f6060830185614e17565b905060ff83166040830152949350505050565b5f60208284031215615082575f80fd5b815162ffffff81168114612b5f575f80fd5b5f602082840312156150a4575f80fd5b8151612b5f816145e1565b600181811c908216806150c357607f821691505b6020821081036150e157634e487b7160e01b5f52602260045260245ffd5b50919050565b5f80604083850312156150f8575f80fd5b8251615103816145e1565b6020840151909250614a06816145e1565b601f82111561217157805f5260205f20601f840160051c810160208510156151395750805b601f840160051c820191505b81811015615158575f8155600101615145565b5050505050565b81516001600160401b038111156151785761517861475b565b61518c8161518684546150af565b84615114565b6020601f8211600181146151be575f83156151a75750848201515b5f19600385901b1c1916600184901b178455615158565b5f84815260208120601f198516915b828110156151ed57878501518255602094850194600190920191016151cd565b508482101561520a57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6001600160401b0381168114611800575f80fd5b5f6020828403121561523d575f80fd5b8151612b5f81615219565b6001600160601b03881681526001600160401b0360c01b871660208201526001600160601b038616604082015264ffffffffff8516606082015260e060808201525f61529760e0830186614610565b6001600160601b039490941660a0830152506001600160c01b03199190911660c09091015295945050505050565b5f6102408284031280156152d7575f80fd5b506152e06147ba565b6152e983614ab0565b81526152f760208401614ab0565b602082015261530860408401614ab0565b6040820152606083810151908201526080808401519082015260a0808401519082015260c0808401519082015260e08084015190820152610100808401519082015261012080840151908201526101408084015190820152610160808401519082015261018080840151908201526101a080840151908201526101c080840151908201526101e080840151908201526102008084015190820152610220928301519281019290925250919050565b5f602082840312156153c6575f80fd5b5051919050565b6001600160a01b0393841681529190921660208201526001600160601b03909116604082015260600190565b5f805f6060848603121561540b575f80fd5b835161541681614739565b602085015190935061542781614739565b604085015190925061472e81614739565b5f60208284031215615448575f80fd5b81516001600160401b0381111561545d575f80fd5b820160e0818503121561546e575f80fd5b6154766147dd565b61547f82614ab0565b815261548d60208301614ab0565b602082015261549e60408301614ce8565b60408201526154af60608301614d0e565b60608201526154c060808301614d34565b60808201526154d160a08301614d34565b60a082015260c08201516001600160401b038111156154ee575f80fd5b6154fa86828501614ae2565b60c083015250949350505050565b80820180821115611f0257634e487b7160e01b5f52601160045260245ffd5b80516001600160601b03168252602081015161554e60208401826001600160601b03169052565b50604081015161556960408401826001600160601b03169052565b50606081015160608301526080810151608083015260a081015160a083015260c081015160c083015260e081015160e08301526101008101516101008301526101208101516101208301526101408101516101408301526101608101516101608301526101808101516101808301526101a08101516101a08301526101c08101516101c08301526101e08101516101e08301526102008101516102008301526102208101516102208301525050565b6001600160601b03841681526001600160c01b03198316602082015261028081016146ca6040830184615527565b6001600160601b03831681526102608101612b5f6020830184615527565b5f60408284031215615674575f80fd5b604080519081016001600160401b03811182821017156156965761569661475b565b604052825181526020928301519281019290925250919050565b5f6102008284031280156156c2575f80fd5b506156cb6147ff565b6156d483614ab0565b81526156e260208401614ab0565b60208201526156f48460408501615664565b60408201526157068460808501615664565b60608201526157188460c08501615664565b608082015261572b846101008501615664565b60a082015261573e846101408501615664565b60c0820152615751846101808501615664565b60e0820152615764846101c08501615664565b610100820152939250505056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212207754ab550f486f936a4b0ab3c04c77ad53f609dad44df8c0183e87d797ebceea64736f6c634300081a0033",
1038
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106101bb575f3560e01c8063644c45e0116100f35780638fb3603711610093578063b68d18091161006e578063b68d180914610429578063bbfbbfba14610438578063bf7e214f1461044b578063f7c34ee014610468575f80fd5b80638fb36037146103e15780639ffcede914610402578063ada9652e14610415575f80fd5b80637a9e5e4b116100ce5780637a9e5e4b1461038a5780637baa9a0b1461039d578063893d20e8146103c65780638e32e979146103ce575f80fd5b8063644c45e01461033a578063675393bf146103575780636c741e781461036a575f80fd5b8063214cdb801161015e57806336fc697e1161013957806336fc697e146102e757806349bb9e4b146102ef5780634d5e16a9146103025780635ab1bd5314610315575f80fd5b8063214cdb80146102ae57806327bb7a33146102c1578063329d6e74146102d4575f80fd5b80630fec111c116101995780630fec111c14610231578063138461e0146102465780631c817972146102665780631eff4b2214610279575f80fd5b806301ffc9a7146101bf5780630aaba8e8146102005780630d8e6e2c14610215575b5f80fd5b6101eb6101cd3660046145ba565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61021361020e3660046145f5565b61047b565b005b61021d610970565b60405162ffffff90911681526020016101f7565b6102396109f7565b6040516101f7919061463e565b61024e610b83565b6040516001600160601b0390911681526020016101f7565b6102136102743660046146f1565b610b8d565b6102a07f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101f7565b6102136102bc3660046145ba565b6110ee565b6102136102cf3660046148ca565b61111a565b6102136102e236600461495d565b6111bf565b610213611309565b6102136102fd36600461498e565b61134e565b6102136103103660046149da565b61144a565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101f7565b5f80516020615772833981519152546001600160601b031661024e565b610213610365366004614a11565b6116f6565b610372611803565b6040516001600160401b0390911681526020016101f7565b610213610398366004614a11565b6118f9565b6103b06103ab3660046149da565b611991565b60405164ffffffffff90911681526020016101f7565b610322611f08565b6102136103dc366004614a2c565b612039565b6103e9612176565b6040516001600160e01b031990911681526020016101f7565b6102136104103660046145f5565b6121ab565b6102a05f8051602061577283398151915281565b604051601581526020016101f7565b6102136104463660046149da565b612451565b5f80516020615792833981519152546001600160a01b0316610322565b610213610476366004614a69565b612918565b5f610486600c61298e565b925050505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156104c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104eb9190614a95565b60405163bd7d9d8560e01b81526001600160601b03851660048201529091505f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa15801561053a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526105619190810190614b42565b604051639096a1f360e01b81526001600160601b03861660048201529091505f906001600160a01b03841690639096a1f390602401602060405180830381865afa1580156105b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105d59190614cf3565b90506105e18183612a2a565b6106175760405163536eb56160e11b81526001600160601b038616600482015260ff821660248201526044015b60405180910390fd5b610200820151604051638d38cd4b60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af4158015610672573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106969190614d19565b156106bf5760405163bdcc947d60e01b81526001600160601b038616600482015260240161060e565b61016082015161ffff161561070357610160820151604051637459ec8b60e11b81526001600160601b038716600482015261ffff909116602482015260440161060e565b6107158260a001518360c00151612ada565b6107575760a082015160c08301516040516348d5f6c560e01b81526001600160601b03808916600483015292831660248201529116604482015260640161060e565b600754825160405163f0ea17c360e01b81526001600160601b0390911660048201526001600160a01b039182169163a5f4c73191879187169063f0ea17c3906024015f60405180830381865afa1580156107b3573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526107da9190810190614d3f565b6040015188866040518563ffffffff1660e01b81526004016107ff9493929190614fdf565b5f604051808303815f87803b158015610816575f80fd5b505af1158015610828573d5f803e3d5ffd5b5050505073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610873573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108979190615023565b64ffffffffff1661020083015260408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa1580156108e7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061090b9190614a95565b6001600160a01b031663985aeba7868460c85b6040518463ffffffff1660e01b815260040161093c9392919061503e565b5f604051808303815f87803b158015610953575f80fd5b505af1158015610965573d5f803e3d5ffd5b505050505050505050565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156109ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109f29190615072565b905090565b6109ff6144e9565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610a75573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a999190615094565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610ae1611f08565b6001600160a01b03168152602001826001018054610afe906150af565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2a906150af565b8015610b755780601f10610b4c57610100808354040283529160200191610b75565b820191905f5260205f20905b815481529060010190602001808311610b5857829003601f168201915b505050505081525091505090565b5f6109f230612b66565b5f80610b99600c61298e565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bdb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bff9190614a95565b604051639096a1f360e01b81526001600160601b0388166004820152909150610c85906001600160a01b03831690639096a1f3906024015b602060405180830381865afa158015610c52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c769190614cf3565b600a5b60ff9081169116141590565b15610cae57604051631130ddad60e21b81526001600160601b038716600482015260240161060e565b60405163bd7d9d8560e01b81526001600160601b03871660048201525f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa158015610cfa573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610d219190810190614b42565b9050610d30815f015185612d5f565b15610d6c578051604051631a06208360e01b81526001600160601b03808a1660048301529182166024820152908516604482015260640161060e565b5f602860075460405163f0ea17c360e01b81526001600160601b03881660048201529192505f9182916001600160a01b03908116916384d1f7cf9189919089169063f0ea17c3906024015f60405180830381865afa158015610dd0573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610df79190810190614d3f565b604001518a8e89602001518a608001516040518763ffffffff1660e01b8152600401610e67969594939291906001600160a01b0396871681529490951660208501526001600160601b0392831660408501529082166060840152811660808301529190911660a082015260c00190565b60408051808303815f875af1158015610e82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ea691906150e7565b91509150610ec488610eb55f90565b64ffffffffff90811691161190565b15610f685764ffffffffff8881166101c0860181905260e08601516040516352bcc5a760e11b81526004810192909252909116602482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063a5798b4e90604401602060405180830381865af4158015610f36573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f5a9190615023565b64ffffffffff166101e08501525b610f70614526565b891561101057610f81878c87612da9565b60a0810151604051632620eecb60e11b815291925073__$3bac17678db7ae928afa209f2f44deec9c$__91634c41dd9691610fc29160040190815260200190565b602060405180830381865af4158015610fdd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110019190615094565b6001600160601b031660c08601525b866001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561104c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110709190614a95565b6001600160a01b031663985aeba78c87876040518463ffffffff1660e01b815260040161109f9392919061503e565b5f604051808303815f87803b1580156110b6575f80fd5b505af11580156110c8573d5f803e3d5ffd5b5050505089156110e1576110e1868c875f015184613256565b5050505050505050505050565b6110f6613497565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b611122613497565b61112c8287612918565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3016111b5838261515f565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c6111e1610970565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801561121f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611243919061522d565b5f805160206157b28339815191528054600160401b900460ff1680611275575080546001600160401b03808416911610155b156112935760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556112bd836134cf565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b611311613497565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b5f805160206157b28339815191528054600160401b810460ff1615906001600160401b03165f8115801561137f5750825b90505f826001600160401b0316600114801561139a5750303b155b9050811580156113a8575080155b156113c65760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156113f057845460ff60401b1916600160401b1785555b6113fa87876134d7565b831561144157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b5f611455600c61298e565b925050505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611496573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114ba9190614a95565b60405163bd7d9d8560e01b81526001600160601b03861660048201529091505f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa158015611509573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526115309190810190614b42565b6101c081015160405163790a38ad60e01b815264ffffffffff909116600482015290915073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af415801561158e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115b29190614d19565b6115da5760405163f95747d360e01b81526001600160601b038616600482015260240161060e565b64ffffffffff8481166101c0830181905260e08301516040516352bcc5a760e11b81526004810192909252909116602482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063a5798b4e90604401602060405180830381865af4158015611647573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061166b9190615023565b64ffffffffff166101e082015260408051631a99b41b60e31b815290516001600160a01b0385169163d4cda0d89160048083019260209291908290030181865afa1580156116bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116df9190614a95565b6001600160a01b031663985aeba7868360ff61091e565b6116fe613497565b806001600160a01b03163b5f036117335760405163fdeac91f60e01b81526001600160a01b038216600482015260240161060e565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526318788cbb60e11b60048201526301ffc9a790602401602060405180830381865afa9250505080156117ad575060408051601f3d908101601f191682019092526117aa91810190614d19565b60015b6117d55760405163fdeac91f60e01b81526001600160a01b038216600482015260240161060e565b806117fe5760405163fdeac91f60e01b81526001600160a01b038316600482015260240161060e565b505b50565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d36015604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af415801561186e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118929190614cf3565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af41580156118d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109f2919061522d565b336119185f80516020615792833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b0316146119535760405162d1953b60e31b81526001600160a01b038216600482015260240161060e565b816001600160a01b03163b5f03611988576040516361798f2f60e11b81526001600160a01b038316600482015260240161060e565b6117fe82613ab0565b5f808061199e600c61298e565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119e0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a049190614a95565b60405163bd7d9d8560e01b81526001600160601b03881660048201529091505f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa158015611a53573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611a7a9190810190614b42565b9050611a89815f015185612d5f565b15611ac5578051604051631a06208360e01b81526001600160601b03808a1660048301529182166024820152908516604482015260640161060e565b604051639096a1f360e01b81526001600160601b03881660048201525f906001600160a01b03841690639096a1f390602401602060405180830381865afa158015611b12573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b369190614cf3565b9050611b428183612a2a565b611b735760405163536eb56160e11b81526001600160601b038916600482015260ff8216602482015260440161060e565b60405163790a38ad60e01b815264ffffffffff8816600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af4158015611bc7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611beb9190614d19565b15611c5e5773__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611c37573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c5b9190615023565b96505b6101e082015164ffffffffff90811690881610611cb5576101e08201516040516372f7b9bd60e11b81526001600160601b038a16600482015264ffffffffff9182166024820152908816604482015260640161060e565b611d338773__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611d00573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d249190615023565b64ffffffffff90811691161090565b15611dde578773__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611d80573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611da49190615023565b604051631c66624d60e01b81526001600160601b03909216600483015264ffffffffff90811660248301528816604482015260640161060e565b64ffffffffff87166101e083015260408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa158015611e2f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e539190614a95565b6001600160a01b031663985aeba7898460ff6040518463ffffffff1660e01b8152600401611e839392919061503e565b5f604051808303815f87803b158015611e9a575f80fd5b505af1158015611eac573d5f803e3d5ffd5b5050604080516001600160601b038c16815264ffffffffff8b1660208201527f78c7b2401beaecd3c89e9a37210cba72e9f33e125194b23cb6c42a6d07c4fe14935001905060405180910390a186955050505050505b92915050565b5f805f8051602061577283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611f74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f989190614d19565b15612023576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611ff9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061201d9190614a95565b91505090565b54600160601b90046001600160a01b0316919050565b612041613497565b6120bd83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612081573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120a59190615094565b60085f8560405180602001604052805f81525061111a565b6001600160a01b038216156120da576120d582613b10565b612151565b5f6120e56002613b21565b905061214f816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612126573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061214a9190614a95565b613b10565b505b612161634a531f3360e01b6110ee565b61217163daf9067160e01b6110ee565b505050565b5f8051602061579283398151915280545f9190600160a01b900460ff1661219d575f61201d565b638fb3603760e01b91505090565b5f806121b7600c61298e565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061221d9190614a95565b604051639096a1f360e01b81526001600160601b0386166004820152909150612259906001600160a01b03831690639096a1f390602401610c37565b1561228257604051631130ddad60e21b81526001600160601b038516600482015260240161060e565b60405163bd7d9d8560e01b81526001600160601b03851660048201525f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa1580156122ce573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526122f59190810190614b42565b9050612304815f015185612d5f565b15612340578051604051631a06208360e01b81526001600160601b0380881660048301529182166024820152908516604482015260640161060e565b826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561237c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123a09190614a95565b6001600160a01b0316635d4345cc86601e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b1580156123f7575f80fd5b505af1158015612409573d5f803e3d5ffd5b50506040516001600160601b03881681527fa9d1c49a019bf7dc62cfada9540cd302c4fc54f6ed05d99b581074ed70441fae9250602001905060405180910390a15050505050565b5f61245c600c61298e565b925050505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561249d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124c19190614a95565b604051639096a1f360e01b81526001600160601b03861660048201529091505f906001600160a01b03831690639096a1f390602401602060405180830381865afa158015612511573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125359190614cf3565b90506125498160285b60ff90811691161490565b6125715760405163904913a960e01b81526001600160601b038616600482015260240161060e565b60405163bd7d9d8560e01b81526001600160601b03861660048201525f906001600160a01b0384169063bd7d9d85906024015f60405180830381865afa1580156125bd573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526125e49190810190614b42565b60c08101516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612643573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126679190614d19565b1561269e5760c0810151604051636cc0f84b60e01b81526001600160601b038089166004830152909116602482015260440161060e565b5f6126aa858884612da9565b60a0810151604051632620eecb60e11b815291925073__$3bac17678db7ae928afa209f2f44deec9c$__91634c41dd96916126eb9160040190815260200190565b602060405180830381865af4158015612706573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061272a9190615094565b6001600160601b031660c083015260408051631a99b41b60e31b815290516001600160a01b0387169163d4cda0d89160048083019260209291908290030181865afa15801561277b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061279f9190614a95565b6001600160a01b031663985aeba7888460ff6040518463ffffffff1660e01b81526004016127cf9392919061503e565b5f604051808303815f87803b1580156127e6575f80fd5b505af11580156127f8573d5f803e3d5ffd5b5050604051638d38cd4b60e01b815264ffffffffff8916600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9250638d38cd4b9150602401602060405180830381865af4158015612850573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128749190614d19565b80156128fa57506101c082015160405163790a38ad60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af41580156128d6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128fa9190614d19565b1561290957612909878761144a565b6114418488845f015184613256565b612920613497565b612929816116f6565b612931611309565b6001600160a01b0382166129585760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061577283398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b5f6129976144e9565b5f6129aa6001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa1580156129ee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a129190615094565b9250612a2083856001613c22565b9395909450915050565b5f612a36836028610c79565b15612a4257505f611f02565b612ac573__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612a8c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ab09190615023565b836101c0015164ffffffffff90811691161090565b15612ad157505f611f02565b50600192915050565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c4cade9d906044015b602060405180830381865af4158015612b3b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b5f9190614d19565b9392505050565b5f805f8051602061577283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612bd2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bf69190614d19565b15612c225780546040516301ab8b6760e21b81526001600160601b03909116600482015260240161060e565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612c74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c989190614d19565b612cc05760405163b9304b0d60e01b81526001600160a01b038416600482015260240161060e565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015612d12573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d369190615094565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401612b20565b612db1614526565b5f825f015190505f856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612df5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e199190614a95565b6008546060860151608087015160e088015161010089015160208a01516040808c01519051637a5ff29d60e11b81529798506001600160a01b039096169663f4bfe53a96612e76968b969095909490939092909190600401615248565b61024060405180830381865afa158015612e92573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612eb691906152c5565b60a0808201519086015160405163046e44af60e11b81526001600160601b0390911660048201529194509073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015612f1b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f3f91906153b6565b1015612fec5760a084015160405163046e44af60e11b81526001600160601b03909116600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015612fa1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fc591906153b6565b60a0840151604051632b11e0c160e11b81526004810192909252602482015260440161060e565b60405163f0ea17c360e01b81526001600160601b03831660048201525f906001600160a01b0383169063f0ea17c3906024015f60405180830381865afa158015613038573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261305f9190810190614d3f565b6060015190505f6130786001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03891660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156130c5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130e99190614a95565b90506131d6826001600160a01b03166321df0da76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561312a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061314e9190614a95565b83838960a0015173__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968b60a001516040518263ffffffff1660e01b815260040161319291815260200190565b602060405180830381865af41580156131ad573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131d19190615094565b613eb9565b505061324d81876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015613218573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061323c9190614a95565b848760200151886040015188614095565b50509392505050565b60405163f0ea17c360e01b81526001600160601b03831660048201525f906001600160a01b0386169063f0ea17c3906024015f60405180830381865afa1580156132a2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526132c99190810190614d3f565b6060015190505f6132e26001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561332f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133539190614a95565b90505f805f806133638a8961424f565b8a5160405163c661667d60e01b815294985092965090945092506001600160a01b0388169163c661667d9161339e91899186916004016153cd565b5f604051808303815f87803b1580156133b5575f80fd5b505af11580156133c7573d5f803e3d5ffd5b505050602088015160405163c661667d60e01b81526001600160a01b038916925063c661667d916133fe91899188916004016153cd565b5f604051808303815f87803b158015613415575f80fd5b505af1158015613427573d5f803e3d5ffd5b505050604080890151905163c661667d60e01b81526001600160a01b038916925063c661667d9161345e91899187916004016153cd565b5f604051808303815f87803b158015613475575f80fd5b505af1158015613487573d5f803e3d5ffd5b5050505050505050505050505050565b5f805160206157b283398151915254600160401b900460ff166134cd57604051631afcd79f60e31b815260040160405180910390fd5b565b6101bb613497565b5f805160206157b28339815191528054600160401b810460ff1615906001600160401b03165f811580156135085750825b90505f826001600160401b031660011480156135235750303b155b905081158015613531575080155b1561354f5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561357957845460ff60401b1916600160401b1785555b5f808780602001905181019061358f91906153f9565b925050915061359f82828b612039565b5f6135a8610970565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af41580156135fb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061361f9190614cf3565b90506136336001546001600160a01b031690565b6001600160a01b031663d39e604360146040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa158015613687573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136ab9190614a95565b600280546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043601e6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa15801561371f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137439190614a95565b600480546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043600b6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa1580156137b7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137db9190614a95565b600380546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e604360166040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa15801561384f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138739190614a95565b600580546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043600f6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa1580156138e7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061390b9190614a95565b600780546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043600e6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa15801561397f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139a39190614a95565b600680546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e604360196040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa158015613a17573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a3b9190614a95565b600880546001600160a01b0319166001600160a01b0392909216919091179055613a6b6304d90f6b60e01b6110ee565b505050831561144157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611438565b5f8051602061579283398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b613b18613497565b61180081614448565b5f613b346001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015613b97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bbb9190614cf3565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613bfe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f029190614a95565b613c2a6144e9565b5f80613c3e6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa158015613c8b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613cb29190810190615438565b9250613cbf85600b610c79565b15613d1557604083015160ff868116911614613d1057604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff8088166024830152909116604482015260640161060e565b613da6565b613d25836040015161253e600c90565b80613d3b5750613d3b836040015161253e600f90565b80613d515750613d51836040015161253e600e90565b80613d675750613d67836040015161253e600d90565b613da657604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff8088166024830152909116604482015260640161060e565b613db38360200151614459565b91508315613eb057816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613df7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e1b9190614a95565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa158015613e63573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e879190614d19565b15613eb057604051637d71120960e11b81526001600160601b038716600482015260240161060e565b50935093915050565b60405163046e44af60e11b81526001600160601b03821660048201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015613f11573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f3591906153b6565b6040516370a0823160e01b81526001600160a01b0386811660048301529192505f918816906370a0823190602401602060405180830381865afa158015613f7e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613fa291906153b6565b604051636eb1769f60e11b81526001600160a01b03878116600483015288811660248301529192505f9189169063dd62ed3e90604401602060405180830381865afa158015613ff3573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061401791906153b6565b9050828210156140535760405163503edf3960e11b81526001600160a01b0387166004820152602481018490526044810183905260640161060e565b828110156111b557604051630afa3e2d60e11b81526001600160a01b03808816600483015288166024820152604481018490526064810182905260840161060e565b5f805f806140a38a8961424f565b60035460c08a01516101408b015195995093975091955093506001600160a01b0316916367438c50918c918c9173__$3bac17678db7ae928afa209f2f44deec9c$__91634c41dd96916140f591615508565b6040518263ffffffff1660e01b815260040161411391815260200190565b602060405180830381865af415801561412e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141529190615094565b6040516001600160e01b031960e086901b1681526001600160a01b0390931660048401526001600160601b0391821660248401521660448201526064015f604051808303815f87803b1580156141a6575f80fd5b505af11580156141b8573d5f803e3d5ffd5b505060065460405163ab54c54560e01b81526001600160a01b03909116925063ab54c54591506141f09087908a908a90600401615618565b5f604051808303815f87803b158015614207575f80fd5b505af1158015614219573d5f803e3d5ffd5b5050600754604051637d42d39760e01b81526001600160a01b039091169250637d42d397915061345e908a908990600401615646565b6040516302d764c760e21b81526001600160601b03821660048201525f9081908190819081906001600160a01b03881690630b5d931c9060240161020060405180830381865afa1580156142a5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142c991906156b0565b805160405163f0ea17c360e01b81526001600160601b03821660048201529096509091506001600160a01b0388169063f0ea17c3906024015f60405180830381865afa15801561431b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526143429190810190614d3f565b60800151602082015160405163f0ea17c360e01b81526001600160601b0390911660048201529094506001600160a01b0388169063f0ea17c3906024015f60405180830381865afa158015614399573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526143c09190810190614d3f565b6080015160405163f0ea17c360e01b81526001600160601b03881660048201529093506001600160a01b0388169063f0ea17c3906024015f60405180830381865afa158015614411573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526144389190810190614d3f565b6080015191505092959194509250565b614450613497565b61180081613ab0565b5f61446c6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa1580156144b8573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526144df9190810190615438565b6080015192915050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6040518061024001604052805f6001600160601b031681526020015f6001600160601b031681526020015f6001600160601b031681526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b5f602082840312156145ca575f80fd5b81356001600160e01b031981168114612b5f575f80fd5b6001600160601b0381168114611800575f80fd5b5f60208284031215614605575f80fd5b8135612b5f816145e1565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614686608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e0808401526146ca610100840182614610565b949350505050565b8015158114611800575f80fd5b64ffffffffff81168114611800575f80fd5b5f805f60608486031215614703575f80fd5b833561470e816145e1565b9250602084013561471e816146d2565b9150604084013561472e816146df565b809150509250925092565b6001600160a01b0381168114611800575f80fd5b60ff81168114611800575f80fd5b634e487b7160e01b5f52604160045260245ffd5b60405161022081016001600160401b03811182821017156147925761479261475b565b60405290565b60405160c081016001600160401b03811182821017156147925761479261475b565b60405161024081016001600160401b03811182821017156147925761479261475b565b60405160e081016001600160401b03811182821017156147925761479261475b565b60405161012081016001600160401b03811182821017156147925761479261475b565b604051601f8201601f191681016001600160401b038111828210171561484a5761484a61475b565b604052919050565b5f6001600160401b0382111561486a5761486a61475b565b50601f01601f191660200190565b5f82601f830112614887575f80fd5b813561489a61489582614852565b614822565b8181528460208386010111156148ae575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f805f8060c087890312156148df575f80fd5b86356148ea81614739565b955060208701356148fa816145e1565b9450604087013561490a8161474d565b9350606087013561491a816146d2565b9250608087013561492a81614739565b915060a08701356001600160401b03811115614944575f80fd5b61495089828a01614878565b9150509295509295509295565b5f6020828403121561496d575f80fd5b81356001600160401b03811115614982575f80fd5b6146ca84828501614878565b5f806040838503121561499f575f80fd5b82356149aa81614739565b915060208301356001600160401b038111156149c4575f80fd5b6149d085828601614878565b9150509250929050565b5f80604083850312156149eb575f80fd5b82356149f6816145e1565b91506020830135614a06816146df565b809150509250929050565b5f60208284031215614a21575f80fd5b8135612b5f81614739565b5f805f60608486031215614a3e575f80fd5b8335614a4981614739565b92506020840135614a5981614739565b9150604084013561472e81614739565b5f8060408385031215614a7a575f80fd5b8235614a8581614739565b91506020830135614a0681614739565b5f60208284031215614aa5575f80fd5b8151612b5f81614739565b8051614abb816145e1565b919050565b80516001600160c01b031981168114614abb575f80fd5b8051614abb816146df565b5f82601f830112614af1575f80fd5b8151602083015f614b0461489584614852565b9050828152858383011115614b17575f80fd5b8282602083015e5f92810160200192909252509392505050565b805161ffff81168114614abb575f80fd5b5f60208284031215614b52575f80fd5b81516001600160401b03811115614b67575f80fd5b82016102208185031215614b79575f80fd5b614b8161476f565b614b8a82614ab0565b8152614b9860208301614ab0565b6020820152614ba960408301614ac0565b6040820152614bba60608301614ac0565b6060820152614bcb60808301614ab0565b6080820152614bdc60a08301614ab0565b60a0820152614bed60c08301614ab0565b60c0820152614bfe60e08301614ad7565b60e08201526101008201516001600160401b03811115614c1c575f80fd5b614c2886828501614ae2565b610100830152506101208201516001600160401b03811115614c48575f80fd5b614c5486828501614ae2565b61012083015250614c686101408301614b31565b610140820152614c7b6101608301614b31565b610160820152614c8e6101808301614ab0565b610180820152614ca16101a08301614ab0565b6101a0820152614cb46101c08301614ad7565b6101c0820152614cc76101e08301614ad7565b6101e0820152614cda6102008301614ad7565b610200820152949350505050565b8051614abb8161474d565b5f60208284031215614d03575f80fd5b8151612b5f8161474d565b8051614abb816146d2565b5f60208284031215614d29575f80fd5b8151612b5f816146d2565b8051614abb81614739565b5f60208284031215614d4f575f80fd5b81516001600160401b03811115614d64575f80fd5b820160c08185031215614d75575f80fd5b614d7d614798565b81516001600160401b03811115614d92575f80fd5b614d9e86828501614ae2565b825250614dad60208301614ab0565b6020820152614dbe60408301614d34565b6040820152614dcf60608301614d34565b6060820152614de060808301614d34565b608082015260a08201516001600160401b03811115614dfd575f80fd5b614e0986828501614ae2565b60a083015250949350505050565b80516001600160601b031682525f6020820151614e3f60208501826001600160601b03169052565b506040820151614e5b60408501826001600160c01b0319169052565b506060820151614e7760608501826001600160c01b0319169052565b506080820151614e9260808501826001600160601b03169052565b5060a0820151614ead60a08501826001600160601b03169052565b5060c0820151614ec860c08501826001600160601b03169052565b5060e0820151614ee160e085018264ffffffffff169052565b50610100820151610220610100850152614eff610220850182614610565b9050610120830151848203610120860152614f1a8282614610565b915050610140830151614f3461014086018261ffff169052565b50610160830151614f4c61016086018261ffff169052565b50610180830151614f696101808601826001600160601b03169052565b506101a0830151614f866101a08601826001600160601b03169052565b506101c0830151614fa16101c086018264ffffffffff169052565b506101e0830151614fbc6101e086018264ffffffffff169052565b50610200830151614fd761020086018264ffffffffff169052565b509392505050565b6001600160a01b038581168252841660208201526001600160601b03831660408201526080606082018190525f9061501990830184614e17565b9695505050505050565b5f60208284031215615033575f80fd5b8151612b5f816146df565b6001600160601b0384168152606060208201525f61505f6060830185614e17565b905060ff83166040830152949350505050565b5f60208284031215615082575f80fd5b815162ffffff81168114612b5f575f80fd5b5f602082840312156150a4575f80fd5b8151612b5f816145e1565b600181811c908216806150c357607f821691505b6020821081036150e157634e487b7160e01b5f52602260045260245ffd5b50919050565b5f80604083850312156150f8575f80fd5b8251615103816145e1565b6020840151909250614a06816145e1565b601f82111561217157805f5260205f20601f840160051c810160208510156151395750805b601f840160051c820191505b81811015615158575f8155600101615145565b5050505050565b81516001600160401b038111156151785761517861475b565b61518c8161518684546150af565b84615114565b6020601f8211600181146151be575f83156151a75750848201515b5f19600385901b1c1916600184901b178455615158565b5f84815260208120601f198516915b828110156151ed57878501518255602094850194600190920191016151cd565b508482101561520a57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6001600160401b0381168114611800575f80fd5b5f6020828403121561523d575f80fd5b8151612b5f81615219565b6001600160601b03881681526001600160401b0360c01b871660208201526001600160601b038616604082015264ffffffffff8516606082015260e060808201525f61529760e0830186614610565b6001600160601b039490941660a0830152506001600160c01b03199190911660c09091015295945050505050565b5f6102408284031280156152d7575f80fd5b506152e06147ba565b6152e983614ab0565b81526152f760208401614ab0565b602082015261530860408401614ab0565b6040820152606083810151908201526080808401519082015260a0808401519082015260c0808401519082015260e08084015190820152610100808401519082015261012080840151908201526101408084015190820152610160808401519082015261018080840151908201526101a080840151908201526101c080840151908201526101e080840151908201526102008084015190820152610220928301519281019290925250919050565b5f602082840312156153c6575f80fd5b5051919050565b6001600160a01b0393841681529190921660208201526001600160601b03909116604082015260600190565b5f805f6060848603121561540b575f80fd5b835161541681614739565b602085015190935061542781614739565b604085015190925061472e81614739565b5f60208284031215615448575f80fd5b81516001600160401b0381111561545d575f80fd5b820160e0818503121561546e575f80fd5b6154766147dd565b61547f82614ab0565b815261548d60208301614ab0565b602082015261549e60408301614ce8565b60408201526154af60608301614d0e565b60608201526154c060808301614d34565b60808201526154d160a08301614d34565b60a082015260c08201516001600160401b038111156154ee575f80fd5b6154fa86828501614ae2565b60c083015250949350505050565b80820180821115611f0257634e487b7160e01b5f52601160045260245ffd5b80516001600160601b03168252602081015161554e60208401826001600160601b03169052565b50604081015161556960408401826001600160601b03169052565b50606081015160608301526080810151608083015260a081015160a083015260c081015160c083015260e081015160e08301526101008101516101008301526101208101516101208301526101408101516101408301526101608101516101608301526101808101516101808301526101a08101516101a08301526101c08101516101c08301526101e08101516101e08301526102008101516102008301526102208101516102208301525050565b6001600160601b03841681526001600160c01b03198316602082015261028081016146ca6040830184615527565b6001600160601b03831681526102608101612b5f6020830184615527565b5f60408284031215615674575f80fd5b604080519081016001600160401b03811182821017156156965761569661475b565b604052825181526020928301519281019290925250919050565b5f6102008284031280156156c2575f80fd5b506156cb6147ff565b6156d483614ab0565b81526156e260208401614ab0565b60208201526156f48460408501615664565b60408201526157068460808501615664565b60608201526157188460c08501615664565b608082015261572b846101008501615664565b60a082015261573e846101408501615664565b60c0820152615751846101808501615664565b60e0820152615764846101c08501615664565b610100820152939250505056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212207754ab550f486f936a4b0ab3c04c77ad53f609dad44df8c0183e87d797ebceea64736f6c634300081a0033",
1039
+ "linkReferences": {
1040
+ "contracts/type/Amount.sol": {
1041
+ "AmountLib": [
1042
+ {
1043
+ "length": 20,
1044
+ "start": 4206
1045
+ },
1046
+ {
1047
+ "length": 20,
1048
+ "start": 9953
1049
+ },
1050
+ {
1051
+ "length": 20,
1052
+ "start": 10135
1053
+ },
1054
+ {
1055
+ "length": 20,
1056
+ "start": 11224
1057
+ },
1058
+ {
1059
+ "length": 20,
1060
+ "start": 12217
1061
+ },
1062
+ {
1063
+ "length": 20,
1064
+ "start": 12351
1065
+ },
1066
+ {
1067
+ "length": 20,
1068
+ "start": 12845
1069
+ },
1070
+ {
1071
+ "length": 20,
1072
+ "start": 16303
1073
+ },
1074
+ {
1075
+ "length": 20,
1076
+ "start": 16808
1077
+ }
1078
+ ]
1079
+ },
1080
+ "contracts/type/NftId.sol": {
1081
+ "NftIdLib": [
1082
+ {
1083
+ "length": 20,
1084
+ "start": 2822
1085
+ },
1086
+ {
1087
+ "length": 20,
1088
+ "start": 8210
1089
+ },
1090
+ {
1091
+ "length": 20,
1092
+ "start": 11376
1093
+ },
1094
+ {
1095
+ "length": 20,
1096
+ "start": 11869
1097
+ }
1098
+ ]
1099
+ },
1100
+ "contracts/type/RoleId.sol": {
1101
+ "RoleIdLib": [
1102
+ {
1103
+ "length": 20,
1104
+ "start": 6364
1105
+ }
1106
+ ]
1107
+ },
1108
+ "contracts/type/Timestamp.sol": {
1109
+ "TimestampLib": [
1110
+ {
1111
+ "length": 20,
1112
+ "start": 1808
1113
+ },
1114
+ {
1115
+ "length": 20,
1116
+ "start": 2308
1117
+ },
1118
+ {
1119
+ "length": 20,
1120
+ "start": 4052
1121
+ },
1122
+ {
1123
+ "length": 20,
1124
+ "start": 5676
1125
+ },
1126
+ {
1127
+ "length": 20,
1128
+ "start": 5861
1129
+ },
1130
+ {
1131
+ "length": 20,
1132
+ "start": 7269
1133
+ },
1134
+ {
1135
+ "length": 20,
1136
+ "start": 7368
1137
+ },
1138
+ {
1139
+ "length": 20,
1140
+ "start": 7569
1141
+ },
1142
+ {
1143
+ "length": 20,
1144
+ "start": 7697
1145
+ },
1146
+ {
1147
+ "length": 20,
1148
+ "start": 10476
1149
+ },
1150
+ {
1151
+ "length": 20,
1152
+ "start": 10612
1153
+ },
1154
+ {
1155
+ "length": 20,
1156
+ "start": 11037
1157
+ }
1158
+ ]
1159
+ },
1160
+ "contracts/type/Version.sol": {
1161
+ "VersionLib": [
1162
+ {
1163
+ "length": 20,
1164
+ "start": 2668
1165
+ },
1166
+ {
1167
+ "length": 20,
1168
+ "start": 4759
1169
+ },
1170
+ {
1171
+ "length": 20,
1172
+ "start": 13977
1173
+ }
1174
+ ],
1175
+ "VersionPartLib": [
1176
+ {
1177
+ "length": 20,
1178
+ "start": 6412
1179
+ },
1180
+ {
1181
+ "length": 20,
1182
+ "start": 15413
1183
+ }
1184
+ ]
1185
+ }
1186
+ },
1187
+ "deployedLinkReferences": {
1188
+ "contracts/type/Amount.sol": {
1189
+ "AmountLib": [
1190
+ {
1191
+ "length": 20,
1192
+ "start": 3992
1193
+ },
1194
+ {
1195
+ "length": 20,
1196
+ "start": 9739
1197
+ },
1198
+ {
1199
+ "length": 20,
1200
+ "start": 9921
1201
+ },
1202
+ {
1203
+ "length": 20,
1204
+ "start": 11010
1205
+ },
1206
+ {
1207
+ "length": 20,
1208
+ "start": 12003
1209
+ },
1210
+ {
1211
+ "length": 20,
1212
+ "start": 12137
1213
+ },
1214
+ {
1215
+ "length": 20,
1216
+ "start": 12631
1217
+ },
1218
+ {
1219
+ "length": 20,
1220
+ "start": 16089
1221
+ },
1222
+ {
1223
+ "length": 20,
1224
+ "start": 16594
1225
+ }
1226
+ ]
1227
+ },
1228
+ "contracts/type/NftId.sol": {
1229
+ "NftIdLib": [
1230
+ {
1231
+ "length": 20,
1232
+ "start": 2608
1233
+ },
1234
+ {
1235
+ "length": 20,
1236
+ "start": 7996
1237
+ },
1238
+ {
1239
+ "length": 20,
1240
+ "start": 11162
1241
+ },
1242
+ {
1243
+ "length": 20,
1244
+ "start": 11655
1245
+ }
1246
+ ]
1247
+ },
1248
+ "contracts/type/RoleId.sol": {
1249
+ "RoleIdLib": [
1250
+ {
1251
+ "length": 20,
1252
+ "start": 6150
1253
+ }
1254
+ ]
1255
+ },
1256
+ "contracts/type/Timestamp.sol": {
1257
+ "TimestampLib": [
1258
+ {
1259
+ "length": 20,
1260
+ "start": 1594
1261
+ },
1262
+ {
1263
+ "length": 20,
1264
+ "start": 2094
1265
+ },
1266
+ {
1267
+ "length": 20,
1268
+ "start": 3838
1269
+ },
1270
+ {
1271
+ "length": 20,
1272
+ "start": 5462
1273
+ },
1274
+ {
1275
+ "length": 20,
1276
+ "start": 5647
1277
+ },
1278
+ {
1279
+ "length": 20,
1280
+ "start": 7055
1281
+ },
1282
+ {
1283
+ "length": 20,
1284
+ "start": 7154
1285
+ },
1286
+ {
1287
+ "length": 20,
1288
+ "start": 7355
1289
+ },
1290
+ {
1291
+ "length": 20,
1292
+ "start": 7483
1293
+ },
1294
+ {
1295
+ "length": 20,
1296
+ "start": 10262
1297
+ },
1298
+ {
1299
+ "length": 20,
1300
+ "start": 10398
1301
+ },
1302
+ {
1303
+ "length": 20,
1304
+ "start": 10823
1305
+ }
1306
+ ]
1307
+ },
1308
+ "contracts/type/Version.sol": {
1309
+ "VersionLib": [
1310
+ {
1311
+ "length": 20,
1312
+ "start": 2454
1313
+ },
1314
+ {
1315
+ "length": 20,
1316
+ "start": 4545
1317
+ },
1318
+ {
1319
+ "length": 20,
1320
+ "start": 13763
1321
+ }
1322
+ ],
1323
+ "VersionPartLib": [
1324
+ {
1325
+ "length": 20,
1326
+ "start": 6198
1327
+ },
1328
+ {
1329
+ "length": 20,
1330
+ "start": 15199
1331
+ }
1332
+ ]
1333
+ }
1334
+ }
1335
+ }