Feature Tip: Add private address tag to any address under My Name Tag !
ERC-1155
Overview
Max Total Supply
5,800
Holders
266
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CS2Presale
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-05-18 */ /* * Crypto stamp 2 Pre-sale * On-chain reservation token (ERC 1155) to be redeemed later for * actual digital-physical collectible postage stamps * * Developed by Capacity Blockchain Solutions GmbH <capacity.at> * for Österreichische Post AG <post.at> */ // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/introspection/IERC165.sol pragma solidity ^0.6.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.6.2; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of NFTs in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the NFT specified by `tokenId`. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to * another (`to`). * * * * Requirements: * - `from`, `to` cannot be zero. * - `tokenId` must be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this * NFT by either {approve} or {setApprovalForAll}. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to * another (`to`). * * Requirements: * - If the caller is not `from`, it must be approved to move this NFT by * either {approve} or {setApprovalForAll}. */ function transferFrom(address from, address to, uint256 tokenId) external; function approve(address to, uint256 tokenId) external; function getApproved(uint256 tokenId) external view returns (address operator); function setApprovalForAll(address operator, bool _approved) external; function isApprovedForAll(address owner, address operator) external view returns (bool); function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: contracts/OZ_ERC1155/IERC1155.sol pragma solidity ^0.6.0; /** @title ERC-1155 Multi Token Standard basic interface @dev See https://eips.ethereum.org/EIPS/eip-1155 */ abstract contract IERC1155 is IERC165 { event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); event TransferBatch(address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values); event ApprovalForAll(address indexed account, address indexed operator, bool approved); event URI(string value, uint256 indexed id); function balanceOf(address account, uint256 id) public view virtual returns (uint256); function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual returns (uint256[] memory); function setApprovalForAll(address operator, bool approved) external virtual; function isApprovedForAll(address account, address operator) external view virtual returns (bool); function safeTransferFrom(address from, address to, uint256 id, uint256 value, bytes calldata data) external virtual; function safeBatchTransferFrom(address from, address to, uint256[] calldata ids, uint256[] calldata values, bytes calldata data) external virtual; } // File: contracts/OZ_ERC1155/IERC1155Receiver.sol pragma solidity ^0.6.0; /** @title ERC-1155 Multi Token Receiver Interface @dev See https://eips.ethereum.org/EIPS/eip-1155 */ interface IERC1155Receiver is IERC165 { /** @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns(bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns(bytes4); } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } } // File: @openzeppelin/contracts/introspection/ERC165.sol pragma solidity ^0.6.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } // File: contracts/OZ_ERC1155/ERC1155.sol pragma solidity ^0.6.0; /** * @title Standard ERC1155 token * * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 */ contract ERC1155 is ERC165, IERC1155 { using SafeMath for uint256; using Address for address; // Mapping from token ID to account balances mapping (uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping (address => mapping(address => bool)) private _operatorApprovals; // Mapping token ID to that token being registered as existing mapping (uint256 => bool) private _tokenExists; /* * bytes4(keccak256('balanceOf(address,uint256)')) == 0x00fdd58e * bytes4(keccak256('balanceOfBatch(address[],uint256[])')) == 0x4e1273f4 * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('safeTransferFrom(address,address,uint256,uint256,bytes)')) == 0xf242432a * bytes4(keccak256('safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)')) == 0x2eb2c2d6 * * => 0x00fdd58e ^ 0x4e1273f4 ^ 0xa22cb465 ^ * 0xe985e9c5 ^ 0xf242432a ^ 0x2eb2c2d6 == 0xd9b67a26 */ bytes4 private constant _INTERFACE_ID_ERC1155 = 0xd9b67a26; constructor() public { // register the supported interfaces to conform to ERC1155 via ERC165 _registerInterface(_INTERFACE_ID_ERC1155); } /** @dev Get the specified address' balance for token with specified ID. Attempting to query the zero account for a balance will result in a revert. @param account The address of the token holder @param id ID of the token @return The account's balance of the token type requested */ function balanceOf(address account, uint256 id) public view override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); require(_exists(id), "ERC1155: balance query for nonexistent token"); return _balances[id][account]; } /** @dev Get the balance of multiple account/token pairs. If any of the query accounts is the zero account, this query will revert. @param accounts The addresses of the token holders @param ids IDs of the tokens @return Balances for each account and token id pair */ function balanceOfBatch( address[] memory accounts, uint256[] memory ids ) public view override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and IDs must have same lengths"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { require(accounts[i] != address(0), "ERC1155: some address in batch balance query is zero"); require(_exists(ids[i]), "ERC1155: some token in batch balance query does not exist"); batchBalances[i] = _balances[ids[i]][accounts[i]]; } return batchBalances; } /** * @dev Sets or unsets the approval of a given operator. * * An operator is allowed to transfer all tokens of the sender on their behalf. * * Because an account already has operator privileges for itself, this function will revert * if the account attempts to set the approval status for itself. * * @param operator address to set the approval * @param approved representing the status of the approval to be set */ function setApprovalForAll(address operator, bool approved) external override virtual { require(msg.sender != operator, "ERC1155: cannot set approval status for self"); _operatorApprovals[msg.sender][operator] = approved; emit ApprovalForAll(msg.sender, operator, approved); } /** @notice Queries the approval status of an operator for a given account. @param account The account of the Tokens @param operator Address of authorized operator @return True if the operator is approved, false if not */ function isApprovedForAll(address account, address operator) public view override returns (bool) { return _operatorApprovals[account][operator]; } /** @dev Transfers `value` amount of an `id` from the `from` address to the `to` address specified. Caller must be approved to manage the tokens being transferred out of the `from` account. If `to` is a smart contract, will call `onERC1155Received` on `to` and act appropriately. @param from Source address @param to Target address @param id ID of the token type @param value Transfer amount @param data Data forwarded to `onERC1155Received` if `to` is a contract receiver */ function safeTransferFrom( address from, address to, uint256 id, uint256 value, bytes calldata data ) external override virtual { require(to != address(0), "ERC1155: target address must be non-zero"); require( from == msg.sender || isApprovedForAll(from, msg.sender) == true, "ERC1155: need operator approval for 3rd party transfers" ); _balances[id][from] = _balances[id][from].sub(value, "ERC1155: insufficient balance for transfer"); _balances[id][to] = _balances[id][to].add(value); emit TransferSingle(msg.sender, from, to, id, value); _doSafeTransferAcceptanceCheck(msg.sender, from, to, id, value, data); } /** @dev Transfers `values` amount(s) of `ids` from the `from` address to the `to` address specified. Caller must be approved to manage the tokens being transferred out of the `from` account. If `to` is a smart contract, will call `onERC1155BatchReceived` on `to` and act appropriately. @param from Source address @param to Target address @param ids IDs of each token type @param values Transfer amounts per token type @param data Data forwarded to `onERC1155Received` if `to` is a contract receiver */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external override virtual { require(ids.length == values.length, "ERC1155: IDs and values must have same lengths"); require(to != address(0), "ERC1155: target address must be non-zero"); require( from == msg.sender || isApprovedForAll(from, msg.sender) == true, "ERC1155: need operator approval for 3rd party transfers" ); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 value = values[i]; _balances[id][from] = _balances[id][from].sub( value, "ERC1155: insufficient balance of some token type for transfer" ); _balances[id][to] = _balances[id][to].add(value); } emit TransferBatch(msg.sender, from, to, ids, values); _doSafeBatchTransferAcceptanceCheck(msg.sender, from, to, ids, values, data); } /** * @dev Register a token ID so other contract functionality knows this token * actually exists and this ID is valid. Minting will automatically call this. * @param id uint256 ID of the token to register */ function _registerToken(uint256 id) internal virtual { _tokenExists[id] = true; } /** * @dev Returns whether the specified token exists. Use {_registerTokenID} to set this flag. * @param id uint256 ID of the token to query the existence of * @return bool whether the token exists */ function _exists(uint256 id) internal view returns (bool) { return _tokenExists[id]; } /** * @dev Internal function to mint an amount of a token with the given ID * @param to The address that will own the minted token * @param id ID of the token to be minted * @param value Amount of the token to be minted * @param data Data forwarded to `onERC1155Received` if `to` is a contract receiver */ function _mint(address to, uint256 id, uint256 value, bytes memory data) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); if (!_exists(id)) { _registerToken(id); } _balances[id][to] = _balances[id][to].add(value); emit TransferSingle(msg.sender, address(0), to, id, value); _doSafeTransferAcceptanceCheck(msg.sender, address(0), to, id, value, data); } /** * @dev Internal function to batch mint amounts of tokens with the given IDs * @param to The address that will own the minted token * @param ids IDs of the tokens to be minted * @param values Amounts of the tokens to be minted * @param data Data forwarded to `onERC1155Received` if `to` is a contract receiver */ function _mintBatch(address to, uint256[] memory ids, uint256[] memory values, bytes memory data) internal virtual { require(to != address(0), "ERC1155: batch mint to the zero address"); require(ids.length == values.length, "ERC1155: minted IDs and values must have same lengths"); for(uint i = 0; i < ids.length; i++) { if (!_exists(ids[i])) { _registerToken(ids[i]); } _balances[ids[i]][to] = values[i].add(_balances[ids[i]][to]); } emit TransferBatch(msg.sender, address(0), to, ids, values); _doSafeBatchTransferAcceptanceCheck(msg.sender, address(0), to, ids, values, data); } /** * @dev Internal function to burn an amount of a token with the given ID * @param account Account which owns the token to be burnt * @param id ID of the token to be burnt * @param value Amount of the token to be burnt */ function _burn(address account, uint256 id, uint256 value) internal virtual { require(account != address(0), "ERC1155: attempting to burn tokens on zero account"); _balances[id][account] = _balances[id][account].sub( value, "ERC1155: attempting to burn more than balance" ); emit TransferSingle(msg.sender, account, address(0), id, value); } /** * @dev Internal function to batch burn an amounts of tokens with the given IDs * @param account Account which owns the token to be burnt * @param ids IDs of the tokens to be burnt * @param values Amounts of the tokens to be burnt */ function _burnBatch(address account, uint256[] memory ids, uint256[] memory values) internal virtual { require(account != address(0), "ERC1155: attempting to burn batch of tokens on zero account"); require(ids.length == values.length, "ERC1155: burnt IDs and values must have same lengths"); for(uint i = 0; i < ids.length; i++) { _balances[ids[i]][account] = _balances[ids[i]][account].sub( values[i], "ERC1155: attempting to burn more than balance for some token" ); } emit TransferBatch(msg.sender, account, address(0), ids, values); } function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 value, bytes memory data ) internal virtual { if(to.isContract()) { require( IERC1155Receiver(to).onERC1155Received(operator, from, id, value, data) == IERC1155Receiver(to).onERC1155Received.selector, "ERC1155: got unknown value from onERC1155Received" ); } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory values, bytes memory data ) internal virtual { if(to.isContract()) { require( IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, values, data) == IERC1155Receiver(to).onERC1155BatchReceived.selector, "ERC1155: got unknown value from onERC1155BatchReceived" ); } } } // File: contracts/OZ_ERC1155/IERC1155MetadataURI.sol pragma solidity ^0.6.0; /** * @title ERC-1155 Multi Token Standard basic interface, optional metadata URI extension * @dev See https://eips.ethereum.org/EIPS/eip-1155 */ abstract contract IERC1155MetadataURI is IERC1155 { function uri(uint256 id) external view virtual returns (string memory); } // File: contracts/OZ_ERC1155/ERC1155MetadataURICatchAll.sol pragma solidity ^0.6.0; contract ERC1155MetadataURICatchAll is ERC165, ERC1155, IERC1155MetadataURI { // Catch-all URI with placeholders, e.g. https://example.com/{locale}/{id}.json string private _uri; /* * bytes4(keccak256('uri(uint256)')) == 0x0e89341c */ bytes4 private constant _INTERFACE_ID_ERC1155_METADATA_URI = 0x0e89341c; /** * @dev Constructor function */ constructor (string memory uri) public { _setURI(uri); // register the supported interfaces to conform to ERC1155 via ERC165 _registerInterface(_INTERFACE_ID_ERC1155_METADATA_URI); } /** * @notice A distinct Uniform Resource Identifier (URI) for a given token. * @dev URIs are defined in RFC 3986. * The URI MUST point to a JSON file that conforms to the "ERC-1155 Metadata URI JSON Schema". * param id uint256 ID of the token to query (ignored in this particular implementation, * as an {id} parameter in the string is expected) * @return URI string */ function uri(uint256 id) external view override returns (string memory) { require(_exists(id), "ERC1155MetadataURI: URI query for nonexistent token"); return _uri; } /** * @dev Internal function to set a new URI * @param newuri New URI to be set */ function _setURI(string memory newuri) internal virtual { _uri = newuri; emit URI(_uri, 0); } } // File: contracts/ENSReverseRegistrarI.sol /* * Interfaces for ENS Reverse Registrar * See https://github.com/ensdomains/ens/blob/master/contracts/ReverseRegistrar.sol for full impl * Also see https://github.com/wealdtech/wealdtech-solidity/blob/master/contracts/ens/ENSReverseRegister.sol * * Use this as follows (registryAddress is the address of the ENS registry to use): * ----- * // This hex value is caclulated by namehash('addr.reverse') * bytes32 public constant ENS_ADDR_REVERSE_NODE = 0x91d1777781884d03a6757a803996e38de2a42967fb37eeaca72729271025a9e2; * function registerReverseENS(address registryAddress, string memory calldata) external { * require(registryAddress != address(0), "need a valid registry"); * address reverseRegistrarAddress = ENSRegistryOwnerI(registryAddress).owner(ENS_ADDR_REVERSE_NODE) * require(reverseRegistrarAddress != address(0), "need a valid reverse registrar"); * ENSReverseRegistrarI(reverseRegistrarAddress).setName(name); * } * ----- * or * ----- * function registerReverseENS(address reverseRegistrarAddress, string memory calldata) external { * require(reverseRegistrarAddress != address(0), "need a valid reverse registrar"); * ENSReverseRegistrarI(reverseRegistrarAddress).setName(name); * } * ----- * ENS deployments can be found at https://docs.ens.domains/ens-deployments * For Mainnet, 0x9062c0a6dbd6108336bcbe4593a3d1ce05512069 is the reverseRegistrarAddress, * for Ropsten, it is at 0x67d5418a000534a8F1f5FF4229cC2f439e63BBe2. */ pragma solidity ^0.6.0; interface ENSRegistryOwnerI { function owner(bytes32 node) external view returns (address); } interface ENSReverseRegistrarI { function setName(string calldata name) external returns (bytes32 node); } // File: contracts/OracleRequest.sol /* Interface for requests to the rate oracle (for EUR/ETH) Copy this to projects that need to access the oracle. See rate-oracle project for implementation. */ pragma solidity ^0.6.0; abstract contract OracleRequest { uint256 public EUR_WEI; //number of wei per EUR uint256 public lastUpdate; //timestamp of when the last update occurred function ETH_EUR() public view virtual returns (uint256); //number of EUR per ETH (rounded down!) function ETH_EURCENT() public view virtual returns (uint256); //number of EUR cent per ETH (rounded down!) } // File: contracts/CS2PresaleIBuyDP.sol /* Interfacte for CS2 on-chain presale for usage with DirectPay contracts. */ pragma solidity ^0.6.0; abstract contract CS2PresaleIBuyDP { enum AssetType { Honeybadger, Llama, Panda, Doge } // Buy assets of a single type/animal. The number of assets is determined from the amount of ETH sent. // This variant will be used externally from the CS2PresaleDirectPay contracts, which need to buy for _their_ msg.sender. function buy(AssetType _type, address payable _recipient) public payable virtual; } // File: contracts/CS2PresaleDirectPay.sol /* Implements an on-chain presale for Crypto stamp Edition 2 */ pragma solidity ^0.6.0; contract CS2PresaleDirectPay { using SafeMath for uint256; address public tokenAssignmentControl; CS2PresaleIBuyDP public presale; CS2PresaleIBuyDP.AssetType public assetType; event TokenAssignmentControlTransferred(address indexed previousTokenAssignmentControl, address indexed newTokenAssignmentControl); constructor(CS2PresaleIBuyDP _presale, CS2PresaleIBuyDP.AssetType _assetType, address _tokenAssignmentControl) public { presale = _presale; require(address(presale) != address(0x0), "You need to provide an actual presale contract."); assetType = _assetType; tokenAssignmentControl = _tokenAssignmentControl; require(address(tokenAssignmentControl) != address(0x0), "You need to provide an actual tokenAssignmentControl address."); } modifier onlyTokenAssignmentControl() { require(msg.sender == tokenAssignmentControl, "tokenAssignmentControl key required for this function."); _; } /*** Enable adjusting variables after deployment ***/ function transferTokenAssignmentControl(address _newTokenAssignmentControl) public onlyTokenAssignmentControl { require(_newTokenAssignmentControl != address(0), "tokenAssignmentControl cannot be the zero address."); emit TokenAssignmentControlTransferred(tokenAssignmentControl, _newTokenAssignmentControl); tokenAssignmentControl = _newTokenAssignmentControl; } /*** Actual presale functionality ***/ // Buy assets of a single type/animal. The number of assets is determined from the amount of ETH sent. receive() external payable { presale.buy{value: msg.value}(assetType, msg.sender); } /*** Enable reverse ENS registration ***/ // Call this with the address of the reverse registrar for the respecitve network and the ENS name to register. // The reverse registrar can be found as the owner of 'addr.reverse' in the ENS system. // For Mainnet, the address needed is 0x9062c0a6dbd6108336bcbe4593a3d1ce05512069 function registerReverseENS(address _reverseRegistrarAddress, string calldata _name) external onlyTokenAssignmentControl { require(_reverseRegistrarAddress != address(0), "need a valid reverse registrar"); ENSReverseRegistrarI(_reverseRegistrarAddress).setName(_name); } /*** Make sure currency or NFT doesn't get stranded in this contract ***/ // If this contract gets a balance in some ERC20 contract after it's finished, then we can rescue it. function rescueToken(IERC20 _foreignToken, address _to) external onlyTokenAssignmentControl { _foreignToken.transfer(_to, _foreignToken.balanceOf(address(this))); } // If this contract gets a balance in some ERC721 contract after it's finished, then we can rescue it. function approveNFTrescue(IERC721 _foreignNFT, address _to) external onlyTokenAssignmentControl { _foreignNFT.setApprovalForAll(_to, true); } } // File: contracts/CS2Presale.sol /* Implements an on-chain presale for Crypto stamp Edition 2 */ pragma solidity ^0.6.0; contract CS2Presale is ERC1155MetadataURICatchAll, CS2PresaleIBuyDP { using SafeMath for uint256; OracleRequest internal oracle; address payable public beneficiary; address public tokenAssignmentControl; address public redeemer; uint256 public priceEurCent; uint256 public limitPerType; // Keep those sizes in sync with the length of the AssetType enum. uint256[4] public assetSupply; uint256[4] public assetSold; CS2PresaleDirectPay[4] public directPay; bool internal _isOpen = true; event DirectPayDeployed(address directPayContract); event PriceChanged(uint256 previousPriceEurCent, uint256 newPriceEurCent); event LimitChanged(uint256 previousLimitPerType, uint256 newLimitPerType); event OracleChanged(address indexed previousOracle, address indexed newOracle); event BeneficiaryTransferred(address indexed previousBeneficiary, address indexed newBeneficiary); event TokenAssignmentControlTransferred(address indexed previousTokenAssignmentControl, address indexed newTokenAssignmentControl); event RedeemerTransferred(address indexed previousRedeemer, address indexed newRedeemer); event ShopOpened(); event ShopClosed(); constructor(OracleRequest _oracle, uint256 _priceEurCent, uint256 _limitPerType, address payable _beneficiary, address _tokenAssignmentControl) ERC1155MetadataURICatchAll("https://test.crypto.post.at/CS2PS/meta/{id}") public { oracle = _oracle; require(address(oracle) != address(0x0), "You need to provide an actual Oracle contract."); beneficiary = _beneficiary; require(address(beneficiary) != address(0x0), "You need to provide an actual beneficiary address."); tokenAssignmentControl = _tokenAssignmentControl; require(address(tokenAssignmentControl) != address(0x0), "You need to provide an actual tokenAssignmentControl address."); redeemer = tokenAssignmentControl; priceEurCent = _priceEurCent; require(priceEurCent > 0, "You need to provide a non-zero price."); limitPerType = _limitPerType; // Register the token IDs we'll be using. uint256 typesNum = assetSupply.length; for (uint256 i = 0; i < typesNum; i++) { _registerToken(i); } } modifier onlyBeneficiary() { require(msg.sender == beneficiary, "Only the current benefinicary can call this function."); _; } modifier onlyTokenAssignmentControl() { require(msg.sender == tokenAssignmentControl, "tokenAssignmentControl key required for this function."); _; } modifier onlyRedeemer() { require(msg.sender == redeemer, "Only the current redeemer can call this function."); _; } modifier requireOpen() { require(isOpen() == true, "This call only works when the presale is open."); _; } /*** Deploy DirectPay contracts ***/ // This is its own function as it takes about 2M gas in addition to the 4M+ gas the main contract needs, // so it's probably better not to do this right in the constructor. // As it can only be done once and the caller cannot influence it, no restrictions are made on who can call it. function deployDP() public { uint256 typesNum = directPay.length; for (uint256 i = 0; i < typesNum; i++) { require(address(directPay[i]) == address(0x0), "direct-pay contracts have already been deployed."); directPay[i] = new CS2PresaleDirectPay(this, AssetType(i), tokenAssignmentControl); emit DirectPayDeployed(address(directPay[i])); } } /*** Enable adjusting variables after deployment ***/ function setPrice(uint256 _newPriceEurCent) public onlyBeneficiary { require(_newPriceEurCent > 0, "You need to provide a non-zero price."); emit PriceChanged(priceEurCent, _newPriceEurCent); priceEurCent = _newPriceEurCent; } function setLimit(uint256 _newLimitPerType) public onlyBeneficiary { uint256 typesNum = assetSold.length; for (uint256 i = 0; i < typesNum; i++) { require(assetSold[i] <= _newLimitPerType, "At least one requested asset is already over the requested limit."); } emit LimitChanged(limitPerType, _newLimitPerType); limitPerType = _newLimitPerType; } function setOracle(OracleRequest _newOracle) public onlyBeneficiary { require(address(_newOracle) != address(0x0), "You need to provide an actual Oracle contract."); emit OracleChanged(address(oracle), address(_newOracle)); oracle = _newOracle; } function setMetadataURI(string memory _newURI) public onlyBeneficiary { _setURI(_newURI); } function transferBeneficiary(address payable _newBeneficiary) public onlyBeneficiary { require(_newBeneficiary != address(0), "beneficiary cannot be the zero address."); emit BeneficiaryTransferred(beneficiary, _newBeneficiary); beneficiary = _newBeneficiary; } function transferTokenAssignmentControl(address _newTokenAssignmentControl) public onlyTokenAssignmentControl { require(_newTokenAssignmentControl != address(0), "tokenAssignmentControl cannot be the zero address."); emit TokenAssignmentControlTransferred(tokenAssignmentControl, _newTokenAssignmentControl); tokenAssignmentControl = _newTokenAssignmentControl; } function transferRedeemer(address _newRedeemer) public onlyRedeemer { require(_newRedeemer != address(0), "redeemer cannot be the zero address."); emit RedeemerTransferred(redeemer, _newRedeemer); redeemer = _newRedeemer; } function openShop() public onlyBeneficiary { _isOpen = true; emit ShopOpened(); } function closeShop() public onlyBeneficiary { _isOpen = false; emit ShopClosed(); } /*** Actual presale functionality ***/ // Return true if presale is currently open for purchases. // This can have additional conditions to just the variable, e.g. actually having items to sell. function isOpen() public view returns (bool) { return _isOpen; } // Calculate current asset price in wei. // Note: Price in EUR cent is available from public var getter priceEurCent(). function priceWei() public view returns (uint256) { return priceEurCent.mul(oracle.EUR_WEI()).div(100); } // This returns the total amount of all assets currently existing. function totalSupply() public view returns (uint256) { uint256 _totalSupply = 0; uint256 typesNum = assetSupply.length; for (uint256 i = 0; i < typesNum; i++) { _totalSupply = _totalSupply.add(assetSupply[i]); } return _totalSupply; } // This returns the total amount of all assets created/sold. function totalSold() public view returns (uint256) { uint256 _totalSold = 0; uint256 typesNum = assetSold.length; for (uint256 i = 0; i < typesNum; i++) { _totalSold = _totalSold.add(assetSold[i]); } return _totalSold; } // Returns the amount of assets of that type still available for sale. function availableForSale(AssetType _type) public view returns (uint256) { return limitPerType.sub(assetSold[uint256(_type)]); } // Returns true if the asset of the given type is sold out. function isSoldOut(AssetType _type) public view returns (bool) { return assetSold[uint256(_type)] >= limitPerType; } // Buy assets of a single type/animal. The number of assets is determined from the amount of ETH sent. function buy(AssetType _type) external payable requireOpen { buy(_type, msg.sender); } // Buy assets of a single type/animal. The number of assets is determined from the amount of ETH sent. // This variant will be used externally from the CS2PresaleDirectPay contracts, which need to buy for _their_ msg.sender. function buy(AssetType _type, address payable _recipient) public payable override requireOpen { uint256 curPriceWei = priceWei(); require(msg.value >= curPriceWei, "You need to send enough currency to actually pay at least one item."); uint256 maxToSell = limitPerType.sub(assetSold[uint256(_type)]); require(maxToSell > 0, "The requested asset is sold out."); // Determine amount of assets to buy from payment value (algorithm rounds down). uint256 assetCount = msg.value.div(curPriceWei); // Don't allow buying more assets than available of this type. if (assetCount > maxToSell) { assetCount = maxToSell; } // Determine actual price of rounded-down count. uint256 payAmount = assetCount.mul(curPriceWei); // Transfer the actual payment amount to the beneficiary. beneficiary.transfer(payAmount); // Generate and assign the actual assets. _mint(_recipient, uint256(_type), assetCount, bytes("")); assetSupply[uint256(_type)] = assetSupply[uint256(_type)].add(assetCount); assetSold[uint256(_type)] = assetSold[uint256(_type)].add(assetCount); // Send back change money. Do this last. if (msg.value > payAmount) { _recipient.transfer(msg.value.sub(payAmount)); } } // Buy assets of a multiple types/animals at once. function buyBatch(AssetType[] calldata _type, uint256[] calldata _count) external payable requireOpen { uint256 inputlines = _type.length; require(inputlines == _count.length, "Both input arrays need to be the same length."); uint256 curPriceWei = priceWei(); require(msg.value >= curPriceWei, "You need to send enough currency to actually pay at least one item."); // Determine actual price of items to buy. uint256 payAmount = 0; uint256[] memory ids = new uint256[](inputlines); for (uint256 i = 0; i < inputlines; i++) { payAmount = payAmount.add(_count[i].mul(curPriceWei)); ids[i] = uint256(_type[i]); assetSupply[ids[i]] = assetSupply[ids[i]].add(_count[i]); assetSold[ids[i]] = assetSold[ids[i]].add(_count[i]); // If any asset in the batch would go over the limit, fail the whole transaction. require(assetSold[ids[i]] <= limitPerType, "At least one requested asset is sold out."); } require(msg.value >= payAmount, "You need to send enough currency to actually pay all specified items."); // Transfer the actual payment amount to the beneficiary. beneficiary.transfer(payAmount); // Generate and assign the actual assets. _mintBatch(msg.sender, ids, _count, bytes("")); // Send back change money. Do this last. if (msg.value > payAmount) { msg.sender.transfer(msg.value.sub(payAmount)); } } // Redeem assets of a multiple types/animals at once. // This burns them in this contract, but should be called by a contract that assigns/creates the final assets in turn. function redeemBatch(address owner, AssetType[] calldata _type, uint256[] calldata _count) external onlyRedeemer { uint256 inputlines = _type.length; require(inputlines == _count.length, "Both input arrays need to be the same length."); uint256[] memory ids = new uint256[](inputlines); for (uint256 i = 0; i < inputlines; i++) { ids[i] = uint256(_type[i]); assetSupply[ids[i]] = assetSupply[ids[i]].sub(_count[i]); } _burnBatch(owner, ids, _count); } // Returns whether the specified token exists. function exists(uint256 id) public view returns (bool) { return _exists(id); } /*** Enable reverse ENS registration ***/ // Call this with the address of the reverse registrar for the respecitve network and the ENS name to register. // The reverse registrar can be found as the owner of 'addr.reverse' in the ENS system. // For Mainnet, the address needed is 0x9062c0a6dbd6108336bcbe4593a3d1ce05512069 function registerReverseENS(address _reverseRegistrarAddress, string calldata _name) external onlyTokenAssignmentControl { require(_reverseRegistrarAddress != address(0), "need a valid reverse registrar"); ENSReverseRegistrarI(_reverseRegistrarAddress).setName(_name); } /*** Make sure currency or NFT doesn't get stranded in this contract ***/ // If this contract gets a balance in some ERC20 contract after it's finished, then we can rescue it. function rescueToken(IERC20 _foreignToken, address _to) external onlyTokenAssignmentControl { _foreignToken.transfer(_to, _foreignToken.balanceOf(address(this))); } // If this contract gets a balance in some ERC721 contract after it's finished, then we can rescue it. function approveNFTrescue(IERC721 _foreignNFT, address _to) external onlyTokenAssignmentControl { _foreignNFT.setApprovalForAll(_to, true); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract OracleRequest","name":"_oracle","type":"address"},{"internalType":"uint256","name":"_priceEurCent","type":"uint256"},{"internalType":"uint256","name":"_limitPerType","type":"uint256"},{"internalType":"address payable","name":"_beneficiary","type":"address"},{"internalType":"address","name":"_tokenAssignmentControl","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousBeneficiary","type":"address"},{"indexed":true,"internalType":"address","name":"newBeneficiary","type":"address"}],"name":"BeneficiaryTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"directPayContract","type":"address"}],"name":"DirectPayDeployed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"previousLimitPerType","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newLimitPerType","type":"uint256"}],"name":"LimitChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOracle","type":"address"},{"indexed":true,"internalType":"address","name":"newOracle","type":"address"}],"name":"OracleChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"previousPriceEurCent","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newPriceEurCent","type":"uint256"}],"name":"PriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousRedeemer","type":"address"},{"indexed":true,"internalType":"address","name":"newRedeemer","type":"address"}],"name":"RedeemerTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"ShopClosed","type":"event"},{"anonymous":false,"inputs":[],"name":"ShopOpened","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousTokenAssignmentControl","type":"address"},{"indexed":true,"internalType":"address","name":"newTokenAssignmentControl","type":"address"}],"name":"TokenAssignmentControlTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"contract IERC721","name":"_foreignNFT","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"approveNFTrescue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"assetSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"assetSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum CS2PresaleIBuyDP.AssetType","name":"_type","type":"uint8"}],"name":"availableForSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beneficiary","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum CS2PresaleIBuyDP.AssetType","name":"_type","type":"uint8"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"enum CS2PresaleIBuyDP.AssetType","name":"_type","type":"uint8"},{"internalType":"address payable","name":"_recipient","type":"address"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"enum CS2PresaleIBuyDP.AssetType[]","name":"_type","type":"uint8[]"},{"internalType":"uint256[]","name":"_count","type":"uint256[]"}],"name":"buyBatch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"closeShop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deployDP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"directPay","outputs":[{"internalType":"contract CS2PresaleDirectPay","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum CS2PresaleIBuyDP.AssetType","name":"_type","type":"uint8"}],"name":"isSoldOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitPerType","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openShop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"priceEurCent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"enum CS2PresaleIBuyDP.AssetType[]","name":"_type","type":"uint8[]"},{"internalType":"uint256[]","name":"_count","type":"uint256[]"}],"name":"redeemBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"redeemer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_reverseRegistrarAddress","type":"address"},{"internalType":"string","name":"_name","type":"string"}],"name":"registerReverseENS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_foreignToken","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"rescueToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimitPerType","type":"uint256"}],"name":"setLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract OracleRequest","name":"_newOracle","type":"address"}],"name":"setOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPriceEurCent","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenAssignmentControl","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newBeneficiary","type":"address"}],"name":"transferBeneficiary","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newRedeemer","type":"address"}],"name":"transferRedeemer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newTokenAssignmentControl","type":"address"}],"name":"transferTokenAssignmentControl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526017805460ff191660011790553480156200001e57600080fd5b506040516200532238038062005322833981810160405260a08110156200004457600080fd5b5080516020808301516040808501516060808701516080909701518351918201909352602b808252959693959194909190620052f790830139620000986301ffc9a760e01b6001600160e01b03620002a216565b620000b3636cdb3d1360e11b6001600160e01b03620002a216565b620000c7816001600160e01b036200032716565b620000e26303a24d0760e21b6001600160e01b03620002a216565b50600580546001600160a01b0319166001600160a01b03878116919091179182905516620001425760405162461bcd60e51b815260040180806020018281038252602e81526020018062005235602e913960400191505060405180910390fd5b600680546001600160a01b0319166001600160a01b03848116919091179182905516620001a15760405162461bcd60e51b8152600401808060200182810382526032815260200180620052c56032913960400191505060405180910390fd5b600780546001600160a01b0319166001600160a01b03838116919091179182905516620002005760405162461bcd60e51b815260040180806020018281038252603d81526020018062005263603d913960400191505060405180910390fd5b600754600880546001600160a01b0319166001600160a01b03909216919091179055600984905583620002655760405162461bcd60e51b8152600401808060200182810382526025815260200180620052a06025913960400191505060405180910390fd5b600a839055600460005b8181101562000295576200028c816001600160e01b03620003f316565b6001016200026f565b50505050505050620004b3565b6001600160e01b0319808216141562000302576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b80516200033c9060049060208401906200040e565b5060408051602080825260048054600260001961010060018416150201909116049183018290526000937f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b939192829182019084908015620003e25780601f10620003b657610100808354040283529160200191620003e2565b820191906000526020600020905b815481529060010190602001808311620003c457829003601f168201915b50509250505060405180910390a250565b6000908152600360205260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200045157805160ff191683800117855562000481565b8280016001018555821562000481579182015b828111156200048157825182559160200191906001019062000464565b506200048f92915062000493565b5090565b620004b091905b808211156200048f57600081556001016200049a565b90565b614d7280620004c36000396000f3fe608060405260043610620002715760003560e01c8063675751c5116200014b578063a6f5a22b11620000bb578063dcf8b0281162000079578063dcf8b0281462000d97578063dd48f7741462000dc5578063e4f10cc61462000e04578063e985e9c51462000e1c578063f242432a1462000e5b5762000271565b8063a6f5a22b1462000c51578063b3ccfca61462000c69578063b7ec20861462000d30578063c8c2ed541462000d48578063d0763c951462000d605762000271565b80639106d7ba11620001095780639106d7ba1462000b7d57806391b7f5ed1462000b955780639b6dbc8a1462000bc35780639c5482bd1462000bdb578063a22cb4651462000c125762000271565b8063675751c514620008e5578063750521f514620009175780637adbf97314620009cf57806383b2a9c51462000a065780638e8fa11f1462000aeb5762000271565b80632ba29d3811620001e757806347535d7b11620001a557806347535d7b14620006ca5780634a1bb6b414620006e25780634e1273f414620006fa5780634f558e791462000886578063500d58e114620008b45762000271565b80632ba29d3814620005025780632eb2c2d6146200051a5780633702b725146200065b57806338af3eed14620006735780634707d000146200068b5762000271565b806318160ddd116200023557806318160ddd14620004135780631b09f87b146200042b57806322b290341462000475578063267d854614620004a657806327ea6f2b14620004d45762000271565b8062fdd58e146200027657806301ffc9a714620002c55780630e89341c146200031157806314107f3c14620003b757806314bbe21c14620003dc575b600080fd5b3480156200028357600080fd5b50620002b3600480360360408110156200029c57600080fd5b506001600160a01b03813516906020013562000f02565b60408051918252519081900360200190f35b348015620002d257600080fd5b50620002fd60048036036020811015620002eb57600080fd5b50356001600160e01b03191662000fbe565b604080519115158252519081900360200190f35b3480156200031e57600080fd5b506200033f600480360360208110156200033757600080fd5b503562000fdd565b6040805160208082528351818301528351919283929083019185019080838360005b838110156200037b57818101518382015260200162000361565b50505050905090810190601f168015620003a95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b620003da60048036036020811015620003cf57600080fd5b503560ff16620010bd565b005b348015620003e957600080fd5b50620003da600480360360208110156200040257600080fd5b50356001600160a01b031662001118565b3480156200042057600080fd5b50620002b362001206565b3480156200043857600080fd5b5062000459600480360360208110156200045157600080fd5b50356200124c565b604080516001600160a01b039092168252519081900360200190f35b3480156200048257600080fd5b50620002fd600480360360208110156200049b57600080fd5b503560ff166200126a565b348015620004b357600080fd5b50620002b360048036036020811015620004cc57600080fd5b503562001293565b348015620004e157600080fd5b50620003da60048036036020811015620004fa57600080fd5b5035620012a8565b3480156200050f57600080fd5b50620004596200139e565b3480156200052757600080fd5b50620003da600480360360a08110156200054057600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b8111156200057457600080fd5b8201836020820111156200058757600080fd5b803590602001918460208302840111600160201b83111715620005a957600080fd5b919390929091602081019035600160201b811115620005c757600080fd5b820183602082011115620005da57600080fd5b803590602001918460208302840111600160201b83111715620005fc57600080fd5b919390929091602081019035600160201b8111156200061a57600080fd5b8201836020820111156200062d57600080fd5b803590602001918460018302840111600160201b831117156200064f57600080fd5b509092509050620013ad565b3480156200066857600080fd5b50620003da6200174b565b3480156200068057600080fd5b5062000459620018ba565b3480156200069857600080fd5b50620003da60048036036040811015620006b157600080fd5b506001600160a01b0381358116916020013516620018c9565b348015620006d757600080fd5b50620002fd62001a16565b348015620006ef57600080fd5b50620002b362001a1f565b3480156200070757600080fd5b5062000834600480360360408110156200072057600080fd5b810190602081018135600160201b8111156200073b57600080fd5b8201836020820111156200074e57600080fd5b803590602001918460208302840111600160201b831117156200077057600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b811115620007c057600080fd5b820183602082011115620007d357600080fd5b803590602001918460208302840111600160201b83111715620007f557600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955062001a25945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156200087257818101518382015260200162000858565b505050509050019250505060405180910390f35b3480156200089357600080fd5b50620002fd60048036036020811015620008ac57600080fd5b503562001c0b565b348015620008c157600080fd5b50620002b360048036036020811015620008da57600080fd5b503560ff1662001c18565b620003da60048036036040811015620008fd57600080fd5b50803560ff1690602001356001600160a01b031662001c4a565b3480156200092457600080fd5b50620003da600480360360208110156200093d57600080fd5b810190602081018135600160201b8111156200095857600080fd5b8201836020820111156200096b57600080fd5b803590602001918460018302840111600160201b831117156200098d57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955062001ec3945050505050565b348015620009dc57600080fd5b50620003da60048036036020811015620009f557600080fd5b50356001600160a01b031662001f19565b34801562000a1357600080fd5b50620003da6004803603606081101562000a2c57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111562000a5757600080fd5b82018360208201111562000a6a57600080fd5b803590602001918460208302840111600160201b8311171562000a8c57600080fd5b919390929091602081019035600160201b81111562000aaa57600080fd5b82018360208201111562000abd57600080fd5b803590602001918460208302840111600160201b8311171562000adf57600080fd5b50909250905062002007565b34801562000af857600080fd5b50620003da6004803603604081101562000b1157600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111562000b3c57600080fd5b82018360208201111562000b4f57600080fd5b803590602001918460018302840111600160201b8311171562000b7157600080fd5b509092509050620021e8565b34801562000b8a57600080fd5b50620002b362002337565b34801562000ba257600080fd5b50620003da6004803603602081101562000bbb57600080fd5b503562002364565b34801562000bd057600080fd5b50620003da62002432565b34801562000be857600080fd5b50620003da6004803603602081101562000c0157600080fd5b50356001600160a01b0316620024b2565b34801562000c1f57600080fd5b50620003da6004803603604081101562000c3857600080fd5b506001600160a01b0381351690602001351515620025a0565b34801562000c5e57600080fd5b50620003da62002658565b620003da6004803603604081101562000c8157600080fd5b810190602081018135600160201b81111562000c9c57600080fd5b82018360208201111562000caf57600080fd5b803590602001918460208302840111600160201b8311171562000cd157600080fd5b919390929091602081019035600160201b81111562000cef57600080fd5b82018360208201111562000d0257600080fd5b803590602001918460208302840111600160201b8311171562000d2457600080fd5b509092509050620026db565b34801562000d3d57600080fd5b50620002b362002acd565b34801562000d5557600080fd5b506200045962002b78565b34801562000d6d57600080fd5b50620003da6004803603602081101562000d8657600080fd5b50356001600160a01b031662002b87565b34801562000da457600080fd5b50620002b36004803603602081101562000dbd57600080fd5b503562002c75565b34801562000dd257600080fd5b50620003da6004803603604081101562000deb57600080fd5b506001600160a01b038135811691602001351662002c83565b34801562000e1157600080fd5b50620002b362002d36565b34801562000e2957600080fd5b50620002fd6004803603604081101562000e4257600080fd5b506001600160a01b038135811691602001351662002d3c565b34801562000e6857600080fd5b50620003da600480360360a081101562000e8157600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b81111562000ec157600080fd5b82018360208201111562000ed457600080fd5b803590602001918460018302840111600160201b8311171562000ef657600080fd5b50909250905062002d6a565b60006001600160a01b03831662000f4b5760405162461bcd60e51b815260040180806020018281038252602b815260200180620046ed602b913960400191505060405180910390fd5b62000f568262002f48565b62000f935760405162461bcd60e51b815260040180806020018281038252602c81526020018062004abd602c913960400191505060405180910390fd5b5060008181526001602090815260408083206001600160a01b03861684529091529020545b92915050565b6001600160e01b03191660009081526020819052604090205460ff1690565b606062000fea8262002f48565b620010275760405162461bcd60e51b8152600401808060200182810382526033815260200180620048006033913960400191505060405180910390fd5b6004805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015620010b15780601f106200108557610100808354040283529160200191620010b1565b820191906000526020600020905b8154815290600101906020018083116200109357829003601f168201915b50505050509050919050565b620010c762001a16565b1515600114620011095760405162461bcd60e51b815260040180806020018281038252602e81526020018062004751602e913960400191505060405180910390fd5b62001115813362001c4a565b50565b6006546001600160a01b03163314620011635760405162461bcd60e51b8152600401808060200182810382526035815260200180620047a76035913960400191505060405180910390fd5b6001600160a01b038116620011aa5760405162461bcd60e51b8152600401808060200182810382526027815260200180620046c66027913960400191505060405180910390fd5b6006546040516001600160a01b038084169216907f57005c5083fa0952870a7906715a2f6f9ef2d01b4a423e4b3ce59c6129b1a76390600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6000806004815b81811015620012435762001238600b82600481106200122857fe5b0154849063ffffffff62002f5d16565b92506001016200120d565b50909150505b90565b601381600481106200125a57fe5b01546001600160a01b0316905081565b6000600a54600f8360038111156200127e57fe5b600481106200128957fe5b0154101592915050565b600b8160048110620012a157fe5b0154905081565b6006546001600160a01b03163314620012f35760405162461bcd60e51b8152600401808060200182810382526035815260200180620047a76035913960400191505060405180910390fd5b600460005b818110156200135a5782600f82600481106200131057fe5b01541115620013515760405162461bcd60e51b815260040180806020018281038252604181526020018062004c6d6041913960600191505060405180910390fd5b600101620012f8565b50600a54604080519182526020820184905280517fb60cc7dc67f7eca3662ae255cd7c76bb80b4229692532f6af8851a2a119e6b859281900390910190a150600a55565b6008546001600160a01b031681565b848314620013ed5760405162461bcd60e51b815260040180806020018281038252602e81526020018062004b56602e913960400191505060405180910390fd5b6001600160a01b038716620014345760405162461bcd60e51b81526004018080602001828103825260288152602001806200477f6028913960400191505060405180910390fd5b6001600160a01b03881633148062001459575062001453883362002d3c565b15156001145b620014965760405162461bcd60e51b815260040180806020018281038252603781526020018062004b1f6037913960400191505060405180910390fd5b60005b85811015620015e9576000878783818110620014b157fe5b9050602002013590506000868684818110620014c957fe5b90506020020135905062001538816040518060600160405280603d815260200162004ccf603d91396001600086815260200190815260200160002060008f6001600160a01b03166001600160a01b031681526020019081526020016000205462002fbf9092919063ffffffff16565b6001600084815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002081905550620015bd816001600085815260200190815260200160002060008d6001600160a01b03166001600160a01b031681526020019081526020016000205462002f5d90919063ffffffff16565b60009283526001602081815260408086206001600160a01b038f16875290915290932055500162001499565b50866001600160a01b0316886001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb898989896040518080602001806020018381038352878782818152602001925060200280828437600083820152601f01601f19169091018481038352858152602090810191508690860280828437600083820152604051601f909101601f19169092018290039850909650505050505050a46200174133898989898080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808d0282810182019093528c82529093508c92508b91829185019084908082843760009201919091525050604080516020601f8c018190048102820181019092528a815292508a91508990819084018382808284376000920191909152506200305a92505050565b5050505050505050565b600460005b81811015620018b6576000601382600481106200176957fe5b01546001600160a01b031614620017b25760405162461bcd60e51b815260040180806020018281038252603081526020018062004bb96030913960400191505060405180910390fd5b30816003811115620017c057fe5b6007546040516001600160a01b0390911690620017dd9062003c45565b6001600160a01b038416815260208101836003811115620017fa57fe5b60ff1681526001600160a01b03909216602083015250604080519182900301925090506000f08015801562001833573d6000803e3d6000fd5b50601382600481106200184257fe5b0180546001600160a01b0319166001600160a01b03929092169190911790557ff49d891b6b0a8a74953f1d2a01dc5444d1bfa37092dec70b352eac0fe4651312601382600481106200189057fe5b0154604080516001600160a01b039092168252519081900360200190a160010162001750565b5050565b6006546001600160a01b031681565b6007546001600160a01b03163314620019145760405162461bcd60e51b815260040180806020018281038252603681526020018062004ae96036913960400191505060405180910390fd5b604080516370a0823160e01b815230600482015290516001600160a01b0384169163a9059cbb91849184916370a0823191602480820192602092909190829003018186803b1580156200196657600080fd5b505afa1580156200197b573d6000803e3d6000fd5b505050506040513d60208110156200199257600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b03909316600484015260248301919091525160448083019260209291908290030181600087803b158015620019e457600080fd5b505af1158015620019f9573d6000803e3d6000fd5b505050506040513d602081101562001a1057600080fd5b50505050565b60175460ff1690565b60095481565b6060815183511462001a695760405162461bcd60e51b8152600401808060200182810382526030815260200180620048a46030913960400191505060405180910390fd5b6060835167ffffffffffffffff8111801562001a8457600080fd5b5060405190808252806020026020018201604052801562001aaf578160200160208202803683370190505b50905060005b845181101562001c035760006001600160a01b031685828151811062001ad757fe5b60200260200101516001600160a01b0316141562001b275760405162461bcd60e51b8152600401808060200182810382526034815260200180620049d56034913960400191505060405180910390fd5b62001b4684828151811062001b3857fe5b602002602001015162002f48565b62001b835760405162461bcd60e51b8152600401808060200182810382526039815260200180620047186039913960400191505060405180910390fd5b6001600085838151811062001b9457fe5b60200260200101518152602001908152602001600020600086838151811062001bb957fe5b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000205482828151811062001bef57fe5b602090810291909101015260010162001ab5565b509392505050565b600062000fb88262002f48565b600062000fb8600f83600381111562001c2d57fe5b6004811062001c3857fe5b0154600a549063ffffffff6200326c16565b62001c5462001a16565b151560011462001c965760405162461bcd60e51b815260040180806020018281038252602e81526020018062004751602e913960400191505060405180910390fd5b600062001ca262002acd565b90508034101562001ce55760405162461bcd60e51b81526004018080602001828103825260438152602001806200492f6043913960600191505060405180910390fd5b600062001cfa600f85600381111562001c2d57fe5b90506000811162001d52576040805162461bcd60e51b815260206004820181905260248201527f5468652072657175657374656420617373657420697320736f6c64206f75742e604482015290519081900360640190fd5b600062001d66348463ffffffff620032b016565b90508181111562001d745750805b600062001d88828563ffffffff620032f416565b6006546040519192506001600160a01b03169082156108fc029083906000818181858888f1935050505015801562001dc4573d6000803e3d6000fd5b5062001dee8587600381111562001dd757fe5b846040518060200160405280600081525062003352565b62001e1c82600b88600381111562001e0257fe5b6004811062001e0d57fe5b01549063ffffffff62002f5d16565b600b87600381111562001e2b57fe5b6004811062001e3657fe5b015562001e4c82600f88600381111562001e0257fe5b600f87600381111562001e5b57fe5b6004811062001e6657fe5b01553481101562001ebb576001600160a01b0385166108fc62001e90348463ffffffff6200326c16565b6040518115909202916000818181858888f1935050505015801562001eb9573d6000803e3d6000fd5b505b505050505050565b6006546001600160a01b0316331462001f0e5760405162461bcd60e51b8152600401808060200182810382526035815260200180620047a76035913960400191505060405180910390fd5b62001115816200345a565b6006546001600160a01b0316331462001f645760405162461bcd60e51b8152600401808060200182810382526035815260200180620047a76035913960400191505060405180910390fd5b6001600160a01b03811662001fab5760405162461bcd60e51b815260040180806020018281038252602e8152602001806200465d602e913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f05cd89403c6bdeac21c2ff33de395121a31fa1bc2bf3adf4825f1f86e79969dd90600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314620020525760405162461bcd60e51b8152600401808060200182810382526031815260200180620049a46031913960400191505060405180910390fd5b82818114620020935760405162461bcd60e51b815260040180806020018281038252602d81526020018062004a90602d913960400191505060405180910390fd5b60608167ffffffffffffffff81118015620020ad57600080fd5b50604051908082528060200260200182016040528015620020d8578160200160208202803683370190505b50905060005b82811015620021a757868682818110620020f457fe5b905060200201356003811180156200210b57600080fd5b5060038111156200211857fe5b8282815181106200212557fe5b6020026020010181815250506200217a8585838181106200214257fe5b90506020020135600b8484815181106200215857fe5b6020026020010151600481106200216b57fe5b01549063ffffffff6200326c16565b600b8383815181106200218957fe5b6020026020010151600481106200219c57fe5b0155600101620020de565b5062001eb987828686808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506200352692505050565b6007546001600160a01b03163314620022335760405162461bcd60e51b815260040180806020018281038252603681526020018062004ae96036913960400191505060405180910390fd5b6001600160a01b0383166200228f576040805162461bcd60e51b815260206004820152601e60248201527f6e65656420612076616c69642072657665727365207265676973747261720000604482015290519081900360640190fd5b60405163c47f002760e01b8152602060048201908152602482018390526001600160a01b0385169163c47f00279185918591908190604401848480828437600081840152601f19601f8201169050808301925050509350505050602060405180830381600087803b1580156200230457600080fd5b505af115801562002319573d6000803e3d6000fd5b505050506040513d60208110156200233057600080fd5b5050505050565b6000806004815b81811015620012435762002359600f82600481106200122857fe5b92506001016200233e565b6006546001600160a01b03163314620023af5760405162461bcd60e51b8152600401808060200182810382526035815260200180620047a76035913960400191505060405180910390fd5b60008111620023f05760405162461bcd60e51b81526004018080602001828103825260258152602001806200490a6025913960400191505060405180910390fd5b600954604080519182526020820183905280517f8aa4fa52648a6d15edce8a179c792c86f3719d0cc3c572cf90f91948f0f2cb689281900390910190a1600955565b6006546001600160a01b031633146200247d5760405162461bcd60e51b8152600401808060200182810382526035815260200180620047a76035913960400191505060405180910390fd5b6017805460ff191690556040517f589bfff7e7b59e33b97fa923dbc99256a6d2fdf9a631b431fa2dc06f4eea0ded90600090a1565b6008546001600160a01b03163314620024fd5760405162461bcd60e51b8152600401808060200182810382526031815260200180620049a46031913960400191505060405180910390fd5b6001600160a01b038116620025445760405162461bcd60e51b8152600401808060200182810382526024815260200180620047dc6024913960400191505060405180910390fd5b6008546040516001600160a01b038084169216907fa80b924d494425fa26be1379ca75e903eb655fcdfb9ae5a76c7a72e529d6a1b790600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b336001600160a01b0383161415620025ea5760405162461bcd60e51b815260040180806020018281038252602c81526020018062004833602c913960400191505060405180910390fd5b3360008181526002602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b6006546001600160a01b03163314620026a35760405162461bcd60e51b8152600401808060200182810382526035815260200180620047a76035913960400191505060405180910390fd5b6017805460ff191660011790556040517f60630afaadc252b436ca4fb961ec5837f6a34e3aebf89df68f3e0745d8c50a8690600090a1565b620026e562001a16565b1515600114620027275760405162461bcd60e51b815260040180806020018281038252602e81526020018062004751602e913960400191505060405180910390fd5b82818114620027685760405162461bcd60e51b815260040180806020018281038252602d81526020018062004a90602d913960400191505060405180910390fd5b60006200277462002acd565b905080341015620027b75760405162461bcd60e51b81526004018080602001828103825260438152602001806200492f6043913960600191505060405180910390fd5b600060608367ffffffffffffffff81118015620027d357600080fd5b50604051908082528060200260200182016040528015620027fe578160200160208202803683370190505b50905060005b84811015620029ae576200284762002839858989858181106200282357fe5b90506020020135620032f490919063ffffffff16565b849063ffffffff62002f5d16565b92508888828181106200285657fe5b905060200201356003811180156200286d57600080fd5b5060038111156200287a57fe5b8282815181106200288757fe5b602002602001018181525050620028cd878783818110620028a457fe5b90506020020135600b848481518110620028ba57fe5b60200260200101516004811062001e0d57fe5b600b838381518110620028dc57fe5b602002602001015160048110620028ef57fe5b0155620029188787838181106200290257fe5b90506020020135600f848481518110620028ba57fe5b600f8383815181106200292757fe5b6020026020010151600481106200293a57fe5b0181905550600a54600f8383815181106200295157fe5b6020026020010151600481106200296457fe5b01541115620029a55760405162461bcd60e51b815260040180806020018281038252602981526020018062004c1d6029913960400191505060405180910390fd5b60010162002804565b5081341015620029f05760405162461bcd60e51b81526004018080602001828103825260458152602001806200485f6045913960600191505060405180910390fd5b6006546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801562002a2b573d6000803e3d6000fd5b5062002a7a338288888080602002602001604051908101604052809392919081815260200183836020028082843760009201829052506040805160208101909152908152925062003779915050565b813411156200174157336108fc62002a99348563ffffffff6200326c16565b6040518115909202916000818181858888f1935050505015801562002ac2573d6000803e3d6000fd5b505050505050505050565b600062002b73606462002b66600560009054906101000a90046001600160a01b03166001600160a01b03166354a4adc26040518163ffffffff1660e01b815260040160206040518083038186803b15801562002b2857600080fd5b505afa15801562002b3d573d6000803e3d6000fd5b505050506040513d602081101562002b5457600080fd5b50516009549063ffffffff620032f416565b9063ffffffff620032b016565b905090565b6007546001600160a01b031681565b6007546001600160a01b0316331462002bd25760405162461bcd60e51b815260040180806020018281038252603681526020018062004ae96036913960400191505060405180910390fd5b6001600160a01b03811662002c195760405162461bcd60e51b8152600401808060200182810382526032815260200180620049726032913960400191505060405180910390fd5b6007546040516001600160a01b038084169216907fe74ad8e35ae0d7f4389ff1318666007250321a66dd644dca021b5e2e30fa2a5c90600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600f8160048110620012a157fe5b6007546001600160a01b0316331462002cce5760405162461bcd60e51b815260040180806020018281038252603681526020018062004ae96036913960400191505060405180910390fd5b6040805163a22cb46560e01b81526001600160a01b0383811660048301526001602483015291519184169163a22cb4659160448082019260009290919082900301818387803b15801562002d2157600080fd5b505af115801562001ebb573d6000803e3d6000fd5b600a5481565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b6001600160a01b03851662002db15760405162461bcd60e51b81526004018080602001828103825260288152602001806200477f6028913960400191505060405180910390fd5b6001600160a01b03861633148062002dd6575062002dd0863362002d3c565b15156001145b62002e135760405162461bcd60e51b815260040180806020018281038252603781526020018062004b1f6037913960400191505060405180910390fd5b62002e63836040518060600160405280602a815260200162004a09602a913960008781526001602090815260408083206001600160a01b038d168452909152902054919063ffffffff62002fbf16565b60008581526001602090815260408083206001600160a01b038b8116855292528083209390935587168152205462002e9c908462002f5d565b60008581526001602090815260408083206001600160a01b03808b16808652918452938290209490945580518881529182018790528051928a169233927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a462001ebb338787878787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250620039f292505050565b60009081526003602052604090205460ff1690565b60008282018381101562002fb8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60008184841115620030525760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200301657818101518382015260200162002ffc565b50505050905090810190601f168015620030445780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6200306e846001600160a01b031662003b84565b1562001ebb5763bc197c8160e01b6001600160e01b031916846001600160a01b031663bc197c8188888787876040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b838110156200312357818101518382015260200162003109565b50505050905001848103835286818151815260200191508051906020019060200280838360005b83811015620031645781810151838201526020016200314a565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015620031a257818101518382015260200162003188565b50505050905090810190601f168015620031d05780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015620031f657600080fd5b505af11580156200320b573d6000803e3d6000fd5b505050506040513d60208110156200322257600080fd5b50516001600160e01b0319161462001ebb5760405162461bcd60e51b8152600401808060200182810382526036815260200180620048d46036913960400191505060405180910390fd5b600062002fb883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525062002fbf565b600062002fb883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525062003bc1565b600082620033055750600062000fb8565b828202828482816200331357fe5b041462002fb85760405162461bcd60e51b815260040180806020018281038252602181526020018062004a336021913960400191505060405180910390fd5b6001600160a01b038416620033995760405162461bcd60e51b815260040180806020018281038252602181526020018062004cae6021913960400191505060405180910390fd5b620033a48362002f48565b620033b457620033b48362003c2a565b60008381526001602090815260408083206001600160a01b0388168452909152902054620033e9908363ffffffff62002f5d16565b60008481526001602090815260408083206001600160a01b038916808552908352818420949094558051878152918201869052805133927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a462001a1033600086868686620039f2565b80516200346f90600490602084019062003c53565b5060408051602080825260048054600260001961010060018416150201909116049183018290526000937f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b939192829182019084908015620035155780601f10620034e95761010080835404028352916020019162003515565b820191906000526020600020905b815481529060010190602001808311620034f757829003601f168201915b50509250505060405180910390a250565b6001600160a01b0383166200356d5760405162461bcd60e51b815260040180806020018281038252603b8152602001806200468b603b913960400191505060405180910390fd5b8051825114620035af5760405162461bcd60e51b815260040180806020018281038252603481526020018062004be96034913960400191505060405180910390fd5b60005b825181101562003695576200364a828281518110620035cd57fe5b60200260200101516040518060600160405280603c815260200162004a54603c9139600160008786815181106200360057fe5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000205462002fbf9092919063ffffffff16565b600160008584815181106200365b57fe5b602090810291909101810151825281810192909252604090810160009081206001600160a01b0389168252909252902055600101620035b2565b5060006001600160a01b0316836001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8585604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156200371e57818101518382015260200162003704565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156200375f57818101518382015260200162003745565b5050505090500194505050505060405180910390a4505050565b6001600160a01b038416620037c05760405162461bcd60e51b815260040180806020018281038252602781526020018062004c466027913960400191505060405180910390fd5b8151835114620038025760405162461bcd60e51b815260040180806020018281038252603581526020018062004b846035913960400191505060405180910390fd5b60005b835181101562003902576200382084828151811062001b3857fe5b6200384457620038448482815181106200383657fe5b602002602001015162003c2a565b620038b7600160008684815181106200385957fe5b602002602001015181526020019081526020016000206000876001600160a01b03166001600160a01b0316815260200190815260200160002054848381518110620038a057fe5b602002602001015162002f5d90919063ffffffff16565b60016000868481518110620038c857fe5b602090810291909101810151825281810192909252604090810160009081206001600160a01b038a16825290925290205560010162003805565b50836001600160a01b031660006001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156200398b57818101518382015260200162003971565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015620039cc578181015183820152602001620039b2565b5050505090500194505050505060405180910390a462001a10336000868686866200305a565b62003a06846001600160a01b031662003b84565b1562001ebb5763f23a6e6160e01b6001600160e01b031916846001600160a01b031663f23a6e6188888787876040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101562003abc57818101518382015260200162003aa2565b50505050905090810190601f16801562003aea5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15801562003b0e57600080fd5b505af115801562003b23573d6000803e3d6000fd5b505050506040513d602081101562003b3a57600080fd5b50516001600160e01b0319161462001ebb5760405162461bcd60e51b815260040180806020018281038252603181526020018062004d0c6031913960400191505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159062003bb957508115155b949350505050565b6000818362003c135760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156200301657818101518382015260200162002ffc565b50600083858162003c2057fe5b0495945050505050565b6000908152600360205260409020805460ff19166001179055565b6109678062003cf683390190565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062003c9657805160ff191683800117855562003cc6565b8280016001018555821562003cc6579182015b8281111562003cc657825182559160200191906001019062003ca9565b5062003cd492915062003cd8565b5090565b6200124991905b8082111562003cd4576000815560010162003cdf56fe608060405234801561001057600080fd5b506040516109673803806109678339818101604052606081101561003357600080fd5b5080516020820151604090920151600180546001600160a01b0319166001600160a01b038085169190911791829055929392166100a15760405162461bcd60e51b815260040180806020018281038252602f815260200180610938602f913960400191505060405180910390fd5b6001805483919060ff60a01b1916600160a01b8360038111156100c057fe5b0217905550600080546001600160a01b0319166001600160a01b038381169190911791829055166101225760405162461bcd60e51b815260040180806020018281038252603d8152602001806108fb603d913960400191505060405180910390fd5b5050506107c7806101346000396000f3fe6080604052600436106100745760003560e01c8063c8c2ed541161004e578063c8c2ed5414610219578063d0763c951461024a578063dd48f7741461027d578063fdea8e0b146102b857610111565b80633fe3347a146101165780634707d0001461014f5780638e8fa11f1461018c57610111565b366101115760015460405163675751c560e01b81526001600160a01b0382169163675751c5913491600160a01b900460ff16903390600401808360038111156100b957fe5b60ff168152602001826001600160a01b03166001600160a01b03168152602001925050506000604051808303818588803b1580156100f657600080fd5b505af115801561010a573d6000803e3d6000fd5b5050505050005b600080fd5b34801561012257600080fd5b5061012b6102cd565b6040518082600381111561013b57fe5b60ff16815260200191505060405180910390f35b34801561015b57600080fd5b5061018a6004803603604081101561017257600080fd5b506001600160a01b03813581169160200135166102dd565b005b34801561019857600080fd5b5061018a600480360360408110156101af57600080fd5b6001600160a01b0382351691908101906040810160208201356401000000008111156101da57600080fd5b8201836020820111156101ec57600080fd5b8035906020019184600183028401116401000000008311171561020e57600080fd5b509092509050610422565b34801561022557600080fd5b5061022e61056b565b604080516001600160a01b039092168252519081900360200190f35b34801561025657600080fd5b5061018a6004803603602081101561026d57600080fd5b50356001600160a01b031661057a565b34801561028957600080fd5b5061018a600480360360408110156102a057600080fd5b506001600160a01b0381358116916020013516610663565b3480156102c457600080fd5b5061022e61071a565b600154600160a01b900460ff1681565b6000546001600160a01b031633146103265760405162461bcd60e51b815260040180806020018281038252603681526020018061075c6036913960400191505060405180910390fd5b604080516370a0823160e01b815230600482015290516001600160a01b0384169163a9059cbb91849184916370a0823191602480820192602092909190829003018186803b15801561037757600080fd5b505afa15801561038b573d6000803e3d6000fd5b505050506040513d60208110156103a157600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b03909316600484015260248301919091525160448083019260209291908290030181600087803b1580156103f257600080fd5b505af1158015610406573d6000803e3d6000fd5b505050506040513d602081101561041c57600080fd5b50505050565b6000546001600160a01b0316331461046b5760405162461bcd60e51b815260040180806020018281038252603681526020018061075c6036913960400191505060405180910390fd5b6001600160a01b0383166104c6576040805162461bcd60e51b815260206004820152601e60248201527f6e65656420612076616c69642072657665727365207265676973747261720000604482015290519081900360640190fd5b60405163c47f002760e01b8152602060048201908152602482018390526001600160a01b0385169163c47f00279185918591908190604401848480828437600081840152601f19601f8201169050808301925050509350505050602060405180830381600087803b15801561053a57600080fd5b505af115801561054e573d6000803e3d6000fd5b505050506040513d602081101561056457600080fd5b5050505050565b6000546001600160a01b031681565b6000546001600160a01b031633146105c35760405162461bcd60e51b815260040180806020018281038252603681526020018061075c6036913960400191505060405180910390fd5b6001600160a01b0381166106085760405162461bcd60e51b815260040180806020018281038252603281526020018061072a6032913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917fe74ad8e35ae0d7f4389ff1318666007250321a66dd644dca021b5e2e30fa2a5c91a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146106ac5760405162461bcd60e51b815260040180806020018281038252603681526020018061075c6036913960400191505060405180910390fd5b6040805163a22cb46560e01b81526001600160a01b0383811660048301526001602483015291519184169163a22cb4659160448082019260009290919082900301818387803b1580156106fe57600080fd5b505af1158015610712573d6000803e3d6000fd5b505050505050565b6001546001600160a01b03168156fe746f6b656e41737369676e6d656e74436f6e74726f6c2063616e6e6f7420626520746865207a65726f20616464726573732e746f6b656e41737369676e6d656e74436f6e74726f6c206b657920726571756972656420666f7220746869732066756e6374696f6e2ea264697066735822122075ba3a2912e276a05616350da20b41cddfd576c9d548d741393d2450e611c28464736f6c63430006060033596f75206e65656420746f2070726f7669646520616e2061637475616c20746f6b656e41737369676e6d656e74436f6e74726f6c20616464726573732e596f75206e65656420746f2070726f7669646520616e2061637475616c2070726573616c6520636f6e74726163742e596f75206e65656420746f2070726f7669646520616e2061637475616c204f7261636c6520636f6e74726163742e455243313135353a20617474656d7074696e6720746f206275726e206261746368206f6620746f6b656e73206f6e207a65726f206163636f756e7462656e65666963696172792063616e6e6f7420626520746865207a65726f20616464726573732e455243313135353a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243313135353a20736f6d6520746f6b656e20696e2062617463682062616c616e636520717565727920646f6573206e6f74206578697374546869732063616c6c206f6e6c7920776f726b73207768656e207468652070726573616c65206973206f70656e2e455243313135353a207461726765742061646472657373206d757374206265206e6f6e2d7a65726f4f6e6c79207468652063757272656e742062656e6566696e69636172792063616e2063616c6c20746869732066756e6374696f6e2e72656465656d65722063616e6e6f7420626520746865207a65726f20616464726573732e455243313135354d657461646174615552493a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e455243313135353a2063616e6e6f742073657420617070726f76616c2073746174757320666f722073656c66596f75206e65656420746f2073656e6420656e6f7567682063757272656e637920746f2061637475616c6c792070617920616c6c20737065636966696564206974656d732e455243313135353a206163636f756e747320616e6420494473206d75737420686176652073616d65206c656e67746873455243313135353a20676f7420756e6b6e6f776e2076616c75652066726f6d206f6e4552433131353542617463685265636569766564596f75206e65656420746f2070726f766964652061206e6f6e2d7a65726f2070726963652e596f75206e65656420746f2073656e6420656e6f7567682063757272656e637920746f2061637475616c6c7920706179206174206c65617374206f6e65206974656d2e746f6b656e41737369676e6d656e74436f6e74726f6c2063616e6e6f7420626520746865207a65726f20616464726573732e4f6e6c79207468652063757272656e742072656465656d65722063616e2063616c6c20746869732066756e6374696f6e2e455243313135353a20736f6d65206164647265737320696e2062617463682062616c616e6365207175657279206973207a65726f455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e73666572536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77455243313135353a20617474656d7074696e6720746f206275726e206d6f7265207468616e2062616c616e636520666f7220736f6d6520746f6b656e426f746820696e70757420617272617973206e65656420746f206265207468652073616d65206c656e6774682e455243313135353a2062616c616e636520717565727920666f72206e6f6e6578697374656e7420746f6b656e746f6b656e41737369676e6d656e74436f6e74726f6c206b657920726571756972656420666f7220746869732066756e6374696f6e2e455243313135353a206e656564206f70657261746f7220617070726f76616c20666f7220337264207061727479207472616e7366657273455243313135353a2049447320616e642076616c756573206d75737420686176652073616d65206c656e67746873455243313135353a206d696e7465642049447320616e642076616c756573206d75737420686176652073616d65206c656e677468736469726563742d70617920636f6e747261637473206861766520616c7265616479206265656e206465706c6f7965642e455243313135353a206275726e742049447320616e642076616c756573206d75737420686176652073616d65206c656e677468734174206c65617374206f6e652072657175657374656420617373657420697320736f6c64206f75742e455243313135353a206261746368206d696e7420746f20746865207a65726f20616464726573734174206c65617374206f6e652072657175657374656420617373657420697320616c7265616479206f7665722074686520726571756573746564206c696d69742e455243313135353a206d696e7420746f20746865207a65726f2061646472657373455243313135353a20696e73756666696369656e742062616c616e6365206f6620736f6d6520746f6b656e207479706520666f72207472616e73666572455243313135353a20676f7420756e6b6e6f776e2076616c75652066726f6d206f6e455243313135355265636569766564a2646970667358221220e530b4a1f5eb2232b21aaac217af56dac744980c9da31d315691c0f0d0efb9bb64736f6c63430006060033596f75206e65656420746f2070726f7669646520616e2061637475616c204f7261636c6520636f6e74726163742e596f75206e65656420746f2070726f7669646520616e2061637475616c20746f6b656e41737369676e6d656e74436f6e74726f6c20616464726573732e596f75206e65656420746f2070726f766964652061206e6f6e2d7a65726f2070726963652e596f75206e65656420746f2070726f7669646520616e2061637475616c2062656e656669636961727920616464726573732e68747470733a2f2f746573742e63727970746f2e706f73742e61742f43533250532f6d6574612f7b69647d0000000000000000000000001863d1351fc3003f1ad361939248e3a3a114958e00000000000000000000000000000000000000000000000000000000000002bc00000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000cebb9ae52a3d61c4ed1528fba93e5beaaa40e9e2000000000000000000000000596e620e175c2c37a5f35a41d9f2305a991ffc89
Deployed Bytecode
0x608060405260043610620002715760003560e01c8063675751c5116200014b578063a6f5a22b11620000bb578063dcf8b0281162000079578063dcf8b0281462000d97578063dd48f7741462000dc5578063e4f10cc61462000e04578063e985e9c51462000e1c578063f242432a1462000e5b5762000271565b8063a6f5a22b1462000c51578063b3ccfca61462000c69578063b7ec20861462000d30578063c8c2ed541462000d48578063d0763c951462000d605762000271565b80639106d7ba11620001095780639106d7ba1462000b7d57806391b7f5ed1462000b955780639b6dbc8a1462000bc35780639c5482bd1462000bdb578063a22cb4651462000c125762000271565b8063675751c514620008e5578063750521f514620009175780637adbf97314620009cf57806383b2a9c51462000a065780638e8fa11f1462000aeb5762000271565b80632ba29d3811620001e757806347535d7b11620001a557806347535d7b14620006ca5780634a1bb6b414620006e25780634e1273f414620006fa5780634f558e791462000886578063500d58e114620008b45762000271565b80632ba29d3814620005025780632eb2c2d6146200051a5780633702b725146200065b57806338af3eed14620006735780634707d000146200068b5762000271565b806318160ddd116200023557806318160ddd14620004135780631b09f87b146200042b57806322b290341462000475578063267d854614620004a657806327ea6f2b14620004d45762000271565b8062fdd58e146200027657806301ffc9a714620002c55780630e89341c146200031157806314107f3c14620003b757806314bbe21c14620003dc575b600080fd5b3480156200028357600080fd5b50620002b3600480360360408110156200029c57600080fd5b506001600160a01b03813516906020013562000f02565b60408051918252519081900360200190f35b348015620002d257600080fd5b50620002fd60048036036020811015620002eb57600080fd5b50356001600160e01b03191662000fbe565b604080519115158252519081900360200190f35b3480156200031e57600080fd5b506200033f600480360360208110156200033757600080fd5b503562000fdd565b6040805160208082528351818301528351919283929083019185019080838360005b838110156200037b57818101518382015260200162000361565b50505050905090810190601f168015620003a95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b620003da60048036036020811015620003cf57600080fd5b503560ff16620010bd565b005b348015620003e957600080fd5b50620003da600480360360208110156200040257600080fd5b50356001600160a01b031662001118565b3480156200042057600080fd5b50620002b362001206565b3480156200043857600080fd5b5062000459600480360360208110156200045157600080fd5b50356200124c565b604080516001600160a01b039092168252519081900360200190f35b3480156200048257600080fd5b50620002fd600480360360208110156200049b57600080fd5b503560ff166200126a565b348015620004b357600080fd5b50620002b360048036036020811015620004cc57600080fd5b503562001293565b348015620004e157600080fd5b50620003da60048036036020811015620004fa57600080fd5b5035620012a8565b3480156200050f57600080fd5b50620004596200139e565b3480156200052757600080fd5b50620003da600480360360a08110156200054057600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b8111156200057457600080fd5b8201836020820111156200058757600080fd5b803590602001918460208302840111600160201b83111715620005a957600080fd5b919390929091602081019035600160201b811115620005c757600080fd5b820183602082011115620005da57600080fd5b803590602001918460208302840111600160201b83111715620005fc57600080fd5b919390929091602081019035600160201b8111156200061a57600080fd5b8201836020820111156200062d57600080fd5b803590602001918460018302840111600160201b831117156200064f57600080fd5b509092509050620013ad565b3480156200066857600080fd5b50620003da6200174b565b3480156200068057600080fd5b5062000459620018ba565b3480156200069857600080fd5b50620003da60048036036040811015620006b157600080fd5b506001600160a01b0381358116916020013516620018c9565b348015620006d757600080fd5b50620002fd62001a16565b348015620006ef57600080fd5b50620002b362001a1f565b3480156200070757600080fd5b5062000834600480360360408110156200072057600080fd5b810190602081018135600160201b8111156200073b57600080fd5b8201836020820111156200074e57600080fd5b803590602001918460208302840111600160201b831117156200077057600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b811115620007c057600080fd5b820183602082011115620007d357600080fd5b803590602001918460208302840111600160201b83111715620007f557600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955062001a25945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156200087257818101518382015260200162000858565b505050509050019250505060405180910390f35b3480156200089357600080fd5b50620002fd60048036036020811015620008ac57600080fd5b503562001c0b565b348015620008c157600080fd5b50620002b360048036036020811015620008da57600080fd5b503560ff1662001c18565b620003da60048036036040811015620008fd57600080fd5b50803560ff1690602001356001600160a01b031662001c4a565b3480156200092457600080fd5b50620003da600480360360208110156200093d57600080fd5b810190602081018135600160201b8111156200095857600080fd5b8201836020820111156200096b57600080fd5b803590602001918460018302840111600160201b831117156200098d57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955062001ec3945050505050565b348015620009dc57600080fd5b50620003da60048036036020811015620009f557600080fd5b50356001600160a01b031662001f19565b34801562000a1357600080fd5b50620003da6004803603606081101562000a2c57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111562000a5757600080fd5b82018360208201111562000a6a57600080fd5b803590602001918460208302840111600160201b8311171562000a8c57600080fd5b919390929091602081019035600160201b81111562000aaa57600080fd5b82018360208201111562000abd57600080fd5b803590602001918460208302840111600160201b8311171562000adf57600080fd5b50909250905062002007565b34801562000af857600080fd5b50620003da6004803603604081101562000b1157600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111562000b3c57600080fd5b82018360208201111562000b4f57600080fd5b803590602001918460018302840111600160201b8311171562000b7157600080fd5b509092509050620021e8565b34801562000b8a57600080fd5b50620002b362002337565b34801562000ba257600080fd5b50620003da6004803603602081101562000bbb57600080fd5b503562002364565b34801562000bd057600080fd5b50620003da62002432565b34801562000be857600080fd5b50620003da6004803603602081101562000c0157600080fd5b50356001600160a01b0316620024b2565b34801562000c1f57600080fd5b50620003da6004803603604081101562000c3857600080fd5b506001600160a01b0381351690602001351515620025a0565b34801562000c5e57600080fd5b50620003da62002658565b620003da6004803603604081101562000c8157600080fd5b810190602081018135600160201b81111562000c9c57600080fd5b82018360208201111562000caf57600080fd5b803590602001918460208302840111600160201b8311171562000cd157600080fd5b919390929091602081019035600160201b81111562000cef57600080fd5b82018360208201111562000d0257600080fd5b803590602001918460208302840111600160201b8311171562000d2457600080fd5b509092509050620026db565b34801562000d3d57600080fd5b50620002b362002acd565b34801562000d5557600080fd5b506200045962002b78565b34801562000d6d57600080fd5b50620003da6004803603602081101562000d8657600080fd5b50356001600160a01b031662002b87565b34801562000da457600080fd5b50620002b36004803603602081101562000dbd57600080fd5b503562002c75565b34801562000dd257600080fd5b50620003da6004803603604081101562000deb57600080fd5b506001600160a01b038135811691602001351662002c83565b34801562000e1157600080fd5b50620002b362002d36565b34801562000e2957600080fd5b50620002fd6004803603604081101562000e4257600080fd5b506001600160a01b038135811691602001351662002d3c565b34801562000e6857600080fd5b50620003da600480360360a081101562000e8157600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b81111562000ec157600080fd5b82018360208201111562000ed457600080fd5b803590602001918460018302840111600160201b8311171562000ef657600080fd5b50909250905062002d6a565b60006001600160a01b03831662000f4b5760405162461bcd60e51b815260040180806020018281038252602b815260200180620046ed602b913960400191505060405180910390fd5b62000f568262002f48565b62000f935760405162461bcd60e51b815260040180806020018281038252602c81526020018062004abd602c913960400191505060405180910390fd5b5060008181526001602090815260408083206001600160a01b03861684529091529020545b92915050565b6001600160e01b03191660009081526020819052604090205460ff1690565b606062000fea8262002f48565b620010275760405162461bcd60e51b8152600401808060200182810382526033815260200180620048006033913960400191505060405180910390fd5b6004805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015620010b15780601f106200108557610100808354040283529160200191620010b1565b820191906000526020600020905b8154815290600101906020018083116200109357829003601f168201915b50505050509050919050565b620010c762001a16565b1515600114620011095760405162461bcd60e51b815260040180806020018281038252602e81526020018062004751602e913960400191505060405180910390fd5b62001115813362001c4a565b50565b6006546001600160a01b03163314620011635760405162461bcd60e51b8152600401808060200182810382526035815260200180620047a76035913960400191505060405180910390fd5b6001600160a01b038116620011aa5760405162461bcd60e51b8152600401808060200182810382526027815260200180620046c66027913960400191505060405180910390fd5b6006546040516001600160a01b038084169216907f57005c5083fa0952870a7906715a2f6f9ef2d01b4a423e4b3ce59c6129b1a76390600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6000806004815b81811015620012435762001238600b82600481106200122857fe5b0154849063ffffffff62002f5d16565b92506001016200120d565b50909150505b90565b601381600481106200125a57fe5b01546001600160a01b0316905081565b6000600a54600f8360038111156200127e57fe5b600481106200128957fe5b0154101592915050565b600b8160048110620012a157fe5b0154905081565b6006546001600160a01b03163314620012f35760405162461bcd60e51b8152600401808060200182810382526035815260200180620047a76035913960400191505060405180910390fd5b600460005b818110156200135a5782600f82600481106200131057fe5b01541115620013515760405162461bcd60e51b815260040180806020018281038252604181526020018062004c6d6041913960600191505060405180910390fd5b600101620012f8565b50600a54604080519182526020820184905280517fb60cc7dc67f7eca3662ae255cd7c76bb80b4229692532f6af8851a2a119e6b859281900390910190a150600a55565b6008546001600160a01b031681565b848314620013ed5760405162461bcd60e51b815260040180806020018281038252602e81526020018062004b56602e913960400191505060405180910390fd5b6001600160a01b038716620014345760405162461bcd60e51b81526004018080602001828103825260288152602001806200477f6028913960400191505060405180910390fd5b6001600160a01b03881633148062001459575062001453883362002d3c565b15156001145b620014965760405162461bcd60e51b815260040180806020018281038252603781526020018062004b1f6037913960400191505060405180910390fd5b60005b85811015620015e9576000878783818110620014b157fe5b9050602002013590506000868684818110620014c957fe5b90506020020135905062001538816040518060600160405280603d815260200162004ccf603d91396001600086815260200190815260200160002060008f6001600160a01b03166001600160a01b031681526020019081526020016000205462002fbf9092919063ffffffff16565b6001600084815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002081905550620015bd816001600085815260200190815260200160002060008d6001600160a01b03166001600160a01b031681526020019081526020016000205462002f5d90919063ffffffff16565b60009283526001602081815260408086206001600160a01b038f16875290915290932055500162001499565b50866001600160a01b0316886001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb898989896040518080602001806020018381038352878782818152602001925060200280828437600083820152601f01601f19169091018481038352858152602090810191508690860280828437600083820152604051601f909101601f19169092018290039850909650505050505050a46200174133898989898080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808d0282810182019093528c82529093508c92508b91829185019084908082843760009201919091525050604080516020601f8c018190048102820181019092528a815292508a91508990819084018382808284376000920191909152506200305a92505050565b5050505050505050565b600460005b81811015620018b6576000601382600481106200176957fe5b01546001600160a01b031614620017b25760405162461bcd60e51b815260040180806020018281038252603081526020018062004bb96030913960400191505060405180910390fd5b30816003811115620017c057fe5b6007546040516001600160a01b0390911690620017dd9062003c45565b6001600160a01b038416815260208101836003811115620017fa57fe5b60ff1681526001600160a01b03909216602083015250604080519182900301925090506000f08015801562001833573d6000803e3d6000fd5b50601382600481106200184257fe5b0180546001600160a01b0319166001600160a01b03929092169190911790557ff49d891b6b0a8a74953f1d2a01dc5444d1bfa37092dec70b352eac0fe4651312601382600481106200189057fe5b0154604080516001600160a01b039092168252519081900360200190a160010162001750565b5050565b6006546001600160a01b031681565b6007546001600160a01b03163314620019145760405162461bcd60e51b815260040180806020018281038252603681526020018062004ae96036913960400191505060405180910390fd5b604080516370a0823160e01b815230600482015290516001600160a01b0384169163a9059cbb91849184916370a0823191602480820192602092909190829003018186803b1580156200196657600080fd5b505afa1580156200197b573d6000803e3d6000fd5b505050506040513d60208110156200199257600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b03909316600484015260248301919091525160448083019260209291908290030181600087803b158015620019e457600080fd5b505af1158015620019f9573d6000803e3d6000fd5b505050506040513d602081101562001a1057600080fd5b50505050565b60175460ff1690565b60095481565b6060815183511462001a695760405162461bcd60e51b8152600401808060200182810382526030815260200180620048a46030913960400191505060405180910390fd5b6060835167ffffffffffffffff8111801562001a8457600080fd5b5060405190808252806020026020018201604052801562001aaf578160200160208202803683370190505b50905060005b845181101562001c035760006001600160a01b031685828151811062001ad757fe5b60200260200101516001600160a01b0316141562001b275760405162461bcd60e51b8152600401808060200182810382526034815260200180620049d56034913960400191505060405180910390fd5b62001b4684828151811062001b3857fe5b602002602001015162002f48565b62001b835760405162461bcd60e51b8152600401808060200182810382526039815260200180620047186039913960400191505060405180910390fd5b6001600085838151811062001b9457fe5b60200260200101518152602001908152602001600020600086838151811062001bb957fe5b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000205482828151811062001bef57fe5b602090810291909101015260010162001ab5565b509392505050565b600062000fb88262002f48565b600062000fb8600f83600381111562001c2d57fe5b6004811062001c3857fe5b0154600a549063ffffffff6200326c16565b62001c5462001a16565b151560011462001c965760405162461bcd60e51b815260040180806020018281038252602e81526020018062004751602e913960400191505060405180910390fd5b600062001ca262002acd565b90508034101562001ce55760405162461bcd60e51b81526004018080602001828103825260438152602001806200492f6043913960600191505060405180910390fd5b600062001cfa600f85600381111562001c2d57fe5b90506000811162001d52576040805162461bcd60e51b815260206004820181905260248201527f5468652072657175657374656420617373657420697320736f6c64206f75742e604482015290519081900360640190fd5b600062001d66348463ffffffff620032b016565b90508181111562001d745750805b600062001d88828563ffffffff620032f416565b6006546040519192506001600160a01b03169082156108fc029083906000818181858888f1935050505015801562001dc4573d6000803e3d6000fd5b5062001dee8587600381111562001dd757fe5b846040518060200160405280600081525062003352565b62001e1c82600b88600381111562001e0257fe5b6004811062001e0d57fe5b01549063ffffffff62002f5d16565b600b87600381111562001e2b57fe5b6004811062001e3657fe5b015562001e4c82600f88600381111562001e0257fe5b600f87600381111562001e5b57fe5b6004811062001e6657fe5b01553481101562001ebb576001600160a01b0385166108fc62001e90348463ffffffff6200326c16565b6040518115909202916000818181858888f1935050505015801562001eb9573d6000803e3d6000fd5b505b505050505050565b6006546001600160a01b0316331462001f0e5760405162461bcd60e51b8152600401808060200182810382526035815260200180620047a76035913960400191505060405180910390fd5b62001115816200345a565b6006546001600160a01b0316331462001f645760405162461bcd60e51b8152600401808060200182810382526035815260200180620047a76035913960400191505060405180910390fd5b6001600160a01b03811662001fab5760405162461bcd60e51b815260040180806020018281038252602e8152602001806200465d602e913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f05cd89403c6bdeac21c2ff33de395121a31fa1bc2bf3adf4825f1f86e79969dd90600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314620020525760405162461bcd60e51b8152600401808060200182810382526031815260200180620049a46031913960400191505060405180910390fd5b82818114620020935760405162461bcd60e51b815260040180806020018281038252602d81526020018062004a90602d913960400191505060405180910390fd5b60608167ffffffffffffffff81118015620020ad57600080fd5b50604051908082528060200260200182016040528015620020d8578160200160208202803683370190505b50905060005b82811015620021a757868682818110620020f457fe5b905060200201356003811180156200210b57600080fd5b5060038111156200211857fe5b8282815181106200212557fe5b6020026020010181815250506200217a8585838181106200214257fe5b90506020020135600b8484815181106200215857fe5b6020026020010151600481106200216b57fe5b01549063ffffffff6200326c16565b600b8383815181106200218957fe5b6020026020010151600481106200219c57fe5b0155600101620020de565b5062001eb987828686808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506200352692505050565b6007546001600160a01b03163314620022335760405162461bcd60e51b815260040180806020018281038252603681526020018062004ae96036913960400191505060405180910390fd5b6001600160a01b0383166200228f576040805162461bcd60e51b815260206004820152601e60248201527f6e65656420612076616c69642072657665727365207265676973747261720000604482015290519081900360640190fd5b60405163c47f002760e01b8152602060048201908152602482018390526001600160a01b0385169163c47f00279185918591908190604401848480828437600081840152601f19601f8201169050808301925050509350505050602060405180830381600087803b1580156200230457600080fd5b505af115801562002319573d6000803e3d6000fd5b505050506040513d60208110156200233057600080fd5b5050505050565b6000806004815b81811015620012435762002359600f82600481106200122857fe5b92506001016200233e565b6006546001600160a01b03163314620023af5760405162461bcd60e51b8152600401808060200182810382526035815260200180620047a76035913960400191505060405180910390fd5b60008111620023f05760405162461bcd60e51b81526004018080602001828103825260258152602001806200490a6025913960400191505060405180910390fd5b600954604080519182526020820183905280517f8aa4fa52648a6d15edce8a179c792c86f3719d0cc3c572cf90f91948f0f2cb689281900390910190a1600955565b6006546001600160a01b031633146200247d5760405162461bcd60e51b8152600401808060200182810382526035815260200180620047a76035913960400191505060405180910390fd5b6017805460ff191690556040517f589bfff7e7b59e33b97fa923dbc99256a6d2fdf9a631b431fa2dc06f4eea0ded90600090a1565b6008546001600160a01b03163314620024fd5760405162461bcd60e51b8152600401808060200182810382526031815260200180620049a46031913960400191505060405180910390fd5b6001600160a01b038116620025445760405162461bcd60e51b8152600401808060200182810382526024815260200180620047dc6024913960400191505060405180910390fd5b6008546040516001600160a01b038084169216907fa80b924d494425fa26be1379ca75e903eb655fcdfb9ae5a76c7a72e529d6a1b790600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b336001600160a01b0383161415620025ea5760405162461bcd60e51b815260040180806020018281038252602c81526020018062004833602c913960400191505060405180910390fd5b3360008181526002602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b6006546001600160a01b03163314620026a35760405162461bcd60e51b8152600401808060200182810382526035815260200180620047a76035913960400191505060405180910390fd5b6017805460ff191660011790556040517f60630afaadc252b436ca4fb961ec5837f6a34e3aebf89df68f3e0745d8c50a8690600090a1565b620026e562001a16565b1515600114620027275760405162461bcd60e51b815260040180806020018281038252602e81526020018062004751602e913960400191505060405180910390fd5b82818114620027685760405162461bcd60e51b815260040180806020018281038252602d81526020018062004a90602d913960400191505060405180910390fd5b60006200277462002acd565b905080341015620027b75760405162461bcd60e51b81526004018080602001828103825260438152602001806200492f6043913960600191505060405180910390fd5b600060608367ffffffffffffffff81118015620027d357600080fd5b50604051908082528060200260200182016040528015620027fe578160200160208202803683370190505b50905060005b84811015620029ae576200284762002839858989858181106200282357fe5b90506020020135620032f490919063ffffffff16565b849063ffffffff62002f5d16565b92508888828181106200285657fe5b905060200201356003811180156200286d57600080fd5b5060038111156200287a57fe5b8282815181106200288757fe5b602002602001018181525050620028cd878783818110620028a457fe5b90506020020135600b848481518110620028ba57fe5b60200260200101516004811062001e0d57fe5b600b838381518110620028dc57fe5b602002602001015160048110620028ef57fe5b0155620029188787838181106200290257fe5b90506020020135600f848481518110620028ba57fe5b600f8383815181106200292757fe5b6020026020010151600481106200293a57fe5b0181905550600a54600f8383815181106200295157fe5b6020026020010151600481106200296457fe5b01541115620029a55760405162461bcd60e51b815260040180806020018281038252602981526020018062004c1d6029913960400191505060405180910390fd5b60010162002804565b5081341015620029f05760405162461bcd60e51b81526004018080602001828103825260458152602001806200485f6045913960600191505060405180910390fd5b6006546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801562002a2b573d6000803e3d6000fd5b5062002a7a338288888080602002602001604051908101604052809392919081815260200183836020028082843760009201829052506040805160208101909152908152925062003779915050565b813411156200174157336108fc62002a99348563ffffffff6200326c16565b6040518115909202916000818181858888f1935050505015801562002ac2573d6000803e3d6000fd5b505050505050505050565b600062002b73606462002b66600560009054906101000a90046001600160a01b03166001600160a01b03166354a4adc26040518163ffffffff1660e01b815260040160206040518083038186803b15801562002b2857600080fd5b505afa15801562002b3d573d6000803e3d6000fd5b505050506040513d602081101562002b5457600080fd5b50516009549063ffffffff620032f416565b9063ffffffff620032b016565b905090565b6007546001600160a01b031681565b6007546001600160a01b0316331462002bd25760405162461bcd60e51b815260040180806020018281038252603681526020018062004ae96036913960400191505060405180910390fd5b6001600160a01b03811662002c195760405162461bcd60e51b8152600401808060200182810382526032815260200180620049726032913960400191505060405180910390fd5b6007546040516001600160a01b038084169216907fe74ad8e35ae0d7f4389ff1318666007250321a66dd644dca021b5e2e30fa2a5c90600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600f8160048110620012a157fe5b6007546001600160a01b0316331462002cce5760405162461bcd60e51b815260040180806020018281038252603681526020018062004ae96036913960400191505060405180910390fd5b6040805163a22cb46560e01b81526001600160a01b0383811660048301526001602483015291519184169163a22cb4659160448082019260009290919082900301818387803b15801562002d2157600080fd5b505af115801562001ebb573d6000803e3d6000fd5b600a5481565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b6001600160a01b03851662002db15760405162461bcd60e51b81526004018080602001828103825260288152602001806200477f6028913960400191505060405180910390fd5b6001600160a01b03861633148062002dd6575062002dd0863362002d3c565b15156001145b62002e135760405162461bcd60e51b815260040180806020018281038252603781526020018062004b1f6037913960400191505060405180910390fd5b62002e63836040518060600160405280602a815260200162004a09602a913960008781526001602090815260408083206001600160a01b038d168452909152902054919063ffffffff62002fbf16565b60008581526001602090815260408083206001600160a01b038b8116855292528083209390935587168152205462002e9c908462002f5d565b60008581526001602090815260408083206001600160a01b03808b16808652918452938290209490945580518881529182018790528051928a169233927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a462001ebb338787878787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250620039f292505050565b60009081526003602052604090205460ff1690565b60008282018381101562002fb8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60008184841115620030525760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200301657818101518382015260200162002ffc565b50505050905090810190601f168015620030445780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6200306e846001600160a01b031662003b84565b1562001ebb5763bc197c8160e01b6001600160e01b031916846001600160a01b031663bc197c8188888787876040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b838110156200312357818101518382015260200162003109565b50505050905001848103835286818151815260200191508051906020019060200280838360005b83811015620031645781810151838201526020016200314a565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015620031a257818101518382015260200162003188565b50505050905090810190601f168015620031d05780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015620031f657600080fd5b505af11580156200320b573d6000803e3d6000fd5b505050506040513d60208110156200322257600080fd5b50516001600160e01b0319161462001ebb5760405162461bcd60e51b8152600401808060200182810382526036815260200180620048d46036913960400191505060405180910390fd5b600062002fb883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525062002fbf565b600062002fb883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525062003bc1565b600082620033055750600062000fb8565b828202828482816200331357fe5b041462002fb85760405162461bcd60e51b815260040180806020018281038252602181526020018062004a336021913960400191505060405180910390fd5b6001600160a01b038416620033995760405162461bcd60e51b815260040180806020018281038252602181526020018062004cae6021913960400191505060405180910390fd5b620033a48362002f48565b620033b457620033b48362003c2a565b60008381526001602090815260408083206001600160a01b0388168452909152902054620033e9908363ffffffff62002f5d16565b60008481526001602090815260408083206001600160a01b038916808552908352818420949094558051878152918201869052805133927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a462001a1033600086868686620039f2565b80516200346f90600490602084019062003c53565b5060408051602080825260048054600260001961010060018416150201909116049183018290526000937f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b939192829182019084908015620035155780601f10620034e95761010080835404028352916020019162003515565b820191906000526020600020905b815481529060010190602001808311620034f757829003601f168201915b50509250505060405180910390a250565b6001600160a01b0383166200356d5760405162461bcd60e51b815260040180806020018281038252603b8152602001806200468b603b913960400191505060405180910390fd5b8051825114620035af5760405162461bcd60e51b815260040180806020018281038252603481526020018062004be96034913960400191505060405180910390fd5b60005b825181101562003695576200364a828281518110620035cd57fe5b60200260200101516040518060600160405280603c815260200162004a54603c9139600160008786815181106200360057fe5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000205462002fbf9092919063ffffffff16565b600160008584815181106200365b57fe5b602090810291909101810151825281810192909252604090810160009081206001600160a01b0389168252909252902055600101620035b2565b5060006001600160a01b0316836001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8585604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156200371e57818101518382015260200162003704565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156200375f57818101518382015260200162003745565b5050505090500194505050505060405180910390a4505050565b6001600160a01b038416620037c05760405162461bcd60e51b815260040180806020018281038252602781526020018062004c466027913960400191505060405180910390fd5b8151835114620038025760405162461bcd60e51b815260040180806020018281038252603581526020018062004b846035913960400191505060405180910390fd5b60005b835181101562003902576200382084828151811062001b3857fe5b6200384457620038448482815181106200383657fe5b602002602001015162003c2a565b620038b7600160008684815181106200385957fe5b602002602001015181526020019081526020016000206000876001600160a01b03166001600160a01b0316815260200190815260200160002054848381518110620038a057fe5b602002602001015162002f5d90919063ffffffff16565b60016000868481518110620038c857fe5b602090810291909101810151825281810192909252604090810160009081206001600160a01b038a16825290925290205560010162003805565b50836001600160a01b031660006001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156200398b57818101518382015260200162003971565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015620039cc578181015183820152602001620039b2565b5050505090500194505050505060405180910390a462001a10336000868686866200305a565b62003a06846001600160a01b031662003b84565b1562001ebb5763f23a6e6160e01b6001600160e01b031916846001600160a01b031663f23a6e6188888787876040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101562003abc57818101518382015260200162003aa2565b50505050905090810190601f16801562003aea5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15801562003b0e57600080fd5b505af115801562003b23573d6000803e3d6000fd5b505050506040513d602081101562003b3a57600080fd5b50516001600160e01b0319161462001ebb5760405162461bcd60e51b815260040180806020018281038252603181526020018062004d0c6031913960400191505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159062003bb957508115155b949350505050565b6000818362003c135760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156200301657818101518382015260200162002ffc565b50600083858162003c2057fe5b0495945050505050565b6000908152600360205260409020805460ff19166001179055565b6109678062003cf683390190565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062003c9657805160ff191683800117855562003cc6565b8280016001018555821562003cc6579182015b8281111562003cc657825182559160200191906001019062003ca9565b5062003cd492915062003cd8565b5090565b6200124991905b8082111562003cd4576000815560010162003cdf56fe608060405234801561001057600080fd5b506040516109673803806109678339818101604052606081101561003357600080fd5b5080516020820151604090920151600180546001600160a01b0319166001600160a01b038085169190911791829055929392166100a15760405162461bcd60e51b815260040180806020018281038252602f815260200180610938602f913960400191505060405180910390fd5b6001805483919060ff60a01b1916600160a01b8360038111156100c057fe5b0217905550600080546001600160a01b0319166001600160a01b038381169190911791829055166101225760405162461bcd60e51b815260040180806020018281038252603d8152602001806108fb603d913960400191505060405180910390fd5b5050506107c7806101346000396000f3fe6080604052600436106100745760003560e01c8063c8c2ed541161004e578063c8c2ed5414610219578063d0763c951461024a578063dd48f7741461027d578063fdea8e0b146102b857610111565b80633fe3347a146101165780634707d0001461014f5780638e8fa11f1461018c57610111565b366101115760015460405163675751c560e01b81526001600160a01b0382169163675751c5913491600160a01b900460ff16903390600401808360038111156100b957fe5b60ff168152602001826001600160a01b03166001600160a01b03168152602001925050506000604051808303818588803b1580156100f657600080fd5b505af115801561010a573d6000803e3d6000fd5b5050505050005b600080fd5b34801561012257600080fd5b5061012b6102cd565b6040518082600381111561013b57fe5b60ff16815260200191505060405180910390f35b34801561015b57600080fd5b5061018a6004803603604081101561017257600080fd5b506001600160a01b03813581169160200135166102dd565b005b34801561019857600080fd5b5061018a600480360360408110156101af57600080fd5b6001600160a01b0382351691908101906040810160208201356401000000008111156101da57600080fd5b8201836020820111156101ec57600080fd5b8035906020019184600183028401116401000000008311171561020e57600080fd5b509092509050610422565b34801561022557600080fd5b5061022e61056b565b604080516001600160a01b039092168252519081900360200190f35b34801561025657600080fd5b5061018a6004803603602081101561026d57600080fd5b50356001600160a01b031661057a565b34801561028957600080fd5b5061018a600480360360408110156102a057600080fd5b506001600160a01b0381358116916020013516610663565b3480156102c457600080fd5b5061022e61071a565b600154600160a01b900460ff1681565b6000546001600160a01b031633146103265760405162461bcd60e51b815260040180806020018281038252603681526020018061075c6036913960400191505060405180910390fd5b604080516370a0823160e01b815230600482015290516001600160a01b0384169163a9059cbb91849184916370a0823191602480820192602092909190829003018186803b15801561037757600080fd5b505afa15801561038b573d6000803e3d6000fd5b505050506040513d60208110156103a157600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b03909316600484015260248301919091525160448083019260209291908290030181600087803b1580156103f257600080fd5b505af1158015610406573d6000803e3d6000fd5b505050506040513d602081101561041c57600080fd5b50505050565b6000546001600160a01b0316331461046b5760405162461bcd60e51b815260040180806020018281038252603681526020018061075c6036913960400191505060405180910390fd5b6001600160a01b0383166104c6576040805162461bcd60e51b815260206004820152601e60248201527f6e65656420612076616c69642072657665727365207265676973747261720000604482015290519081900360640190fd5b60405163c47f002760e01b8152602060048201908152602482018390526001600160a01b0385169163c47f00279185918591908190604401848480828437600081840152601f19601f8201169050808301925050509350505050602060405180830381600087803b15801561053a57600080fd5b505af115801561054e573d6000803e3d6000fd5b505050506040513d602081101561056457600080fd5b5050505050565b6000546001600160a01b031681565b6000546001600160a01b031633146105c35760405162461bcd60e51b815260040180806020018281038252603681526020018061075c6036913960400191505060405180910390fd5b6001600160a01b0381166106085760405162461bcd60e51b815260040180806020018281038252603281526020018061072a6032913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917fe74ad8e35ae0d7f4389ff1318666007250321a66dd644dca021b5e2e30fa2a5c91a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146106ac5760405162461bcd60e51b815260040180806020018281038252603681526020018061075c6036913960400191505060405180910390fd5b6040805163a22cb46560e01b81526001600160a01b0383811660048301526001602483015291519184169163a22cb4659160448082019260009290919082900301818387803b1580156106fe57600080fd5b505af1158015610712573d6000803e3d6000fd5b505050505050565b6001546001600160a01b03168156fe746f6b656e41737369676e6d656e74436f6e74726f6c2063616e6e6f7420626520746865207a65726f20616464726573732e746f6b656e41737369676e6d656e74436f6e74726f6c206b657920726571756972656420666f7220746869732066756e6374696f6e2ea264697066735822122075ba3a2912e276a05616350da20b41cddfd576c9d548d741393d2450e611c28464736f6c63430006060033596f75206e65656420746f2070726f7669646520616e2061637475616c20746f6b656e41737369676e6d656e74436f6e74726f6c20616464726573732e596f75206e65656420746f2070726f7669646520616e2061637475616c2070726573616c6520636f6e74726163742e596f75206e65656420746f2070726f7669646520616e2061637475616c204f7261636c6520636f6e74726163742e455243313135353a20617474656d7074696e6720746f206275726e206261746368206f6620746f6b656e73206f6e207a65726f206163636f756e7462656e65666963696172792063616e6e6f7420626520746865207a65726f20616464726573732e455243313135353a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243313135353a20736f6d6520746f6b656e20696e2062617463682062616c616e636520717565727920646f6573206e6f74206578697374546869732063616c6c206f6e6c7920776f726b73207768656e207468652070726573616c65206973206f70656e2e455243313135353a207461726765742061646472657373206d757374206265206e6f6e2d7a65726f4f6e6c79207468652063757272656e742062656e6566696e69636172792063616e2063616c6c20746869732066756e6374696f6e2e72656465656d65722063616e6e6f7420626520746865207a65726f20616464726573732e455243313135354d657461646174615552493a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e455243313135353a2063616e6e6f742073657420617070726f76616c2073746174757320666f722073656c66596f75206e65656420746f2073656e6420656e6f7567682063757272656e637920746f2061637475616c6c792070617920616c6c20737065636966696564206974656d732e455243313135353a206163636f756e747320616e6420494473206d75737420686176652073616d65206c656e67746873455243313135353a20676f7420756e6b6e6f776e2076616c75652066726f6d206f6e4552433131353542617463685265636569766564596f75206e65656420746f2070726f766964652061206e6f6e2d7a65726f2070726963652e596f75206e65656420746f2073656e6420656e6f7567682063757272656e637920746f2061637475616c6c7920706179206174206c65617374206f6e65206974656d2e746f6b656e41737369676e6d656e74436f6e74726f6c2063616e6e6f7420626520746865207a65726f20616464726573732e4f6e6c79207468652063757272656e742072656465656d65722063616e2063616c6c20746869732066756e6374696f6e2e455243313135353a20736f6d65206164647265737320696e2062617463682062616c616e6365207175657279206973207a65726f455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e73666572536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77455243313135353a20617474656d7074696e6720746f206275726e206d6f7265207468616e2062616c616e636520666f7220736f6d6520746f6b656e426f746820696e70757420617272617973206e65656420746f206265207468652073616d65206c656e6774682e455243313135353a2062616c616e636520717565727920666f72206e6f6e6578697374656e7420746f6b656e746f6b656e41737369676e6d656e74436f6e74726f6c206b657920726571756972656420666f7220746869732066756e6374696f6e2e455243313135353a206e656564206f70657261746f7220617070726f76616c20666f7220337264207061727479207472616e7366657273455243313135353a2049447320616e642076616c756573206d75737420686176652073616d65206c656e67746873455243313135353a206d696e7465642049447320616e642076616c756573206d75737420686176652073616d65206c656e677468736469726563742d70617920636f6e747261637473206861766520616c7265616479206265656e206465706c6f7965642e455243313135353a206275726e742049447320616e642076616c756573206d75737420686176652073616d65206c656e677468734174206c65617374206f6e652072657175657374656420617373657420697320736f6c64206f75742e455243313135353a206261746368206d696e7420746f20746865207a65726f20616464726573734174206c65617374206f6e652072657175657374656420617373657420697320616c7265616479206f7665722074686520726571756573746564206c696d69742e455243313135353a206d696e7420746f20746865207a65726f2061646472657373455243313135353a20696e73756666696369656e742062616c616e6365206f6620736f6d6520746f6b656e207479706520666f72207472616e73666572455243313135353a20676f7420756e6b6e6f776e2076616c75652066726f6d206f6e455243313135355265636569766564a2646970667358221220e530b4a1f5eb2232b21aaac217af56dac744980c9da31d315691c0f0d0efb9bb64736f6c63430006060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001863d1351fc3003f1ad361939248e3a3a114958e00000000000000000000000000000000000000000000000000000000000002bc00000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000cebb9ae52a3d61c4ed1528fba93e5beaaa40e9e2000000000000000000000000596e620e175c2c37a5f35a41d9f2305a991ffc89
-----Decoded View---------------
Arg [0] : _oracle (address): 0x1863D1351fc3003F1Ad361939248E3a3a114958e
Arg [1] : _priceEurCent (uint256): 700
Arg [2] : _limitPerType (uint256): 2500
Arg [3] : _beneficiary (address): 0xCebb9aE52A3D61C4ED1528Fba93E5beaaA40e9e2
Arg [4] : _tokenAssignmentControl (address): 0x596E620E175C2C37A5f35A41d9F2305A991fFc89
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000001863d1351fc3003f1ad361939248e3a3a114958e
Arg [1] : 00000000000000000000000000000000000000000000000000000000000002bc
Arg [2] : 00000000000000000000000000000000000000000000000000000000000009c4
Arg [3] : 000000000000000000000000cebb9ae52a3d61c4ed1528fba93e5beaaa40e9e2
Arg [4] : 000000000000000000000000596e620e175c2c37a5f35a41d9f2305a991ffc89
Deployed Bytecode Sourcemap
41228:13797:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;21728:302:0;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21728:302:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21728:302:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;18914:142;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18914:142:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18914:142:0;-1:-1:-1;;;;;;18914:142:0;;:::i;:::-;;;;;;;;;;;;;;;;;;34319:188;;5:9:-1;2:2;;;27:1;24;17:12;2:2;34319:188:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;34319:188:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;34319:188:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49413:115;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;49413:115:0;;;;:::i;:::-;;46229:308;;5:9:-1;2:2;;;27:1;24;17:12;2:2;46229:308:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;46229:308:0;-1:-1:-1;;;;;46229:308:0;;:::i;48154:312::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;48154:312:0;;;:::i;41707:39::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;41707:39:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;41707:39:0;;:::i;:::-;;;;-1:-1:-1;;;;;41707:39:0;;;;;;;;;;;;;;49152:145;;5:9:-1;2:2;;;27:1;24;17:12;2:2;49152:145:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;49152:145:0;;;;:::i;41637:29::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;41637:29:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;41637:29:0;;:::i;45368:424::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;45368:424:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;45368:424:0;;:::i;41461:23::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;41461:23:0;;;:::i;26320:1144::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26320:1144:0;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;26320:1144:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;26320:1144:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;26320:1144:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;26320:1144:0;;;;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;26320:1144:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;26320:1144:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;26320:1144:0;;;;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;26320:1144:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;26320:1144:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;26320:1144:0;;-1:-1:-1;26320:1144:0;-1:-1:-1;26320:1144:0;:::i;44596:422::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;44596:422:0;;;:::i;41376:34::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;41376:34:0;;;:::i;54541:193::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54541:193:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;54541:193:0;;;;;;;;;;:::i;47709:93::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;47709:93:0;;;:::i;41493:27::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;41493:27:0;;;:::i;22365:744::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;22365:744:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;22365:744:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;22365:744:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;22365:744:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;22365:744:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;22365:744:0;;;;;;;;-1:-1:-1;22365:744:0;;-1:-1:-1;;;;;11:28;;8:2;;;52:1;49;42:12;8:2;22365:744:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;22365:744:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;22365:744:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;22365:744:0;;-1:-1:-1;22365:744:0;;-1:-1:-1;;;;;22365:744:0:i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;22365:744:0;;;;;;;;;;;;;;;;;53592:92;;5:9:-1;2:2;;;27:1;24;17:12;2:2;53592:92:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;53592:92:0;;:::i;48922:157::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;48922:157:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;48922:157:0;;;;:::i;49771:1391::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;49771:1391:0;;;;;;;;-1:-1:-1;;;;;49771:1391:0;;:::i;46101:120::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;46101:120:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;46101:120:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;46101:120:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;46101:120:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;46101:120:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;46101:120:0;;-1:-1:-1;46101:120:0;;-1:-1:-1;;;;;46101:120:0:i;45800:293::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;45800:293:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;45800:293:0;-1:-1:-1;;;;;45800:293:0;;:::i;52981:551::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;52981:551:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;52981:551:0;;;;;;;;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;52981:551:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;52981:551:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;52981:551:0;;;;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;52981:551:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;52981:551:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;-1:-1;52981:551:0;;-1:-1:-1;52981:551:0;-1:-1:-1;52981:551:0;:::i;54037:308::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54037:308:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;54037:308:0;;;;;;;;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;54037:308:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;54037:308:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;54037:308:0;;-1:-1:-1;54037:308:0;-1:-1:-1;54037:308:0;:::i;48540:298::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;48540:298:0;;;:::i;45087:273::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;45087:273:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;45087:273:0;;:::i;47368:121::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;47368:121:0;;;:::i;46963:270::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;46963:270:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;46963:270:0;-1:-1:-1;;;;;46963:270:0;;:::i;23600:308::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;23600:308:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;23600:308:0;;;;;;;;;;:::i;47241:119::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;47241:119:0;;;:::i;51226:1564::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;51226:1564:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;51226:1564:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;51226:1564:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;51226:1564:0;;;;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;51226:1564:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;51226:1564:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;-1:-1;51226:1564:0;;-1:-1:-1;51226:1564:0;-1:-1:-1;51226:1564:0;:::i;47940:134::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;47940:134:0;;;:::i;41417:37::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;41417:37:0;;;:::i;46545:410::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;46545:410:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;46545:410:0;-1:-1:-1;;;;;46545:410:0;;:::i;41673:27::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;41673:27:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;41673:27:0;;:::i;54850:170::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54850:170:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;54850:170:0;;;;;;;;;;:::i;41529:27::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;41529:27:0;;;:::i;24197:160::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24197:160:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;24197:160:0;;;;;;;;;;:::i;24923:795::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24923:795:0;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;24923:795:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;24923:795:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;24923:795:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;24923:795:0;;-1:-1:-1;24923:795:0;-1:-1:-1;24923:795:0;:::i;21728:302::-;21806:7;-1:-1:-1;;;;;21834:21:0;;21826:77;;;;-1:-1:-1;;;21826:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21922:11;21930:2;21922:7;:11::i;:::-;21914:68;;;;-1:-1:-1;;;21914:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22000:13:0;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;22000:22:0;;;;;;;;;;21728:302;;;;;:::o;18914:142::-;-1:-1:-1;;;;;;19015:33:0;18991:4;19015:33;;;;;;;;;;;;;;18914:142::o;34319:188::-;34376:13;34410:11;34418:2;34410:7;:11::i;:::-;34402:75;;;;-1:-1:-1;;;34402:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34495:4;34488:11;;;;;;;;;;;;;-1:-1:-1;;34488:11:0;;;;;;;;;;;;;;;;;;;;;;;;;;;34495:4;34488:11;;34495:4;34488:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34319:188;;;:::o;49413:115::-;44157:8;:6;:8::i;:::-;:16;;44169:4;44157:16;44149:75;;;;-1:-1:-1;;;44149:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49498:22:::1;49502:5;49509:10;49498:3;:22::i;:::-;49413:115:::0;:::o;46229:308::-;43691:11;;-1:-1:-1;;;;;43691:11:0;43677:10;:25;43669:91;;;;-1:-1:-1;;;43669:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46348:29:0;::::1;46340:81;;;;-1:-1:-1::0;;;46340:81:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46460:11;::::0;46437:52:::1;::::0;-1:-1:-1;;;;;46437:52:0;;::::1;::::0;46460:11:::1;::::0;46437:52:::1;::::0;46460:11:::1;::::0;46437:52:::1;46500:11;:29:::0;;-1:-1:-1;;;;;;46500:29:0::1;-1:-1:-1::0;;;;;46500:29:0;;;::::1;::::0;;;::::1;::::0;;46229:308::o;48154:312::-;48208:7;;48287:18;48208:7;48316:113;48340:8;48336:1;:12;48316:113;;;48385:32;48402:11;48414:1;48402:14;;;;;;;;;48385:12;;:32;:16;:32;:::i;:::-;48370:47;-1:-1:-1;48350:3:0;;48316:113;;;-1:-1:-1;48446:12:0;;-1:-1:-1;;48154:312:0;;:::o;41707:39::-;;;;;;;;;;;;-1:-1:-1;;;;;41707:39:0;;-1:-1:-1;41707:39:0;:::o;49152:145::-;49219:4;49277:12;;49248:9;49266:5;49258:14;;;;;;;;49248:25;;;;;;;;;:41;;;49152:145;-1:-1:-1;;49152:145:0:o;41637:29::-;;;;;;;;;;;;;-1:-1:-1;41637:29:0;:::o;45368:424::-;43691:11;;-1:-1:-1;;;;;43691:11:0;43677:10;:25;43669:91;;;;-1:-1:-1;;;43669:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45480:16:::1;45461;45507:176;45531:8;45527:1;:12;45507:176;;;45585:16;45569:9;45579:1;45569:12;;;;;;;;;:32;;45561:110;;;;-1:-1:-1::0;;;45561:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45541:3;;45507:176;;;-1:-1:-1::0;45711:12:0::1;::::0;45698:44:::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;;;;;;;::::1;-1:-1:-1::0;45753:12:0::1;:31:::0;45368:424::o;41461:23::-;;;-1:-1:-1;;;;;41461:23:0;;:::o;26320:1144::-;26578:27;;;26570:86;;;;-1:-1:-1;;;26570:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26675:16:0;;26667:69;;;;-1:-1:-1;;;26667:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26769:18:0;;26777:10;26769:18;;:64;;;26791:34;26808:4;26814:10;26791:16;:34::i;:::-;:42;;26829:4;26791:42;26769:64;26747:169;;;;-1:-1:-1;;;26747:169:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26934:9;26929:373;26949:14;;;26929:373;;;26985:10;26998:3;;27002:1;26998:6;;;;;;;;;;;;;26985:19;;27019:13;27035:6;;27042:1;27035:9;;;;;;;;;;;;;27019:25;;27083:144;27125:5;27083:144;;;;;;;;;;;;;;;;;:9;:13;27093:2;27083:13;;;;;;;;;;;:19;27097:4;-1:-1:-1;;;;;27083:19:0;-1:-1:-1;;;;;27083:19:0;;;;;;;;;;;;;:23;;:144;;;;;:::i;:::-;27061:9;:13;27071:2;27061:13;;;;;;;;;;;:19;27075:4;-1:-1:-1;;;;;27061:19:0;-1:-1:-1;;;;;27061:19:0;;;;;;;;;;;;:166;;;;27262:28;27284:5;27262:9;:13;27272:2;27262:13;;;;;;;;;;;:17;27276:2;-1:-1:-1;;;;;27262:17:0;-1:-1:-1;;;;;27262:17:0;;;;;;;;;;;;;:21;;:28;;;;:::i;:::-;27242:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;27242:17:0;;;;;;;;;;:48;-1:-1:-1;26965:3:0;26929:373;;;;27351:2;-1:-1:-1;;;;;27319:48:0;27345:4;-1:-1:-1;;;;;27319:48:0;27333:10;-1:-1:-1;;;;;27319:48:0;;27355:3;;27360:6;;27319:48;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;137:4;117:14;-1:-1;;113:30;157:16;;;27319:48:0;;;;;;;;;;;;;-1:-1:-1;27319:48:0;;;;;;;1:33:-1;99:1;81:16;;;74:27;27319:48:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;27319:48:0;;;;-1:-1:-1;27319:48:0;;-1:-1:-1;;;;;;;27319:48:0;27380:76;27416:10;27428:4;27434:2;27438:3;;27380:76;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;27380:76:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27443:6:0;;-1:-1:-1;27443:6:0;;;;27380:76;;;27443:6;;27380:76;27443:6;27380:76;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;;27380:76:0;;;;137:4:-1;27380:76:0;;;;;;;;;;;;;;;;;;-1:-1:-1;27451:4:0;;-1:-1:-1;27451:4:0;;;;27380:76;;27451:4;;;;27380:76;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;27380:35:0;;-1:-1:-1;;;27380:76:0:i;:::-;26320:1144;;;;;;;;:::o;44596:422::-;44663:16;44644;44690:321;44714:8;44710:1;:12;44690:321;;;44785:3;44760:9;44770:1;44760:12;;;;;;;;;-1:-1:-1;;;;;44760:12:0;44752:37;44744:98;;;;-1:-1:-1;;;44744:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44896:4;44912:1;44902:12;;;;;;;;44916:22;;44872:67;;-1:-1:-1;;;;;44916:22:0;;;;44872:67;;;:::i;:::-;-1:-1:-1;;;;;44872:67:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44872:67:0;;;;;;;-1:-1:-1;44872:67:0;;;;;;;;;-1:-1:-1;44872:67:0;-1:-1:-1;;44872:67:0;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;44872:67:0;44857:9;44867:1;44857:12;;;;;;;;:82;;-1:-1:-1;;;;;;44857:82:0;-1:-1:-1;;;;;44857:82:0;;;;;;;;;;44959:40;44985:9;44995:1;44985:12;;;;;;;;;44959:40;;;-1:-1:-1;;;;;44985:12:0;;;44959:40;;;;;;;;;;;44724:3;;44690:321;;;;44596:422;:::o;41376:34::-;;;-1:-1:-1;;;;;41376:34:0;;:::o;54541:193::-;43859:22;;-1:-1:-1;;;;;43859:22:0;43845:10;:36;43837:103;;;;-1:-1:-1;;;43837:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54687:38:::1;::::0;;-1:-1:-1;;;54687:38:0;;54719:4:::1;54687:38;::::0;::::1;::::0;;;-1:-1:-1;;;;;54659:22:0;::::1;::::0;::::1;::::0;54682:3;;54659:22;;54687:23:::1;::::0;:38;;;;;::::1;::::0;;;;;;;;;54659:22;54687:38;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;54687:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;54687:38:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;54687:38:0;54659:67:::1;::::0;;-1:-1:-1;;;;;;54659:67:0::1;::::0;;;;;;-1:-1:-1;;;;;54659:67:0;;::::1;;::::0;::::1;::::0;;;;;;;;;;;;;;54687:38:::1;::::0;54659:67;;;;;;;-1:-1:-1;54659:67:0;;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;54659:67:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;54659:67:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;;;;54541:193:0:o;47709:93::-;47787:7;;;;47709:93;:::o;41493:27::-;;;;:::o;22365:744::-;22529:16;22590:3;:10;22571:8;:15;:29;22563:90;;;;-1:-1:-1;;;22563:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22666:30;22713:8;:15;22699:30;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;22699:30:0;;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;125:4;109:14;101:6;88:42;144:17;;-1:-1;22699:30:0;-1:-1:-1;22666:63:0;-1:-1:-1;22747:9:0;22742:327;22766:8;:15;22762:1;:19;22742:327;;;22834:1;-1:-1:-1;;;;;22811:25:0;:8;22820:1;22811:11;;;;;;;;;;;;;;-1:-1:-1;;;;;22811:25:0;;;22803:90;;;;-1:-1:-1;;;22803:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22916:15;22924:3;22928:1;22924:6;;;;;;;;;;;;;;22916:7;:15::i;:::-;22908:85;;;;-1:-1:-1;;;22908:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23027:9;:17;23037:3;23041:1;23037:6;;;;;;;;;;;;;;23027:17;;;;;;;;;;;:30;23045:8;23054:1;23045:11;;;;;;;;;;;;;;-1:-1:-1;;;;;23027:30:0;-1:-1:-1;;;;;23027:30:0;;;;;;;;;;;;;23008:13;23022:1;23008:16;;;;;;;;;;;;;;;;;:49;22783:3;;22742:327;;;-1:-1:-1;23088:13:0;22365:744;-1:-1:-1;;;22365:744:0:o;53592:92::-;53641:4;53665:11;53673:2;53665:7;:11::i;48922:157::-;48996:7;49028:43;49045:9;49063:5;49055:14;;;;;;;;49045:25;;;;;;;;;49028:12;;;:43;:16;:43;:::i;49771:1391::-;44157:8;:6;:8::i;:::-;:16;;44169:4;44157:16;44149:75;;;;-1:-1:-1;;;44149:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49891:19:::1;49913:10;:8;:10::i;:::-;49891:32;;49955:11;49942:9;:24;;49934:104;;;;-1:-1:-1::0;;;49934:104:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50049:17;50069:43;50086:9;50104:5;50096:14;;;;;;;50069:43;50049:63;;50143:1;50131:9;:13;50123:58;;;::::0;;-1:-1:-1;;;50123:58:0;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;50282:18;50303:26;:9;50317:11:::0;50303:26:::1;:13;:26;:::i;:::-;50282:47;;50429:9;50416:10;:22;50412:77;;;-1:-1:-1::0;50468:9:0;50412:77:::1;50557:17;50577:27;:10:::0;50592:11;50577:27:::1;:14;:27;:::i;:::-;50682:11;::::0;:31:::1;::::0;50557:47;;-1:-1:-1;;;;;;50682:11:0::1;::::0;:31;::::1;;;::::0;50557:47;;50682:11:::1;:31:::0;:11;:31;50557:47;50682:11;:31;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;50682:31:0;50775:56;50781:10;50801:5;50793:14;;;;;;;;50809:10;50821:9;;;;;;;;;;;::::0;50775:5:::1;:56::i;:::-;50872:43;50904:10;50872:11;50892:5;50884:14;;;;;;;;50872:27;;;;;;;;::::0;;:43:::1;:31;:43;:::i;:::-;50842:11;50862:5;50854:14;;;;;;;;50842:27;;;;;;;;:73:::0;50954:41:::1;50984:10:::0;50954:9:::1;50972:5:::0;50964:14:::1;::::0;::::1;;;;;50954:41;50926:9;50944:5;50936:14;;;;;;;;50926:25;;;;;;;;:69:::0;51060:9:::1;:21:::0;-1:-1:-1;51056:99:0::1;;;-1:-1:-1::0;;;;;51098:19:0;::::1;:45;51118:24;:9;51132::::0;51118:24:::1;:13;:24;:::i;:::-;51098:45;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;51098:45:0;51056:99;44235:1;;;;49771:1391:::0;;:::o;46101:120::-;43691:11;;-1:-1:-1;;;;;43691:11:0;43677:10;:25;43669:91;;;;-1:-1:-1;;;43669:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46197:16:::1;46205:7;46197;:16::i;45800:293::-:0;43691:11;;-1:-1:-1;;;;;43691:11:0;43677:10;:25;43669:91;;;;-1:-1:-1;;;43669:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45902:35:0;::::1;45894:94;;;;-1:-1:-1::0;;;45894:94:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46026:6;::::0;46004:51:::1;::::0;-1:-1:-1;;;;;46004:51:0;;::::1;::::0;46026:6:::1;::::0;46004:51:::1;::::0;46026:6:::1;::::0;46004:51:::1;46066:6;:19:::0;;-1:-1:-1;;;;;;46066:19:0::1;-1:-1:-1::0;;;;;46066:19:0;;;::::1;::::0;;;::::1;::::0;;45800:293::o;52981:551::-;44025:8;;-1:-1:-1;;;;;44025:8:0;44011:10;:22;44003:84;;;;-1:-1:-1;;;44003:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53141:5;53172:27;;::::1;53164:85;;;;-1:-1:-1::0;;;53164:85:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53260:20;53297:10;53283:25;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;53283:25:0;;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;125:4;109:14;101:6;88:42;144:17;::::0;-1:-1;53283:25:0::1;-1:-1:-1::0;53260:48:0;-1:-1:-1;53324:9:0::1;53319:165;53343:10;53339:1;:14;53319:165;;;53392:5;;53398:1;53392:8;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;53392:8:0;53384:17;;;;;;;;53375:3;53379:1;53375:6;;;;;;;;;;;;;:26;;;::::0;::::1;53438:34;53462:6;;53469:1;53462:9;;;;;;;;;;;;;53438:11;53450:3;53454:1;53450:6;;;;;;;;;;;;;;53438:19;;;;;;;;::::0;;:34:::1;:23;:34;:::i;:::-;53416:11;53428:3;53432:1;53428:6;;;;;;;;;;;;;;53416:19;;;;;;;;:56:::0;53355:3:::1;;53319:165;;;;53494:30;53505:5;53512:3;53517:6;;53494:30;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16:::0;::::1;74:27:::0;;;;-1:-1;53494:10:0::1;::::0;-1:-1:-1;;;53494:30:0:i:1;54037:308::-:0;43859:22;;-1:-1:-1;;;;;43859:22:0;43845:10;:36;43837:103;;;;-1:-1:-1;;;43837:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54192:38:0;::::1;54184:81;;;::::0;;-1:-1:-1;;;54184:81:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;54276:61;::::0;-1:-1:-1;;;54276:61:0;;::::1;;::::0;::::1;::::0;;;;;;;;;-1:-1:-1;;;;;54276:54:0;::::1;::::0;::::1;::::0;54331:5;;;;54276:61;;;;;54331:5;;;;54276:61;1:33:-1::1;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;54276:61:0;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;54276:61:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;54276:61:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;;;;;54037:308:0:o;48540:298::-;48592:7;;48669:16;48592:7;48696:107;48720:8;48716:1;:12;48696:107;;;48763:28;48778:9;48788:1;48778:12;;;;;;48763:28;48750:41;-1:-1:-1;48730:3:0;;48696:107;;45087:273;43691:11;;-1:-1:-1;;;;;43691:11:0;43677:10;:25;43669:91;;;;-1:-1:-1;;;43669:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45207:1:::1;45188:16;:20;45180:70;;;;-1:-1:-1::0;;;45180:70:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45279:12;::::0;45266:44:::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;;;;;;;::::1;45321:12;:31:::0;45087:273::o;47368:121::-;43691:11;;-1:-1:-1;;;;;43691:11:0;43677:10;:25;43669:91;;;;-1:-1:-1;;;43669:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47438:7:::1;:15:::0;;-1:-1:-1;;47438:15:0::1;::::0;;47469:12:::1;::::0;::::1;::::0;47448:5:::1;::::0;47469:12:::1;47368:121::o:0;46963:270::-;44025:8;;-1:-1:-1;;;;;44025:8:0;44011:10;:22;44003:84;;;;-1:-1:-1;;;44003:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47065:26:0;::::1;47057:75;;;;-1:-1:-1::0;;;47057:75:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47168:8;::::0;47148:43:::1;::::0;-1:-1:-1;;;;;47148:43:0;;::::1;::::0;47168:8:::1;::::0;47148:43:::1;::::0;47168:8:::1;::::0;47148:43:::1;47202:8;:23:::0;;-1:-1:-1;;;;;;47202:23:0::1;-1:-1:-1::0;;;;;47202:23:0;;;::::1;::::0;;;::::1;::::0;;46963:270::o;23600:308::-;23705:10;-1:-1:-1;;;;;23705:22:0;;;;23697:79;;;;-1:-1:-1;;;23697:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23806:10;23787:30;;;;:18;:30;;;;;;;;-1:-1:-1;;;;;23787:40:0;;;;;;;;;;;;:51;;-1:-1:-1;;23787:51:0;;;;;;;;;;23854:46;;;;;;;23787:40;;23806:10;23854:46;;;;;;;;;;;23600:308;;:::o;47241:119::-;43691:11;;-1:-1:-1;;;;;43691:11:0;43677:10;:25;43669:91;;;;-1:-1:-1;;;43669:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47310:7:::1;:14:::0;;-1:-1:-1;;47310:14:0::1;47320:4;47310:14;::::0;;47340:12:::1;::::0;::::1;::::0;47310:7:::1;::::0;47340:12:::1;47241:119::o:0;51226:1564::-;44157:8;:6;:8::i;:::-;:16;;44169:4;44157:16;44149:75;;;;-1:-1:-1;;;44149:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51375:5;51406:27;;::::1;51398:85;;;;-1:-1:-1::0;;;51398:85:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51494:19;51516:10;:8;:10::i;:::-;51494:32;;51558:11;51545:9;:24;;51537:104;;;;-1:-1:-1::0;;;51537:104:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51704:17;51736:20;51773:10:::0;51759:25:::1;::::0;::::1;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;51759:25:0;;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;125:4;109:14;101:6;88:42;144:17;::::0;-1:-1;51759:25:0::1;-1:-1:-1::0;51736:48:0;-1:-1:-1;51800:9:0::1;51795:497;51819:10;51815:1;:14;51795:497;;;51863:41;51877:26;51891:11;51877:6;;51884:1;51877:9;;;;;;;;;;;;;:13;;:26;;;;:::i;:::-;51863:9:::0;;:41:::1;:13;:41;:::i;:::-;51851:53;;51936:5;;51942:1;51936:8;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;51936:8:0;51928:17;;;;;;;;51919:3;51923:1;51919:6;;;;;;;;;;;;;:26;;;::::0;::::1;51982:34;52006:6;;52013:1;52006:9;;;;;;;;;;;;;51982:11;51994:3;51998:1;51994:6;;;;;;;;;;;;;;51982:19;;;;;;:34;51960:11;51972:3;51976:1;51972:6;;;;;;;;;;;;;;51960:19;;;;;;;;:56:::0;52051:32:::1;52073:6:::0;;52080:1;52073:9;;::::1;;;;;;;;;;;52051;52061:3;52065:1;52061:6;;;;;;;52051:32;52031:9;52041:3;52045:1;52041:6;;;;;;;;;;;;;;52031:17;;;;;;;;:52;;;;52222:12;;52201:9;52211:3;52215:1;52211:6;;;;;;;;;;;;;;52201:17;;;;;;;;;:33;;52193:87;;;;-1:-1:-1::0;;;52193:87:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51831:3;;51795:497;;;;52323:9;52310;:22;;52302:104;;;;-1:-1:-1::0;;;52302:104:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52484:11;::::0;:31:::1;::::0;-1:-1:-1;;;;;52484:11:0;;::::1;::::0;:31;::::1;;;::::0;52505:9;;52484:11:::1;:31:::0;:11;:31;52505:9;52484:11;:31;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;52484:31:0;52577:46;52588:10;52600:3;52605:6;;52577:46;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16:::0;::::1;74:27:::0;;;-1:-1;52613:9:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;-1:-1:-1;52577:10:0::1;::::0;-1:-1:-1;;52577:46:0:i:1;:::-;52700:9;52688;:21;52684:99;;;52726:10;:45;52746:24;:9;52760::::0;52746:24:::1;:13;:24;:::i;:::-;52726:45;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;52726:45:0;44235:1;;;;51226:1564:::0;;;;:::o;47940:134::-;47991:7;48023:43;48062:3;48023:34;48040:6;;;;;;;;;-1:-1:-1;;;;;48040:6:0;-1:-1:-1;;;;;48040:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;48040:16:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;48040:16:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;48040:16:0;48023:12;;;:34;:16;:34;:::i;:::-;:38;:43;:38;:43;:::i;:::-;48016:50;;47940:134;:::o;41417:37::-;;;-1:-1:-1;;;;;41417:37:0;;:::o;46545:410::-;43859:22;;-1:-1:-1;;;;;43859:22:0;43845:10;:36;43837:103;;;;-1:-1:-1;;;43837:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46689:40:0;::::1;46681:103;;;;-1:-1:-1::0;;;46681:103:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46834:22;::::0;46800:85:::1;::::0;-1:-1:-1;;;;;46800:85:0;;::::1;::::0;46834:22:::1;::::0;46800:85:::1;::::0;46834:22:::1;::::0;46800:85:::1;46896:22;:51:::0;;-1:-1:-1;;;;;;46896:51:0::1;-1:-1:-1::0;;;;;46896:51:0;;;::::1;::::0;;;::::1;::::0;;46545:410::o;41673:27::-;;;;;;;;;54850:170;43859:22;;-1:-1:-1;;;;;43859:22:0;43845:10;:36;43837:103;;;;-1:-1:-1;;;43837:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54972:40:::1;::::0;;-1:-1:-1;;;54972:40:0;;-1:-1:-1;;;;;54972:40:0;;::::1;;::::0;::::1;::::0;55007:4:::1;54972:40:::0;;;;;;:29;;::::1;::::0;::::1;::::0;:40;;;;;-1:-1:-1;;54972:40:0;;;;;;;;-1:-1:-1;54972:29:0;:40;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;54972:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;41529::0::0;;;;:::o;24197:160::-;-1:-1:-1;;;;;24312:27:0;;;24288:4;24312:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;24197:160::o;24923:795::-;-1:-1:-1;;;;;25152:16:0;;25144:69;;;;-1:-1:-1;;;25144:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25246:18:0;;25254:10;25246:18;;:64;;;25268:34;25285:4;25291:10;25268:16;:34::i;:::-;:42;;25306:4;25268:42;25246:64;25224:169;;;;-1:-1:-1;;;25224:169:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25428:76;25452:5;25428:76;;;;;;;;;;;;;;;;;:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;25428:19:0;;;;;;;;;;;:76;;:23;:76;:::i;:::-;25406:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;25406:19:0;;;;;;;;;;:98;;;;25535:17;;;;;;:28;;25557:5;25535:21;:28::i;:::-;25515:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;25515:17:0;;;;;;;;;;;;;:48;;;;25581:47;;;;;;;;;;;;;;;;;25596:10;;25581:47;;;;;;;;;25641:69;25672:10;25684:4;25690:2;25694;25698:5;25705:4;;25641:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;25641:30:0;;-1:-1:-1;;;25641:69:0:i;28043:100::-;28095:4;28119:16;;;:12;:16;;;;;;;;;28043:100::o;1187:181::-;1245:7;1277:5;;;1301:6;;;;1293:46;;;;;-1:-1:-1;;;1293:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1359:1;1187:181;-1:-1:-1;;;1187:181:0:o;2074:192::-;2160:7;2196:12;2188:6;;;;2180:29;;;;-1:-1:-1;;;2180:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2180:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2232:5:0;;;2074:192::o;32202:592::-;32472:15;:2;-1:-1:-1;;;;;32472:13:0;;:15::i;:::-;32469:318;;;32633:52;;;-1:-1:-1;;;;;32530:155:0;;32547:2;-1:-1:-1;;;;;32530:43:0;;32574:8;32584:4;32590:3;32595:6;32603:4;32530:78;;;;;;;;;;;;;-1:-1:-1;;;;;32530:78:0;-1:-1:-1;;;;;32530:78:0;;;;;;-1:-1:-1;;;;;32530:78:0;-1:-1:-1;;;;;32530:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;32530:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;32530:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;32530:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;32530:78:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32530:78:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;32530:78:0;-1:-1:-1;;;;;;32530:155:0;;32504:271;;;;-1:-1:-1;;;32504:271:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1643:136;1701:7;1728:43;1732:1;1735;1728:43;;;;;;;;;;;;;;;;;:3;:43::i;3456:132::-;3514:7;3541:39;3545:1;3548;3541:39;;;;;;;;;;;;;;;;;:3;:39::i;2517:471::-;2575:7;2820:6;2816:47;;-1:-1:-1;2850:1:0;2843:8;;2816:47;2887:5;;;2891:1;2887;:5;:1;2911:5;;;;;:10;2903:56;;;;-1:-1:-1;;;2903:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28498:462;-1:-1:-1;;;;;28607:16:0;;28599:62;;;;-1:-1:-1;;;28599:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28679:11;28687:2;28679:7;:11::i;:::-;28674:63;;28707:18;28722:2;28707:14;:18::i;:::-;28767:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;28767:17:0;;;;;;;;;;:28;;28789:5;28767:28;:21;:28;:::i;:::-;28747:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;28747:17:0;;;;;;;;;;;:48;;;;28811:53;;;;;;;;;;;;;28826:10;;28811:53;;;;;;;;;28877:75;28908:10;28928:1;28932:2;28936;28940:5;28947:4;28877:30;:75::i;34621:116::-;34688:13;;;;:4;;:13;;;;;:::i;:::-;-1:-1:-1;34717:12:0;;;;;;;34721:4;34717:12;;;-1:-1:-1;;34717:12:0;;;;;;;;;;;;;;;;;34727:1;;34717:12;;34721:4;;34717:12;;;;;34721:4;;34717:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34621:116;:::o;30984:652::-;-1:-1:-1;;;;;31104:21:0;;31096:93;;;;-1:-1:-1;;;31096:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31222:6;:13;31208:3;:10;:27;31200:92;;;;-1:-1:-1;;;31200:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31309:6;31305:247;31325:3;:10;31321:1;:14;31305:247;;;31386:154;31435:6;31442:1;31435:9;;;;;;;;;;;;;;31386:154;;;;;;;;;;;;;;;;;:9;:17;31396:3;31400:1;31396:6;;;;;;;;;;;;;;31386:17;;;;;;;;;;;:26;31404:7;-1:-1:-1;;;;;31386:26:0;-1:-1:-1;;;;;31386:26:0;;;;;;;;;;;;;:30;;:154;;;;;:::i;:::-;31357:9;:17;31367:3;31371:1;31367:6;;;;;;;;;;;;;;;;;;;31357:17;;;;;;;;;;;;;-1:-1:-1;31357:17:0;;;-1:-1:-1;;;;;31357:26:0;;;;;;;;;:183;31337:3;;31305:247;;;;31612:1;-1:-1:-1;;;;;31569:59:0;31595:7;-1:-1:-1;;;;;31569:59:0;31583:10;-1:-1:-1;;;;;31569:59:0;;31616:3;31621:6;31569:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;31569:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;31569:59:0;;;;;;;;;;;;;;;;;;;30984:652;;;:::o;29325:702::-;-1:-1:-1;;;;;29459:16:0;;29451:68;;;;-1:-1:-1;;;29451:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29552:6;:13;29538:3;:10;:27;29530:93;;;;-1:-1:-1;;;29530:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29640:6;29636:217;29656:3;:10;29652:1;:14;29636:217;;;29693:15;29701:3;29705:1;29701:6;;;;;;;29693:15;29688:79;;29729:22;29744:3;29748:1;29744:6;;;;;;;;;;;;;;29729:14;:22::i;:::-;29805:36;29819:9;:17;29829:3;29833:1;29829:6;;;;;;;;;;;;;;29819:17;;;;;;;;;;;:21;29837:2;-1:-1:-1;;;;;29819:21:0;-1:-1:-1;;;;;29819:21:0;;;;;;;;;;;;;29805:6;29812:1;29805:9;;;;;;;;;;;;;;:13;;:36;;;;:::i;:::-;29781:9;:17;29791:3;29795:1;29791:6;;;;;;;;;;;;;;;;;;;29781:17;;;;;;;;;;;;;-1:-1:-1;29781:17:0;;;-1:-1:-1;;;;;29781:21:0;;;;;;;;;:60;29668:3;;29636:217;;;;29908:2;-1:-1:-1;;;;;29870:54:0;29904:1;-1:-1:-1;;;;;29870:54:0;29884:10;-1:-1:-1;;;;;29870:54:0;;29912:3;29917:6;29870:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;29870:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;29870:54:0;;;;;;;;;;;;;;;;;;;29937:82;29973:10;29993:1;29997:2;30001:3;30006:6;30014:4;29937:35;:82::i;31644:550::-;31889:15;:2;-1:-1:-1;;;;;31889:13:0;;:15::i;:::-;31886:301;;;32043:47;;;-1:-1:-1;;;;;31947:143:0;;31964:2;-1:-1:-1;;;;;31947:38:0;;31986:8;31996:4;32002:2;32006:5;32013:4;31947:71;;;;;;;;;;;;;-1:-1:-1;;;;;31947:71:0;-1:-1:-1;;;;;31947:71:0;;;;;;-1:-1:-1;;;;;31947:71:0;-1:-1:-1;;;;;31947:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;31947:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;31947:71:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31947:71:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;31947:71:0;-1:-1:-1;;;;;;31947:143:0;;31921:254;;;;-1:-1:-1;;;31921:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15973:619;16033:4;16501:20;;16344:66;16541:23;;;;;;:42;;-1:-1:-1;16568:15:0;;;16541:42;16533:51;15973:619;-1:-1:-1;;;;15973:619:0:o;4076:345::-;4162:7;4264:12;4257:5;4249:28;;;;-1:-1:-1;;;4249:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;4249:28:0;;4288:9;4304:1;4300;:5;;;;;;;4076:345;-1:-1:-1;;;;;4076:345:0:o;27710:95::-;27774:16;;;;:12;:16;;;;;:23;;-1:-1:-1;;27774:23:0;27793:4;27774:23;;;27710:95::o;41228:13797::-;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41228:13797:0;;;-1:-1:-1;41228:13797:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://e530b4a1f5eb2232b21aaac217af56dac744980c9da31d315691c0f0d0efb9bb
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.