ERC-1155
Overview
Max Total Supply
0 UNIF721
Holders
3
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:
Uniftyverse721
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-13 */ pragma solidity ^0.5.17; contract CloneFactory { function createClone(address target) internal returns (address result) { bytes20 targetBytes = bytes20(target); assembly { let clone := mload(0x40) mstore(clone, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000) mstore(add(clone, 0x14), targetBytes) mstore(add(clone, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000) result := create(0, clone, 0x37) } } } /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ 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); } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } function initOwnable() internal{ address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _msgSender() == _owner; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } } contract MinterRole is Context { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); Roles.Role private _minters; function initMinter() internal{ _addMinter(_msgSender()); } constructor () internal { _addMinter(_msgSender()); } modifier onlyMinter() { require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role"); _; } function isMinter(address account) public view returns (bool) { return _minters.has(account); } function addMinter(address account) public onlyMinter { _addMinter(account); } function renounceMinter() public { _removeMinter(_msgSender()); } function _addMinter(address account) internal { _minters.add(account); emit MinterAdded(account); } function _removeMinter(address account) internal { _minters.remove(account); emit MinterRemoved(account); } } /** * @title WhitelistAdminRole * @dev WhitelistAdmins are responsible for assigning and removing Whitelisted accounts. */ contract WhitelistAdminRole is Context { using Roles for Roles.Role; event WhitelistAdminAdded(address indexed account); event WhitelistAdminRemoved(address indexed account); Roles.Role private _whitelistAdmins; function initWhiteListAdmin() internal{ _addWhitelistAdmin(_msgSender()); } constructor () internal { _addWhitelistAdmin(_msgSender()); } modifier onlyWhitelistAdmin() { require(isWhitelistAdmin(_msgSender()), "WhitelistAdminRole: caller does not have the WhitelistAdmin role"); _; } function isWhitelistAdmin(address account) public view returns (bool) { return _whitelistAdmins.has(account); } function addWhitelistAdmin(address account) public onlyWhitelistAdmin { _addWhitelistAdmin(account); } function renounceWhitelistAdmin() public { _removeWhitelistAdmin(_msgSender()); } function _addWhitelistAdmin(address account) internal { _whitelistAdmins.add(account); emit WhitelistAdminAdded(account); } function _removeWhitelistAdmin(address account) internal { _whitelistAdmins.remove(account); emit WhitelistAdminRemoved(account); } } /** * @title ERC165 * @dev https://github.com/ethereum/EIPs/blob/master/EIPS/eip-165.md */ interface IERC165 { /** * @notice Query if a contract implements an interface * @dev Interface identification is specified in ERC-165. This function * uses less than 30,000 gas * @param _interfaceId The interface identifier, as specified in ERC-165 */ function supportsInterface(bytes4 _interfaceId) external view returns (bool); } /** * @title SafeMath * @dev Unsigned math operations with safety checks that revert on error */ library SafeMath { /** * @dev Multiplies two unsigned integers, reverts on 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-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath#mul: OVERFLOW"); return c; } /** * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath#div: DIVISION_BY_ZERO"); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath#sub: UNDERFLOW"); uint256 c = a - b; return c; } /** * @dev Adds two unsigned integers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath#add: OVERFLOW"); return c; } /** * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, "SafeMath#mod: DIVISION_BY_ZERO"); return a % b; } } /** * @dev ERC-1155 interface for accepting safe transfers. */ interface IERC1155TokenReceiver { /** * @notice Handle the receipt of a single ERC1155 token type * @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeTransferFrom` after the balance has been updated * This function MAY throw to revert and reject the transfer * Return of other amount than the magic value MUST result in the transaction being reverted * Note: The token contract address is always the message sender * @param _operator The address which called the `safeTransferFrom` function * @param _from The address which previously owned the token * @param _id The id of the token being transferred * @param _amount The amount of tokens being transferred * @param _data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` */ function onERC1155Received(address _operator, address _from, uint256 _id, uint256 _amount, bytes calldata _data) external returns(bytes4); /** * @notice Handle the receipt of multiple ERC1155 token types * @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeBatchTransferFrom` after the balances have been updated * This function MAY throw to revert and reject the transfer * Return of other amount than the magic value WILL result in the transaction being reverted * Note: The token contract address is always the message sender * @param _operator The address which called the `safeBatchTransferFrom` function * @param _from The address which previously owned the token * @param _ids An array containing ids of each token being transferred * @param _amounts An array containing amounts of each token being transferred * @param _data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` */ function onERC1155BatchReceived(address _operator, address _from, uint256[] calldata _ids, uint256[] calldata _amounts, bytes calldata _data) external returns(bytes4); /** * @notice Indicates whether a contract implements the `ERC1155TokenReceiver` functions and so can accept ERC1155 token types. * @param interfaceID The ERC-165 interface ID that is queried for support.s * @dev This function MUST return true if it implements the ERC1155TokenReceiver interface and ERC-165 interface. * This function MUST NOT consume more than 5,000 gas. * @return Wheter ERC-165 or ERC1155TokenReceiver interfaces are supported. */ function supportsInterface(bytes4 interfaceID) external view returns (bool); } interface IERC1155 { // Events /** * @dev Either TransferSingle or TransferBatch MUST emit when tokens are transferred, including zero amount transfers as well as minting or burning * Operator MUST be msg.sender * When minting/creating tokens, the `_from` field MUST be set to `0x0` * When burning/destroying tokens, the `_to` field MUST be set to `0x0` * The total amount transferred from address 0x0 minus the total amount transferred to 0x0 may be used by clients and exchanges to be added to the "circulating supply" for a given token ID * To broadcast the existence of a token ID with no initial balance, the contract SHOULD emit the TransferSingle event from `0x0` to `0x0`, with the token creator as `_operator`, and a `_amount` of 0 */ event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _amount); /** * @dev Either TransferSingle or TransferBatch MUST emit when tokens are transferred, including zero amount transfers as well as minting or burning * Operator MUST be msg.sender * When minting/creating tokens, the `_from` field MUST be set to `0x0` * When burning/destroying tokens, the `_to` field MUST be set to `0x0` * The total amount transferred from address 0x0 minus the total amount transferred to 0x0 may be used by clients and exchanges to be added to the "circulating supply" for a given token ID * To broadcast the existence of multiple token IDs with no initial balance, this SHOULD emit the TransferBatch event from `0x0` to `0x0`, with the token creator as `_operator`, and a `_amount` of 0 */ event TransferBatch(address indexed _operator, address indexed _from, address indexed _to, uint256[] _ids, uint256[] _amounts); /** * @dev MUST emit when an approval is updated */ event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved); /** * @dev MUST emit when the URI is updated for a token ID * URIs are defined in RFC 3986 * The URI MUST point a JSON file that conforms to the "ERC-1155 Metadata JSON Schema" */ event URI(string _amount, uint256 indexed _id); /** * @notice Transfers amount of an _id from the _from address to the _to address specified * @dev MUST emit TransferSingle event on success * Caller must be approved to manage the _from account's tokens (see isApprovedForAll) * MUST throw if `_to` is the zero address * MUST throw if balance of sender for token `_id` is lower than the `_amount` sent * MUST throw on any other error * When transfer is complete, this function MUST check if `_to` is a smart contract (code size > 0). If so, it MUST call `onERC1155Received` on `_to` and revert if the return amount is not `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * @param _from Source address * @param _to Target address * @param _id ID of the token type * @param _amount Transfered amount * @param _data Additional data with no specified format, sent in call to `_to` */ function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount, bytes calldata _data) external; /** * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call) * @dev MUST emit TransferBatch event on success * Caller must be approved to manage the _from account's tokens (see isApprovedForAll) * MUST throw if `_to` is the zero address * MUST throw if length of `_ids` is not the same as length of `_amounts` * MUST throw if any of the balance of sender for token `_ids` is lower than the respective `_amounts` sent * MUST throw on any other error * When transfer is complete, this function MUST check if `_to` is a smart contract (code size > 0). If so, it MUST call `onERC1155BatchReceived` on `_to` and revert if the return amount is not `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * Transfers and events MUST occur in the array order they were submitted (_ids[0] before _ids[1], etc) * @param _from Source addresses * @param _to Target addresses * @param _ids IDs of each token type * @param _amounts Transfer amounts per token type * @param _data Additional data with no specified format, sent in call to `_to` */ function safeBatchTransferFrom(address _from, address _to, uint256[] calldata _ids, uint256[] calldata _amounts, bytes calldata _data) external; /** * @notice Get the balance of an account's Tokens * @param _owner The address of the token holder * @param _id ID of the Token * @return The _owner's balance of the Token type requested */ function balanceOf(address _owner, uint256 _id) external view returns (uint256); /** * @notice Get the balance of multiple account/token pairs * @param _owners The addresses of the token holders * @param _ids ID of the Tokens * @return The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair) */ function balanceOfBatch(address[] calldata _owners, uint256[] calldata _ids) external view returns (uint256[] memory); /** * @notice Enable or disable approval for a third party ("operator") to manage all of caller's tokens * @dev MUST emit the ApprovalForAll event on success * @param _operator Address to add to the set of authorized operators * @param _approved True if the operator is approved, false to revoke approval */ function setApprovalForAll(address _operator, bool _approved) external; /** * @notice Queries the approval status of an operator for a given owner * @param _owner The owner of the Tokens * @param _operator Address of authorized operator * @return True if the operator is approved, false if not */ function isApprovedForAll(address _owner, address _operator) external view returns (bool isOperator); } 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) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @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"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call.value(value)(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.3._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.3._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Implementation of Multi-Token Standard contract */ contract ERC1155 is IERC165 { using SafeMath for uint256; using Address for address; /***********************************| | Variables and Events | |__________________________________*/ // onReceive function signatures bytes4 constant internal ERC1155_RECEIVED_VALUE = 0xf23a6e61; bytes4 constant internal ERC1155_BATCH_RECEIVED_VALUE = 0xbc197c81; // Objects balances mapping (address => mapping(uint256 => uint256)) internal balances; // Operator Functions mapping (address => mapping(address => bool)) internal operators; // Events event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _amount); event TransferBatch(address indexed _operator, address indexed _from, address indexed _to, uint256[] _ids, uint256[] _amounts); event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved); event URI(string _uri, uint256 indexed _id); /***********************************| | Public Transfer Functions | |__________________________________*/ /** * @notice Transfers amount amount of an _id from the _from address to the _to address specified * @param _from Source address * @param _to Target address * @param _id ID of the token type * @param _amount Transfered amount * @param _data Additional data with no specified format, sent in call to `_to` */ function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount, bytes memory _data) public { require((msg.sender == _from) || isApprovedForAll(_from, msg.sender), "ERC1155#safeTransferFrom: INVALID_OPERATOR"); require(_to != address(0),"ERC1155#safeTransferFrom: INVALID_RECIPIENT"); // require(_amount >= balances[_from][_id]) is not necessary since checked with safemath operations _safeTransferFrom(_from, _to, _id, _amount); _callonERC1155Received(_from, _to, _id, _amount, _data); } /** * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call) * @param _from Source addresses * @param _to Target addresses * @param _ids IDs of each token type * @param _amounts Transfer amounts per token type * @param _data Additional data with no specified format, sent in call to `_to` */ function safeBatchTransferFrom(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data) public { // Requirements require((msg.sender == _from) || isApprovedForAll(_from, msg.sender), "ERC1155#safeBatchTransferFrom: INVALID_OPERATOR"); require(_to != address(0), "ERC1155#safeBatchTransferFrom: INVALID_RECIPIENT"); _safeBatchTransferFrom(_from, _to, _ids, _amounts); _callonERC1155BatchReceived(_from, _to, _ids, _amounts, _data); } /***********************************| | Internal Transfer Functions | |__________________________________*/ /** * @notice Transfers amount amount of an _id from the _from address to the _to address specified * @param _from Source address * @param _to Target address * @param _id ID of the token type * @param _amount Transfered amount */ function _safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount) internal { // Update balances balances[_from][_id] = balances[_from][_id].sub(_amount); // Subtract amount balances[_to][_id] = balances[_to][_id].add(_amount); // Add amount // Emit event emit TransferSingle(msg.sender, _from, _to, _id, _amount); } /** * @notice Verifies if receiver is contract and if so, calls (_to).onERC1155Received(...) */ function _callonERC1155Received(address _from, address _to, uint256 _id, uint256 _amount, bytes memory _data) internal { // Check if recipient is contract if (_to.isContract()) { bytes4 retval = IERC1155TokenReceiver(_to).onERC1155Received(msg.sender, _from, _id, _amount, _data); require(retval == ERC1155_RECEIVED_VALUE, "ERC1155#_callonERC1155Received: INVALID_ON_RECEIVE_MESSAGE"); } } /** * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call) * @param _from Source addresses * @param _to Target addresses * @param _ids IDs of each token type * @param _amounts Transfer amounts per token type */ function _safeBatchTransferFrom(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts) internal { require(_ids.length == _amounts.length, "ERC1155#_safeBatchTransferFrom: INVALID_ARRAYS_LENGTH"); // Number of transfer to execute uint256 nTransfer = _ids.length; // Executing all transfers for (uint256 i = 0; i < nTransfer; i++) { // Update storage balance of previous bin balances[_from][_ids[i]] = balances[_from][_ids[i]].sub(_amounts[i]); balances[_to][_ids[i]] = balances[_to][_ids[i]].add(_amounts[i]); } // Emit event emit TransferBatch(msg.sender, _from, _to, _ids, _amounts); } /** * @notice Verifies if receiver is contract and if so, calls (_to).onERC1155BatchReceived(...) */ function _callonERC1155BatchReceived(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data) internal { // Pass data if recipient is contract if (_to.isContract()) { bytes4 retval = IERC1155TokenReceiver(_to).onERC1155BatchReceived(msg.sender, _from, _ids, _amounts, _data); require(retval == ERC1155_BATCH_RECEIVED_VALUE, "ERC1155#_callonERC1155BatchReceived: INVALID_ON_RECEIVE_MESSAGE"); } } /***********************************| | Operator Functions | |__________________________________*/ /** * @notice Enable or disable approval for a third party ("operator") to manage all of caller's tokens * @param _operator Address to add to the set of authorized operators * @param _approved True if the operator is approved, false to revoke approval */ function setApprovalForAll(address _operator, bool _approved) external { // Update operator status operators[msg.sender][_operator] = _approved; emit ApprovalForAll(msg.sender, _operator, _approved); } /** * @notice Queries the approval status of an operator for a given owner * @param _owner The owner of the Tokens * @param _operator Address of authorized operator * @return True if the operator is approved, false if not */ function isApprovedForAll(address _owner, address _operator) public view returns (bool isOperator) { return operators[_owner][_operator]; } /***********************************| | Balance Functions | |__________________________________*/ /** * @notice Get the balance of an account's Tokens * @param _owner The address of the token holder * @param _id ID of the Token * @return The _owner's balance of the Token type requested */ function balanceOf(address _owner, uint256 _id) public view returns (uint256) { return balances[_owner][_id]; } /** * @notice Get the balance of multiple account/token pairs * @param _owners The addresses of the token holders * @param _ids ID of the Tokens * @return The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair) */ function balanceOfBatch(address[] memory _owners, uint256[] memory _ids) public view returns (uint256[] memory) { require(_owners.length == _ids.length, "ERC1155#balanceOfBatch: INVALID_ARRAY_LENGTH"); // Variables uint256[] memory batchBalances = new uint256[](_owners.length); // Iterate over each owner and token ID for (uint256 i = 0; i < _owners.length; i++) { batchBalances[i] = balances[_owners[i]][_ids[i]]; } return batchBalances; } /***********************************| | ERC165 Functions | |__________________________________*/ /** * INTERFACE_SIGNATURE_ERC165 = bytes4(keccak256("supportsInterface(bytes4)")); */ bytes4 constant private INTERFACE_SIGNATURE_ERC165 = 0x01ffc9a7; /** * INTERFACE_SIGNATURE_ERC1155 = * bytes4(keccak256("safeTransferFrom(address,address,uint256,uint256,bytes)")) ^ * bytes4(keccak256("safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)")) ^ * bytes4(keccak256("balanceOf(address,uint256)")) ^ * bytes4(keccak256("balanceOfBatch(address[],uint256[])")) ^ * bytes4(keccak256("setApprovalForAll(address,bool)")) ^ * bytes4(keccak256("isApprovedForAll(address,address)")); */ bytes4 constant private INTERFACE_SIGNATURE_ERC1155 = 0xd9b67a26; /** * @notice Query if a contract implements an interface * @param _interfaceID The interface identifier, as specified in ERC-165 * @return `true` if the contract implements `_interfaceID` and */ function supportsInterface(bytes4 _interfaceID) external view returns (bool) { if (_interfaceID == INTERFACE_SIGNATURE_ERC165 || _interfaceID == INTERFACE_SIGNATURE_ERC1155) { return true; } return false; } } /** * @notice Contract that handles metadata related methods. * @dev Methods assume a deterministic generation of URI based on token IDs. * Methods also assume that URI uses hex representation of token IDs. */ contract ERC1155Metadata { // URI's default URI prefix string internal baseMetadataURI; event URI(string _uri, uint256 indexed _id); /***********************************| | Metadata Public Function s | |__________________________________*/ /** * @notice A distinct Uniform Resource Identifier (URI) for a given token. * @dev URIs are defined in RFC 3986. * URIs are assumed to be deterministically generated based on token ID * Token IDs are assumed to be represented in their hex format in URIs * @return URI string */ function uri(uint256 _id) public view returns (string memory) { return string(abi.encodePacked(baseMetadataURI, _uint2str(_id), ".json")); } /***********************************| | Metadata Internal Functions | |__________________________________*/ /** * @notice Will emit default URI log event for corresponding token _id * @param _tokenIDs Array of IDs of tokens to log default URI */ function _logURIs(uint256[] memory _tokenIDs) internal { string memory baseURL = baseMetadataURI; string memory tokenURI; for (uint256 i = 0; i < _tokenIDs.length; i++) { tokenURI = string(abi.encodePacked(baseURL, _uint2str(_tokenIDs[i]), ".json")); emit URI(tokenURI, _tokenIDs[i]); } } /** * @notice Will emit a specific URI log event for corresponding token * @param _tokenIDs IDs of the token corresponding to the _uris logged * @param _URIs The URIs of the specified _tokenIDs */ function _logURIs(uint256[] memory _tokenIDs, string[] memory _URIs) internal { require(_tokenIDs.length == _URIs.length, "ERC1155Metadata#_logURIs: INVALID_ARRAYS_LENGTH"); for (uint256 i = 0; i < _tokenIDs.length; i++) { emit URI(_URIs[i], _tokenIDs[i]); } } /** * @notice Will update the base URL of token's URI * @param _newBaseMetadataURI New base URL of token's URI */ function _setBaseMetadataURI(string memory _newBaseMetadataURI) internal { baseMetadataURI = _newBaseMetadataURI; } /***********************************| | Utility Internal Functions | |__________________________________*/ /** * @notice Convert uint256 to string * @param _i Unsigned integer to convert to string */ function _uint2str(uint256 _i) internal pure returns (string memory _uintAsString) { if (_i == 0) { return "0"; } uint256 j = _i; uint256 ii = _i; uint256 len; // Get number of bytes while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint256 k = len - 1; // Get each individual ASCII while (ii != 0) { bstr[k--] = byte(uint8(48 + ii % 10)); ii /= 10; } // Convert to string return string(bstr); } } /** * @dev Multi-Fungible Tokens with minting and burning methods. These methods assume * a parent contract to be executed as they are `internal` functions */ contract ERC1155MintBurn is ERC1155 { /****************************************| | Minting Functions | |_______________________________________*/ /** * @notice Mint _amount of tokens of a given id * @param _to The address to mint tokens to * @param _id Token id to mint * @param _amount The amount to be minted * @param _data Data to pass if receiver is contract */ function _mint(address _to, uint256 _id, uint256 _amount, bytes memory _data) internal { // Add _amount balances[_to][_id] = balances[_to][_id].add(_amount); // Emit event emit TransferSingle(msg.sender, address(0x0), _to, _id, _amount); // Calling onReceive method if recipient is contract _callonERC1155Received(address(0x0), _to, _id, _amount, _data); } /** * @notice Mint tokens for each ids in _ids * @param _to The address to mint tokens to * @param _ids Array of ids to mint * @param _amounts Array of amount of tokens to mint per id * @param _data Data to pass if receiver is contract */ function _batchMint(address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data) internal { require(_ids.length == _amounts.length, "ERC1155MintBurn#batchMint: INVALID_ARRAYS_LENGTH"); // Number of mints to execute uint256 nMint = _ids.length; // Executing all minting for (uint256 i = 0; i < nMint; i++) { // Update storage balance balances[_to][_ids[i]] = balances[_to][_ids[i]].add(_amounts[i]); } // Emit batch mint event emit TransferBatch(msg.sender, address(0x0), _to, _ids, _amounts); // Calling onReceive method if recipient is contract _callonERC1155BatchReceived(address(0x0), _to, _ids, _amounts, _data); } /****************************************| | Burning Functions | |_______________________________________*/ /** * @notice Burn _amount of tokens of a given token id * @param _from The address to burn tokens from * @param _id Token id to burn * @param _amount The amount to be burned */ function _burn(address _from, uint256 _id, uint256 _amount) internal { //Substract _amount balances[_from][_id] = balances[_from][_id].sub(_amount); // Emit event emit TransferSingle(msg.sender, _from, address(0x0), _id, _amount); } /** * @notice Burn tokens of given token id for each (_ids[i], _amounts[i]) pair * @param _from The address to burn tokens from * @param _ids Array of token ids to burn * @param _amounts Array of the amount to be burned */ function _batchBurn(address _from, uint256[] memory _ids, uint256[] memory _amounts) internal { require(_ids.length == _amounts.length, "ERC1155MintBurn#batchBurn: INVALID_ARRAYS_LENGTH"); // Number of mints to execute uint256 nBurn = _ids.length; // Executing all minting for (uint256 i = 0; i < nBurn; i++) { // Update storage balance balances[_from][_ids[i]] = balances[_from][_ids[i]].sub(_amounts[i]); } // Emit batch mint event emit TransferBatch(msg.sender, _from, address(0x0), _ids, _amounts); } } library Strings { // via https://github.com/oraclize/ethereum-api/blob/master/oraclizeAPI_0.5.sol function strConcat( string memory _a, string memory _b, string memory _c, string memory _d, string memory _e ) internal pure returns (string memory) { bytes memory _ba = bytes(_a); bytes memory _bb = bytes(_b); bytes memory _bc = bytes(_c); bytes memory _bd = bytes(_d); bytes memory _be = bytes(_e); string memory abcde = new string(_ba.length + _bb.length + _bc.length + _bd.length + _be.length); bytes memory babcde = bytes(abcde); uint256 k = 0; for (uint256 i = 0; i < _ba.length; i++) babcde[k++] = _ba[i]; for (uint256 i = 0; i < _bb.length; i++) babcde[k++] = _bb[i]; for (uint256 i = 0; i < _bc.length; i++) babcde[k++] = _bc[i]; for (uint256 i = 0; i < _bd.length; i++) babcde[k++] = _bd[i]; for (uint256 i = 0; i < _be.length; i++) babcde[k++] = _be[i]; return string(babcde); } function strConcat( string memory _a, string memory _b, string memory _c, string memory _d ) internal pure returns (string memory) { return strConcat(_a, _b, _c, _d, ""); } function strConcat( string memory _a, string memory _b, string memory _c ) internal pure returns (string memory) { return strConcat(_a, _b, _c, "", ""); } function strConcat(string memory _a, string memory _b) internal pure returns (string memory) { return strConcat(_a, _b, "", "", ""); } function uint2str(uint256 _i) internal pure returns (string memory _uintAsString) { if (_i == 0) { return "0"; } uint256 j = _i; uint256 len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint256 k = len - 1; while (_i != 0) { bstr[k--] = bytes1(uint8(48 + (_i % 10))); _i /= 10; } return string(bstr); } } contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } /** * @title ERC1155Tradable * ERC1155Tradable - ERC1155 contract that whitelists an operator address, * has create and mint functionality, and supports useful standards from OpenZeppelin, like _exists(), name(), symbol(), and totalSupply() */ contract ERC1155Tradable is ERC1155, ERC1155MintBurn, ERC1155Metadata, Ownable, MinterRole, WhitelistAdminRole { using Strings for string; struct ConvertedNft { address _address; uint256 _i_id; } address proxyRegistryAddress; uint256 private _currentTokenID = 0; mapping(uint256 => address) public creators; mapping(uint256 => uint256) public tokenSupply; mapping(uint256 => uint256) public tokenMaxSupply; // collection address => nft id = this NFTs id // required to determine if creation or minting needs to be performed mapping(address => mapping ( bytes => uint256 ) ) public converted; mapping(bytes => ConvertedNft) public convertedMap; // Contract name string public name; // Contract symbol string public symbol; mapping(uint256 => string) private uris; bool private constructed = false; function init( string memory _name, string memory _symbol, address _proxyRegistryAddress ) public { require(!constructed, "ERC155 Tradeable must not be constructed yet"); constructed = true; name = _name; symbol = _symbol; proxyRegistryAddress = _proxyRegistryAddress; super.initOwnable(); super.initMinter(); super.initWhiteListAdmin(); } constructor( string memory _name, string memory _symbol, address _proxyRegistryAddress ) public { constructed = true; name = _name; symbol = _symbol; proxyRegistryAddress = _proxyRegistryAddress; } function isConverted(address _erc721Address, bytes calldata _id) external view returns(bool){ return converted[_erc721Address][_id] > 0; } function getConvertedId(address _erc721Address, bytes calldata _id) external view returns(uint256){ return converted[_erc721Address][_id]; } function getConvertedSrc(uint256 _id) external view returns(address,uint256){ bytes memory _b_id = abi.encodePacked(_id); return (convertedMap[_b_id]._address,convertedMap[_b_id]._i_id); } function resetConversion(address _erc721Address, bytes calldata _id) external onlyWhitelistAdmin{ converted[_erc721Address][_id] = 0; } function removeWhitelistAdmin(address account) public onlyOwner { _removeWhitelistAdmin(account); } function removeMinter(address account) public onlyOwner { _removeMinter(account); } function uri(uint256 _id) public view returns (string memory) { require(_exists(_id), "ERC721Tradable#uri: NONEXISTENT_TOKEN"); //return super.uri(_id); if(bytes(uris[_id]).length > 0){ return uris[_id]; } return Strings.strConcat(baseMetadataURI, Strings.uint2str(_id)); } /** * @dev Returns the total quantity for a token ID * @param _id uint256 ID of the token to query * @return amount of token in existence */ function totalSupply(uint256 _id) public view returns (uint256) { return tokenSupply[_id]; } /** * @dev Returns the max quantity for a token ID * @param _id uint256 ID of the token to query * @return amount of token in existence */ function maxSupply(uint256 _id) public view returns (uint256) { return tokenMaxSupply[_id]; } /** * @dev Will update the base URL of token's URI * @param _newBaseMetadataURI New base URL of token's URI */ function setBaseMetadataURI(string memory _newBaseMetadataURI) public onlyWhitelistAdmin { _setBaseMetadataURI(_newBaseMetadataURI); } /** * @dev Creates a new token type and assigns _initialSupply to an address * @param _uri Optional URI for this token type * @return The newly created token ID */ function create( address _owner, uint256 _amount, string calldata _uri, bytes calldata _data, address _srcAddress, uint256 _srcId ) external onlyWhitelistAdmin returns (uint256 tokenId) { require(_amount > 0, "Amount mustn't be zero."); bytes memory srcIdBytes = abi.encodePacked(_srcId); require(converted[_srcAddress][srcIdBytes] == 0, "Converted already."); uint256 _id = _getNextTokenID(); _incrementTokenTypeId(); creators[_id] = msg.sender; uris[_id] = _uri; emit URI(_uri, _id); if (_amount != 0) _mint(_owner, _id, _amount, _data); converted[_srcAddress][srcIdBytes] = _id; ConvertedNft memory _converted = ConvertedNft({ _address : _srcAddress, _i_id : _srcId }); convertedMap[abi.encodePacked(_id)] = _converted; tokenSupply[_id] = _amount; tokenMaxSupply[_id] = _amount; return _id; } function updateUri(uint256 _id, string calldata _uri) external onlyWhitelistAdmin{ if (bytes(_uri).length > 0) { uris[_id] = _uri; emit URI(_uri, _id); } else{ emit URI(string(abi.encodePacked(baseMetadataURI, _uint2str(_id), ".json")), _id); } } function burn(address _address, uint256 _id, uint256 _amount) external onlyWhitelistAdmin { require((msg.sender == _address) || isApprovedForAll(_address, msg.sender), "ERC1155#burn: INVALID_OPERATOR"); require(balances[_address][_id] >= _amount, "Trying to burn more tokens than you own"); _burn(_address, _id, _amount); } function updateProxyRegistryAddress(address _proxyRegistryAddress) external onlyWhitelistAdmin{ require(_proxyRegistryAddress != address(0), "No zero address"); proxyRegistryAddress = _proxyRegistryAddress; } /** * @dev Mints some amount of tokens to an address * @param _id Token ID to mint * @param _quantity Amount of tokens to mint * @param _data Data to pass if receiver is contract */ function mint( address _owner, uint256 _id, uint256 _quantity, bytes memory _data ) public onlyMinter { uint256 tokenId = _id; require(tokenSupply[tokenId].add(_quantity) <= tokenMaxSupply[tokenId], "Max supply reached"); _mint(msg.sender, _id, _quantity, _data); tokenSupply[_id] = tokenSupply[_id].add(_quantity); } /** * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-free listings. */ function isApprovedForAll(address _owner, address _operator) public view returns (bool isOperator) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(_owner)) == _operator) { return true; } return ERC1155.isApprovedForAll(_owner, _operator); } /** * @dev Returns whether the specified token exists by checking to see if it has a creator * @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 creators[_id] != address(0); } /** * @dev calculates the next token ID based on value of _currentTokenID * @return uint256 for the next token ID */ function _getNextTokenID() private view returns (uint256) { return _currentTokenID.add(1); } /** * @dev increments the value of _currentTokenID */ function _incrementTokenTypeId() private { _currentTokenID++; } } /** * @title Unifty * Unifty - NFT Tools * * Rinkeby Opensea: 0xf57b2c51ded3a29e6891aba85459d600256cf317 * Mainnet Opensea: 0xa5409ec958c83c3f309868babaca7c86dcb077c1 */ contract Uniftyverse721 is ERC1155Tradable { string private _contractURI = "https://unifty.io/meta/uniftyverse721.json"; constructor(address _proxyRegistryAddress) public ERC1155Tradable("Uniftyverse 721", "UNIF721", _proxyRegistryAddress) { _setBaseMetadataURI("https://unifty.io/meta/"); } function contractURI() public view returns (string memory) { return _contractURI; } function setContractURI(string memory _uri) public onlyWhitelistAdmin{ _contractURI = _uri; } function version() external pure returns (uint256) { return 1; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","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":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"_amounts","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":"_amount","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_uri","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminRemoved","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address[]","name":"_owners","type":"address[]"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"converted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes","name":"","type":"bytes"}],"name":"convertedMap","outputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_i_id","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"bytes","name":"_data","type":"bytes"},{"internalType":"address","name":"_srcAddress","type":"address"},{"internalType":"uint256","name":"_srcId","type":"uint256"}],"name":"create","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"creators","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_erc721Address","type":"address"},{"internalType":"bytes","name":"_id","type":"bytes"}],"name":"getConvertedId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getConvertedSrc","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"init","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_erc721Address","type":"address"},{"internalType":"bytes","name":"_id","type":"bytes"}],"name":"isConverted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelistAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_erc721Address","type":"address"},{"internalType":"bytes","name":"_id","type":"bytes"}],"name":"resetConversion","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_newBaseMetadataURI","type":"string"}],"name":"setBaseMetadataURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setContractURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes4","name":"_interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"updateProxyRegistryAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"updateUri","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"}]
Contract Creation Code
60006007556010805460ff1916905560e0604052602a6080818152906200429160a03980516200003891601191602090910190620003bc565b503480156200004657600080fd5b50604051620042dd380380620042dd833981810160405260208110156200006c57600080fd5b5051604080518082018252600f81526e556e6966747976657273652037323160881b60208281019190915282518084019093526007835266554e494637323160c81b9083015290826000620000c96001600160e01b036200020416565b600380546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200013d6200012e6001600160e01b036200020416565b6001600160e01b036200020916565b62000163620001546001600160e01b036200020416565b6001600160e01b036200025b16565b6010805460ff1916600117905582516200018590600d906020860190620003bc565b5081516200019b90600e906020850190620003bc565b50600680546001600160a01b0319166001600160a01b0392909216919091179055505060408051808201909152601781527f68747470733a2f2f756e696674792e696f2f6d6574612f0000000000000000006020820152620001fd90620002ad565b506200045e565b335b90565b62000224816004620002c660201b620039511790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b62000276816005620002c660201b620039511790919060201c565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b8051620002c2906002906020840190620003bc565b5050565b620002db82826001600160e01b036200035316565b156200032e576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b0382166200039c5760405162461bcd60e51b8152600401808060200182810382526022815260200180620042bb6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003ff57805160ff19168380011785556200042f565b828001600101855582156200042f579182015b828111156200042f57825182559160200191906001019062000412565b506200043d92915062000441565b5090565b6200020691905b808211156200043d576000815560010162000448565b613e23806200046e6000396000f3fe608060405234801561001057600080fd5b50600436106102675760003560e01c80637362d9c811610151578063aa271e1a116100c3578063d588777c11610087578063d588777c14610fd3578063e8a3d48514611077578063e985e9c51461107f578063f242432a146110ad578063f2fde38b14611176578063f5298aca1461119c57610267565b8063aa271e1a14610ecf578063bb5f747b14610ef5578063bd85b03914610f1b578063cd53d08e14610f38578063d5145cfe14610f5557610267565b8063938e3d7b11610115578063938e3d7b14610d8757806395d89b4114610e2b578063983b2d5614610e335780639865027514610e595780639e135d9614610e61578063a22cb46514610ea157610267565b80637362d9c814610c745780637e518ec814610c9a578063869f759414610d3e5780638da5cb5b14610d5b5780638f32d59b14610d7f57610267565b8063315a6230116101ea57806354fd4d50116101ae57806354fd4d50146109965780636897e9741461099e5780636d5c8ec4146109c45780636ee5741a14610a78578063715018a614610bac578063731133e914610bb457610267565b8063315a62301461063d57806344cd29fc1461071f578063497c84671461079d5780634c5a628c1461081b5780634e1273f41461082357610267565b80630e89341c116102315780630e89341c146103f657806316f6c2da146104135780632693ebf2146104395780632eb2c2d6146104565780633092afd51461061757610267565b80624221f01461026c578062fdd58e1461029b57806301ffc9a7146102c7578063057512041461030257806306fdde0314610379575b600080fd5b6102896004803603602081101561028257600080fd5b50356111ce565b60408051918252519081900360200190f35b610289600480360360408110156102b157600080fd5b506001600160a01b0381351690602001356111e0565b6102ee600480360360208110156102dd57600080fd5b50356001600160e01b031916611209565b604080519115158252519081900360200190f35b6103776004803603604081101561031857600080fd5b81359190810190604081016020820135600160201b81111561033957600080fd5b82018360208201111561034b57600080fd5b803590602001918460018302840111600160201b8311171561036c57600080fd5b509092509050611250565b005b610381611494565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103bb5781810151838201526020016103a3565b50505050905090810190601f1680156103e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103816004803603602081101561040c57600080fd5b5035611522565b6103776004803603602081101561042957600080fd5b50356001600160a01b03166116cb565b6102896004803603602081101561044f57600080fd5b5035611780565b610377600480360360a081101561046c57600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b81111561049f57600080fd5b8201836020820111156104b157600080fd5b803590602001918460208302840111600160201b831117156104d257600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561052157600080fd5b82018360208201111561053357600080fd5b803590602001918460208302840111600160201b8311171561055457600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156105a357600080fd5b8201836020820111156105b557600080fd5b803590602001918460018302840111600160201b831117156105d657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611792945050505050565b6103776004803603602081101561062d57600080fd5b50356001600160a01b031661184e565b610289600480360360c081101561065357600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561068257600080fd5b82018360208201111561069457600080fd5b803590602001918460018302840111600160201b831117156106b557600080fd5b919390929091602081019035600160201b8111156106d257600080fd5b8201836020820111156106e457600080fd5b803590602001918460018302840111600160201b8311171561070557600080fd5b91935091506001600160a01b0381351690602001356118a1565b6102896004803603604081101561073557600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561075f57600080fd5b82018360208201111561077157600080fd5b803590602001918460018302840111600160201b8311171561079257600080fd5b509092509050611c8b565b610377600480360360408110156107b357600080fd5b6001600160a01b038235169190810190604081016020820135600160201b8111156107dd57600080fd5b8201836020820111156107ef57600080fd5b803590602001918460018302840111600160201b8311171561081057600080fd5b509092509050611cd3565b610377611d60565b6109466004803603604081101561083957600080fd5b810190602081018135600160201b81111561085357600080fd5b82018360208201111561086557600080fd5b803590602001918460208302840111600160201b8311171561088657600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156108d557600080fd5b8201836020820111156108e757600080fd5b803590602001918460208302840111600160201b8311171561090857600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611d72945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561098257818101518382015260200161096a565b505050509050019250505060405180910390f35b610289611e73565b610377600480360360208110156109b457600080fd5b50356001600160a01b0316611e79565b610289600480360360408110156109da57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b811115610a0457600080fd5b820183602082011115610a1657600080fd5b803590602001918460018302840111600160201b83111715610a3757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611ec9945050505050565b61037760048036036060811015610a8e57600080fd5b810190602081018135600160201b811115610aa857600080fd5b820183602082011115610aba57600080fd5b803590602001918460018302840111600160201b83111715610adb57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610b2d57600080fd5b820183602082011115610b3f57600080fd5b803590602001918460018302840111600160201b83111715610b6057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550505090356001600160a01b03169150611ef79050565b610377611fa1565b61037760048036036080811015610bca57600080fd5b6001600160a01b038235169160208101359160408201359190810190608081016060820135600160201b811115610c0057600080fd5b820183602082011115610c1257600080fd5b803590602001918460018302840111600160201b83111715610c3357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612032945050505050565b61037760048036036020811015610c8a57600080fd5b50356001600160a01b0316612137565b61037760048036036020811015610cb057600080fd5b810190602081018135600160201b811115610cca57600080fd5b820183602082011115610cdc57600080fd5b803590602001918460018302840111600160201b83111715610cfd57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612186945050505050565b61028960048036036020811015610d5457600080fd5b50356121d5565b610d636121e7565b604080516001600160a01b039092168252519081900360200190f35b6102ee6121f6565b61037760048036036020811015610d9d57600080fd5b810190602081018135600160201b811115610db757600080fd5b820183602082011115610dc957600080fd5b803590602001918460018302840111600160201b83111715610dea57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061221c945050505050565b610381612279565b61037760048036036020811015610e4957600080fd5b50356001600160a01b03166122d4565b610377612323565b610e7e60048036036020811015610e7757600080fd5b5035612333565b604080516001600160a01b03909316835260208301919091528051918290030190f35b61037760048036036040811015610eb757600080fd5b506001600160a01b0381351690602001351515612434565b6102ee60048036036020811015610ee557600080fd5b50356001600160a01b03166124a2565b6102ee60048036036020811015610f0b57600080fd5b50356001600160a01b03166124b5565b61028960048036036020811015610f3157600080fd5b50356124c8565b610d6360048036036020811015610f4e57600080fd5b50356124da565b6102ee60048036036040811015610f6b57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b811115610f9557600080fd5b820183602082011115610fa757600080fd5b803590602001918460018302840111600160201b83111715610fc857600080fd5b5090925090506124f5565b610e7e60048036036020811015610fe957600080fd5b810190602081018135600160201b81111561100357600080fd5b82018360208201111561101557600080fd5b803590602001918460018302840111600160201b8311171561103657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612542945050505050565b610381612572565b6102ee6004803603604081101561109557600080fd5b506001600160a01b0381358116916020013516612608565b610377600480360360a08110156110c357600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b81111561110257600080fd5b82018360208201111561111457600080fd5b803590602001918460018302840111600160201b8311171561113557600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506126b3945050505050565b6103776004803603602081101561118c57600080fd5b50356001600160a01b0316612768565b610377600480360360608110156111b257600080fd5b506001600160a01b0381351690602081013590604001356127b8565b600a6020526000908152604090205481565b6001600160a01b0382166000908152602081815260408083208484529091529020545b92915050565b60006001600160e01b031982166301ffc9a760e01b148061123a57506001600160e01b03198216636cdb3d1360e11b145b156112475750600161124b565b5060005b919050565b61126061125b6128d6565b6124b5565b61129b5760405162461bcd60e51b8152600401808060200182810382526040815260200180613cdb6040913960400191505060405180910390fd5b8015611321576000838152600f602052604090206112ba9083836139d2565b50827f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b838360405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a261148f565b827f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b600261134e866128da565b60405160200180838054600181600116156101000203166002900480156113ac5780601f1061138a5761010080835404028352918201916113ac565b820191906000526020600020905b815481529060010190602001808311611398575b5050825160208401908083835b602083106113d85780518252601f1990920191602091820191016113b9565b51815160209384036101000a600019018019909216911617905264173539b7b760d91b9190930190815260408051808303601a1901815260058301918290528482528051602584015280519097509095508594506045909101928601915080838360005b8381101561145457818101518382015260200161143c565b50505050905090810190601f1680156114815780820380516001836020036101000a031916815260200191505b509250505060405180910390a25b505050565b600d805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561151a5780601f106114ef5761010080835404028352916020019161151a565b820191906000526020600020905b8154815290600101906020018083116114fd57829003601f168201915b505050505081565b606061152d8261299d565b6115685760405162461bcd60e51b8152600401808060200182810382526025815260200180613c746025913960400191505060405180910390fd5b6000828152600f6020526040902054600260001961010060018416150201909116041561162e576000828152600f602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845290918301828280156116225780601f106115f757610100808354040283529160200191611622565b820191906000526020600020905b81548152906001019060200180831161160557829003601f168201915b5050505050905061124b565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815261120393909290918301828280156116b85780601f1061168d576101008083540402835291602001916116b8565b820191906000526020600020905b81548152906001019060200180831161169b57829003601f168201915b50505050506116c6846129ba565b612a7b565b6116d661125b6128d6565b6117115760405162461bcd60e51b8152600401808060200182810382526040815260200180613cdb6040913960400191505060405180910390fd5b6001600160a01b03811661175e576040805162461bcd60e51b815260206004820152600f60248201526e4e6f207a65726f206164647265737360881b604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b60096020526000908152604090205481565b336001600160a01b03861614806117ae57506117ae8533612608565b6117e95760405162461bcd60e51b815260040180806020018281038252602f815260200180613d47602f913960400191505060405180910390fd5b6001600160a01b03841661182e5760405162461bcd60e51b8152600401808060200182810382526030815260200180613c446030913960400191505060405180910390fd5b61183a85858585612abe565b6118478585858585612d69565b5050505050565b6118566121f6565b611895576040805162461bcd60e51b81526020600482018190526024820152600080516020613c99833981519152604482015290519081900360640190fd5b61189e81612f6f565b50565b60006118ae61125b6128d6565b6118e95760405162461bcd60e51b8152600401808060200182810382526040815260200180613cdb6040913960400191505060405180910390fd5b6000881161193e576040805162461bcd60e51b815260206004820152601760248201527f416d6f756e74206d7573746e2774206265207a65726f2e000000000000000000604482015290519081900360640190fd5b6040805160208082018590528251808303820181529183018084526001600160a01b0387166000908152600b83529390932082519293909284928291908401908083835b602083106119a15780518252601f199092019160209182019101611982565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922054159150611a189050576040805162461bcd60e51b815260206004820152601260248201527121b7b73b32b93a32b21030b63932b0b23c9760711b604482015290519081900360640190fd5b6000611a22612fb7565b9050611a2c612fd3565b600081815260086020908152604080832080546001600160a01b03191633179055600f9091529020611a5f908a8a6139d2565b50807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b8a8a60405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a28915611b0957611b098b828c8a8a8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612fde92505050565b80600b6000876001600160a01b03166001600160a01b03168152602001908152602001600020836040518082805190602001908083835b60208310611b5f5780518252601f199092019160209182019101611b40565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092209290925550611b999050613a50565b6040518060400160405280876001600160a01b0316815260200186815250905080600c83604051602001808281526020019150506040516020818303038152906040526040518082805190602001908083835b60208310611c0b5780518252601f199092019160209182019101611bec565b51815160209384036101000a600019018019909216911617905292019485525060408051948590038201909420855181546001600160a01b0319166001600160a01b039091161781559481015160019095019490945550506000848152600983528181208e9055600a90925290209a909a559a9950505050505050505050565b6001600160a01b0383166000908152600b6020526040808220905184908490808383808284379190910194855250506040519283900360200190922054925050509392505050565b611cde61125b6128d6565b611d195760405162461bcd60e51b8152600401808060200182810382526040815260200180613cdb6040913960400191505060405180910390fd5b6001600160a01b0383166000908152600b60205260408082209051849084908083838082843791909101948552505060405192839003602001909220929092555050505050565b611d70611d6b6128d6565b613084565b565b60608151835114611db45760405162461bcd60e51b815260040180806020018281038252602c815260200180613d1b602c913960400191505060405180910390fd5b60608351604051908082528060200260200182016040528015611de1578160200160208202803883390190505b50905060005b8451811015611e6b57600080868381518110611dff57fe5b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000206000858381518110611e3557fe5b6020026020010151815260200190815260200160002054828281518110611e5857fe5b6020908102919091010152600101611de7565b509392505050565b60015b90565b611e816121f6565b611ec0576040805162461bcd60e51b81526020600482018190526024820152600080516020613c99833981519152604482015290519081900360640190fd5b61189e81613084565b600b602090815260009283526040909220815180830184018051928152908401929093019190912091525481565b60105460ff1615611f395760405162461bcd60e51b815260040180806020018281038252602c815260200180613c18602c913960400191505060405180910390fd5b6010805460ff191660011790558251611f5990600d906020860190613a67565b508151611f6d90600e906020850190613a67565b50600680546001600160a01b0319166001600160a01b038316179055611f916130cc565b611f99613126565b61148f613136565b611fa96121f6565b611fe8576040805162461bcd60e51b81526020600482018190526024820152600080516020613c99833981519152604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b61204261203d6128d6565b6124a2565b61207d5760405162461bcd60e51b8152600401808060200182810382526030815260200180613ba06030913960400191505060405180910390fd5b6000838152600a60209081526040808320546009909252909120548491906120ab908563ffffffff61314616565b11156120f3576040805162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b604482015290519081900360640190fd5b6120ff33858585612fde565b60008481526009602052604090205461211e908463ffffffff61314616565b6000948552600960205260409094209390935550505050565b61214261125b6128d6565b61217d5760405162461bcd60e51b8152600401808060200182810382526040815260200180613cdb6040913960400191505060405180910390fd5b61189e81613199565b61219161125b6128d6565b6121cc5760405162461bcd60e51b8152600401808060200182810382526040815260200180613cdb6040913960400191505060405180910390fd5b61189e816131e1565b6000908152600a602052604090205490565b6003546001600160a01b031690565b6003546000906001600160a01b031661220d6128d6565b6001600160a01b031614905090565b61222761125b6128d6565b6122625760405162461bcd60e51b8152600401808060200182810382526040815260200180613cdb6040913960400191505060405180910390fd5b8051612275906011906020840190613a67565b5050565b600e805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561151a5780601f106114ef5761010080835404028352916020019161151a565b6122df61203d6128d6565b61231a5760405162461bcd60e51b8152600401808060200182810382526030815260200180613ba06030913960400191505060405180910390fd5b61189e816131f4565b611d7061232e6128d6565b612f6f565b600080606083604051602001808281526020019150506040516020818303038152906040529050600c816040518082805190602001908083835b6020831061238c5780518252601f19909201916020918201910161236d565b51815160209384036101000a600019018019909216911617905292019485525060405193849003810184205485516001600160a01b0390911694600c9450869350918291908401908083835b602083106123f75780518252601f1990920191602091820191016123d8565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922060010154929792965091945050505050565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b600061120360048363ffffffff61323c16565b600061120360058363ffffffff61323c16565b60009081526009602052604090205490565b6008602052600090815260409020546001600160a01b031681565b6001600160a01b0383166000908152600b60205260408082209051829190859085908083838082843780830192505050925050509081526020016040518091039020541190509392505050565b8051602081830181018051600c82529282019190930120915280546001909101546001600160a01b039091169082565b60118054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156125fe5780601f106125d3576101008083540402835291602001916125fe565b820191906000526020600020905b8154815290600101906020018083116125e157829003601f168201915b5050505050905090565b6006546040805163c455279160e01b81526001600160a01b0385811660048301529151600093831692851691839163c455279191602480820192602092909190829003018186803b15801561265c57600080fd5b505afa158015612670573d6000803e3d6000fd5b505050506040513d602081101561268657600080fd5b50516001600160a01b031614156126a1576001915050611203565b6126ab84846132a3565b949350505050565b336001600160a01b03861614806126cf57506126cf8533612608565b61270a5760405162461bcd60e51b815260040180806020018281038252602a815260200180613b41602a913960400191505060405180910390fd5b6001600160a01b03841661274f5760405162461bcd60e51b815260040180806020018281038252602b815260200180613af0602b913960400191505060405180910390fd5b61275b858585856132d1565b61184785858585856133b9565b6127706121f6565b6127af576040805162461bcd60e51b81526020600482018190526024820152600080516020613c99833981519152604482015290519081900360640190fd5b61189e8161353b565b6127c361125b6128d6565b6127fe5760405162461bcd60e51b8152600401808060200182810382526040815260200180613cdb6040913960400191505060405180910390fd5b336001600160a01b038416148061281a575061281a8333612608565b61286b576040805162461bcd60e51b815260206004820152601e60248201527f45524331313535236275726e3a20494e56414c49445f4f50455241544f520000604482015290519081900360640190fd5b6001600160a01b0383166000908152602081815260408083208584529091529020548111156128cb5760405162461bcd60e51b8152600401808060200182810382526027815260200180613bf16027913960400191505060405180910390fd5b61148f8383836135dc565b3390565b6060816128ff57506040805180820190915260018152600360fc1b602082015261124b565b818060005b821561291857600101600a83049250612904565b6060816040519080825280601f01601f191660200182016040528015612945576020820181803883390190505b50905060001982015b831561299357600a840660300160f81b8282806001900393508151811061297157fe5b60200101906001600160f81b031916908160001a905350600a8404935061294e565b5095945050505050565b6000908152600860205260409020546001600160a01b0316151590565b6060816129df57506040805180820190915260018152600360fc1b602082015261124b565b8160005b81156129f757600101600a820491506129e3565b6060816040519080825280601f01601f191660200182016040528015612a24576020820181803883390190505b50905060001982015b8515612a7257600a860660300160f81b82828060019003935081518110612a5057fe5b60200101906001600160f81b031916908160001a905350600a86049550612a2d565b50949350505050565b6060612ab78383604051806020016040528060008152506040518060200160405280600081525060405180602001604052806000815250613673565b9392505050565b8051825114612afe5760405162461bcd60e51b8152600401808060200182810382526035815260200180613b6b6035913960400191505060405180910390fd5b815160005b81811015612c8857612b79838281518110612b1a57fe5b6020026020010151600080896001600160a01b03166001600160a01b031681526020019081526020016000206000878581518110612b5457fe5b602002602001015181526020019081526020016000205461388790919063ffffffff16565b600080886001600160a01b03166001600160a01b031681526020019081526020016000206000868481518110612bab57fe5b6020026020010151815260200190815260200160002081905550612c33838281518110612bd457fe5b6020026020010151600080886001600160a01b03166001600160a01b031681526020019081526020016000206000878581518110612c0e57fe5b602002602001015181526020019081526020016000205461314690919063ffffffff16565b600080876001600160a01b03166001600160a01b031681526020019081526020016000206000868481518110612c6557fe5b602090810291909101810151825281019190915260400160002055600101612b03565b50836001600160a01b0316856001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015612d0e578181015183820152602001612cf6565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015612d4d578181015183820152602001612d35565b5050505090500194505050505060405180910390a45050505050565b612d7b846001600160a01b03166138e4565b15611847576000846001600160a01b031663bc197c8133888787876040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015612e1d578181015183820152602001612e05565b50505050905001848103835286818151815260200191508051906020019060200280838360005b83811015612e5c578181015183820152602001612e44565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015612e98578181015183820152602001612e80565b50505050905090810190601f168015612ec55780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015612eea57600080fd5b505af1158015612efe573d6000803e3d6000fd5b505050506040513d6020811015612f1457600080fd5b505190506001600160e01b0319811663bc197c8160e01b14612f675760405162461bcd60e51b815260040180806020018281038252603f815260200180613d76603f913960400191505060405180910390fd5b505050505050565b612f8060048263ffffffff6138ea16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b600754600090612fce90600163ffffffff61314616565b905090565b600780546001019055565b6001600160a01b038416600090815260208181526040808320868452909152902054613010908363ffffffff61314616565b6001600160a01b038516600081815260208181526040808320888452825280832094909455835187815290810186905283519293919233927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62928290030190a461307e6000858585856133b9565b50505050565b61309560058263ffffffff6138ea16565b6040516001600160a01b038216907f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16590600090a250565b60006130d66128d6565b600380546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350565b611d706131316128d6565b6131f4565b611d706131416128d6565b613199565b600082820183811015612ab7576040805162461bcd60e51b8152602060048201526016602482015275536166654d617468236164643a204f564552464c4f5760501b604482015290519081900360640190fd5b6131aa60058263ffffffff61395116565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b8051612275906002906020840190613a67565b61320560048263ffffffff61395116565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b60006001600160a01b0382166132835760405162461bcd60e51b8152600401808060200182810382526022815260200180613cb96022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6001600160a01b038416600090815260208181526040808320858452909152902054613303908263ffffffff61388716565b6001600160a01b038086166000908152602081815260408083208784528252808320949094559186168152808252828120858252909152205461334c908263ffffffff61314616565b6001600160a01b03808516600081815260208181526040808320888452825291829020949094558051868152938401859052805191939288169233927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62929181900390910190a450505050565b6133cb846001600160a01b03166138e4565b15611847576000846001600160a01b031663f23a6e6133888787876040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561346e578181015183820152602001613456565b50505050905090810190601f16801561349b5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b1580156134be57600080fd5b505af11580156134d2573d6000803e3d6000fd5b505050506040513d60208110156134e857600080fd5b505190506001600160e01b0319811663f23a6e6160e01b14612f675760405162461bcd60e51b815260040180806020018281038252603a815260200180613db5603a913960400191505060405180910390fd5b6001600160a01b0381166135805760405162461bcd60e51b8152600401808060200182810382526026815260200180613b1b6026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831660009081526020818152604080832085845290915290205461360e908263ffffffff61388716565b6001600160a01b03841660008181526020818152604080832087845282528083209490945583518681529081018590528351919333927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f629281900390910190a4505050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f1916602001820160405280156136c7576020820181803883390190505b509050806000805b8851811015613720578881815181106136e457fe5b602001015160f81c60f81b83838060010194508151811061370157fe5b60200101906001600160f81b031916908160001a9053506001016136cf565b5060005b87518110156137755787818151811061373957fe5b602001015160f81c60f81b83838060010194508151811061375657fe5b60200101906001600160f81b031916908160001a905350600101613724565b5060005b86518110156137ca5786818151811061378e57fe5b602001015160f81c60f81b8383806001019450815181106137ab57fe5b60200101906001600160f81b031916908160001a905350600101613779565b5060005b855181101561381f578581815181106137e357fe5b602001015160f81c60f81b83838060010194508151811061380057fe5b60200101906001600160f81b031916908160001a9053506001016137ce565b5060005b84518110156138745784818151811061383857fe5b602001015160f81c60f81b83838060010194508151811061385557fe5b60200101906001600160f81b031916908160001a905350600101613823565b50909d9c50505050505050505050505050565b6000828211156138de576040805162461bcd60e51b815260206004820152601760248201527f536166654d617468237375623a20554e444552464c4f57000000000000000000604482015290519081900360640190fd5b50900390565b3b151590565b6138f4828261323c565b61392f5760405162461bcd60e51b8152600401808060200182810382526021815260200180613bd06021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b61395b828261323c565b156139ad576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613a135782800160ff19823516178555613a40565b82800160010185558215613a40579182015b82811115613a40578235825591602001919060010190613a25565b50613a4c929150613ad5565b5090565b604080518082019091526000808252602082015290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613aa857805160ff1916838001178555613a40565b82800160010185558215613a40579182015b82811115613a40578251825591602001919060010190613aba565b611e7691905b80821115613a4c5760008155600101613adb56fe4552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f524543495049454e544f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f7361666542617463685472616e7366657246726f6d3a20494e56414c49445f4152524159535f4c454e4754484d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65547279696e6720746f206275726e206d6f726520746f6b656e73207468616e20796f75206f776e45524331353520547261646561626c65206d757374206e6f7420626520636f6e73747275637465642079657445524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f524543495049454e544552433732315472616461626c65237572693a204e4f4e4558495354454e545f544f4b454e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737357686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c65455243313135352362616c616e63654f6642617463683a20494e56414c49445f41525241595f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f63616c6c6f6e45524331313535426174636852656365697665643a20494e56414c49445f4f4e5f524543454956455f4d45535341474545524331313535235f63616c6c6f6e4552433131353552656365697665643a20494e56414c49445f4f4e5f524543454956455f4d455353414745a265627a7a72315820e722a58826b8aa2159d94ef9eb05dc0680ebc2b3597f0705a5c49e263f4c599464736f6c6343000511003268747470733a2f2f756e696674792e696f2f6d6574612f756e6966747976657273653732312e6a736f6e526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102675760003560e01c80637362d9c811610151578063aa271e1a116100c3578063d588777c11610087578063d588777c14610fd3578063e8a3d48514611077578063e985e9c51461107f578063f242432a146110ad578063f2fde38b14611176578063f5298aca1461119c57610267565b8063aa271e1a14610ecf578063bb5f747b14610ef5578063bd85b03914610f1b578063cd53d08e14610f38578063d5145cfe14610f5557610267565b8063938e3d7b11610115578063938e3d7b14610d8757806395d89b4114610e2b578063983b2d5614610e335780639865027514610e595780639e135d9614610e61578063a22cb46514610ea157610267565b80637362d9c814610c745780637e518ec814610c9a578063869f759414610d3e5780638da5cb5b14610d5b5780638f32d59b14610d7f57610267565b8063315a6230116101ea57806354fd4d50116101ae57806354fd4d50146109965780636897e9741461099e5780636d5c8ec4146109c45780636ee5741a14610a78578063715018a614610bac578063731133e914610bb457610267565b8063315a62301461063d57806344cd29fc1461071f578063497c84671461079d5780634c5a628c1461081b5780634e1273f41461082357610267565b80630e89341c116102315780630e89341c146103f657806316f6c2da146104135780632693ebf2146104395780632eb2c2d6146104565780633092afd51461061757610267565b80624221f01461026c578062fdd58e1461029b57806301ffc9a7146102c7578063057512041461030257806306fdde0314610379575b600080fd5b6102896004803603602081101561028257600080fd5b50356111ce565b60408051918252519081900360200190f35b610289600480360360408110156102b157600080fd5b506001600160a01b0381351690602001356111e0565b6102ee600480360360208110156102dd57600080fd5b50356001600160e01b031916611209565b604080519115158252519081900360200190f35b6103776004803603604081101561031857600080fd5b81359190810190604081016020820135600160201b81111561033957600080fd5b82018360208201111561034b57600080fd5b803590602001918460018302840111600160201b8311171561036c57600080fd5b509092509050611250565b005b610381611494565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103bb5781810151838201526020016103a3565b50505050905090810190601f1680156103e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103816004803603602081101561040c57600080fd5b5035611522565b6103776004803603602081101561042957600080fd5b50356001600160a01b03166116cb565b6102896004803603602081101561044f57600080fd5b5035611780565b610377600480360360a081101561046c57600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b81111561049f57600080fd5b8201836020820111156104b157600080fd5b803590602001918460208302840111600160201b831117156104d257600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561052157600080fd5b82018360208201111561053357600080fd5b803590602001918460208302840111600160201b8311171561055457600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156105a357600080fd5b8201836020820111156105b557600080fd5b803590602001918460018302840111600160201b831117156105d657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611792945050505050565b6103776004803603602081101561062d57600080fd5b50356001600160a01b031661184e565b610289600480360360c081101561065357600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561068257600080fd5b82018360208201111561069457600080fd5b803590602001918460018302840111600160201b831117156106b557600080fd5b919390929091602081019035600160201b8111156106d257600080fd5b8201836020820111156106e457600080fd5b803590602001918460018302840111600160201b8311171561070557600080fd5b91935091506001600160a01b0381351690602001356118a1565b6102896004803603604081101561073557600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561075f57600080fd5b82018360208201111561077157600080fd5b803590602001918460018302840111600160201b8311171561079257600080fd5b509092509050611c8b565b610377600480360360408110156107b357600080fd5b6001600160a01b038235169190810190604081016020820135600160201b8111156107dd57600080fd5b8201836020820111156107ef57600080fd5b803590602001918460018302840111600160201b8311171561081057600080fd5b509092509050611cd3565b610377611d60565b6109466004803603604081101561083957600080fd5b810190602081018135600160201b81111561085357600080fd5b82018360208201111561086557600080fd5b803590602001918460208302840111600160201b8311171561088657600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156108d557600080fd5b8201836020820111156108e757600080fd5b803590602001918460208302840111600160201b8311171561090857600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611d72945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561098257818101518382015260200161096a565b505050509050019250505060405180910390f35b610289611e73565b610377600480360360208110156109b457600080fd5b50356001600160a01b0316611e79565b610289600480360360408110156109da57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b811115610a0457600080fd5b820183602082011115610a1657600080fd5b803590602001918460018302840111600160201b83111715610a3757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611ec9945050505050565b61037760048036036060811015610a8e57600080fd5b810190602081018135600160201b811115610aa857600080fd5b820183602082011115610aba57600080fd5b803590602001918460018302840111600160201b83111715610adb57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610b2d57600080fd5b820183602082011115610b3f57600080fd5b803590602001918460018302840111600160201b83111715610b6057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550505090356001600160a01b03169150611ef79050565b610377611fa1565b61037760048036036080811015610bca57600080fd5b6001600160a01b038235169160208101359160408201359190810190608081016060820135600160201b811115610c0057600080fd5b820183602082011115610c1257600080fd5b803590602001918460018302840111600160201b83111715610c3357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612032945050505050565b61037760048036036020811015610c8a57600080fd5b50356001600160a01b0316612137565b61037760048036036020811015610cb057600080fd5b810190602081018135600160201b811115610cca57600080fd5b820183602082011115610cdc57600080fd5b803590602001918460018302840111600160201b83111715610cfd57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612186945050505050565b61028960048036036020811015610d5457600080fd5b50356121d5565b610d636121e7565b604080516001600160a01b039092168252519081900360200190f35b6102ee6121f6565b61037760048036036020811015610d9d57600080fd5b810190602081018135600160201b811115610db757600080fd5b820183602082011115610dc957600080fd5b803590602001918460018302840111600160201b83111715610dea57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061221c945050505050565b610381612279565b61037760048036036020811015610e4957600080fd5b50356001600160a01b03166122d4565b610377612323565b610e7e60048036036020811015610e7757600080fd5b5035612333565b604080516001600160a01b03909316835260208301919091528051918290030190f35b61037760048036036040811015610eb757600080fd5b506001600160a01b0381351690602001351515612434565b6102ee60048036036020811015610ee557600080fd5b50356001600160a01b03166124a2565b6102ee60048036036020811015610f0b57600080fd5b50356001600160a01b03166124b5565b61028960048036036020811015610f3157600080fd5b50356124c8565b610d6360048036036020811015610f4e57600080fd5b50356124da565b6102ee60048036036040811015610f6b57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b811115610f9557600080fd5b820183602082011115610fa757600080fd5b803590602001918460018302840111600160201b83111715610fc857600080fd5b5090925090506124f5565b610e7e60048036036020811015610fe957600080fd5b810190602081018135600160201b81111561100357600080fd5b82018360208201111561101557600080fd5b803590602001918460018302840111600160201b8311171561103657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612542945050505050565b610381612572565b6102ee6004803603604081101561109557600080fd5b506001600160a01b0381358116916020013516612608565b610377600480360360a08110156110c357600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b81111561110257600080fd5b82018360208201111561111457600080fd5b803590602001918460018302840111600160201b8311171561113557600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506126b3945050505050565b6103776004803603602081101561118c57600080fd5b50356001600160a01b0316612768565b610377600480360360608110156111b257600080fd5b506001600160a01b0381351690602081013590604001356127b8565b600a6020526000908152604090205481565b6001600160a01b0382166000908152602081815260408083208484529091529020545b92915050565b60006001600160e01b031982166301ffc9a760e01b148061123a57506001600160e01b03198216636cdb3d1360e11b145b156112475750600161124b565b5060005b919050565b61126061125b6128d6565b6124b5565b61129b5760405162461bcd60e51b8152600401808060200182810382526040815260200180613cdb6040913960400191505060405180910390fd5b8015611321576000838152600f602052604090206112ba9083836139d2565b50827f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b838360405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a261148f565b827f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b600261134e866128da565b60405160200180838054600181600116156101000203166002900480156113ac5780601f1061138a5761010080835404028352918201916113ac565b820191906000526020600020905b815481529060010190602001808311611398575b5050825160208401908083835b602083106113d85780518252601f1990920191602091820191016113b9565b51815160209384036101000a600019018019909216911617905264173539b7b760d91b9190930190815260408051808303601a1901815260058301918290528482528051602584015280519097509095508594506045909101928601915080838360005b8381101561145457818101518382015260200161143c565b50505050905090810190601f1680156114815780820380516001836020036101000a031916815260200191505b509250505060405180910390a25b505050565b600d805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561151a5780601f106114ef5761010080835404028352916020019161151a565b820191906000526020600020905b8154815290600101906020018083116114fd57829003601f168201915b505050505081565b606061152d8261299d565b6115685760405162461bcd60e51b8152600401808060200182810382526025815260200180613c746025913960400191505060405180910390fd5b6000828152600f6020526040902054600260001961010060018416150201909116041561162e576000828152600f602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845290918301828280156116225780601f106115f757610100808354040283529160200191611622565b820191906000526020600020905b81548152906001019060200180831161160557829003601f168201915b5050505050905061124b565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815261120393909290918301828280156116b85780601f1061168d576101008083540402835291602001916116b8565b820191906000526020600020905b81548152906001019060200180831161169b57829003601f168201915b50505050506116c6846129ba565b612a7b565b6116d661125b6128d6565b6117115760405162461bcd60e51b8152600401808060200182810382526040815260200180613cdb6040913960400191505060405180910390fd5b6001600160a01b03811661175e576040805162461bcd60e51b815260206004820152600f60248201526e4e6f207a65726f206164647265737360881b604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b60096020526000908152604090205481565b336001600160a01b03861614806117ae57506117ae8533612608565b6117e95760405162461bcd60e51b815260040180806020018281038252602f815260200180613d47602f913960400191505060405180910390fd5b6001600160a01b03841661182e5760405162461bcd60e51b8152600401808060200182810382526030815260200180613c446030913960400191505060405180910390fd5b61183a85858585612abe565b6118478585858585612d69565b5050505050565b6118566121f6565b611895576040805162461bcd60e51b81526020600482018190526024820152600080516020613c99833981519152604482015290519081900360640190fd5b61189e81612f6f565b50565b60006118ae61125b6128d6565b6118e95760405162461bcd60e51b8152600401808060200182810382526040815260200180613cdb6040913960400191505060405180910390fd5b6000881161193e576040805162461bcd60e51b815260206004820152601760248201527f416d6f756e74206d7573746e2774206265207a65726f2e000000000000000000604482015290519081900360640190fd5b6040805160208082018590528251808303820181529183018084526001600160a01b0387166000908152600b83529390932082519293909284928291908401908083835b602083106119a15780518252601f199092019160209182019101611982565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922054159150611a189050576040805162461bcd60e51b815260206004820152601260248201527121b7b73b32b93a32b21030b63932b0b23c9760711b604482015290519081900360640190fd5b6000611a22612fb7565b9050611a2c612fd3565b600081815260086020908152604080832080546001600160a01b03191633179055600f9091529020611a5f908a8a6139d2565b50807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b8a8a60405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a28915611b0957611b098b828c8a8a8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612fde92505050565b80600b6000876001600160a01b03166001600160a01b03168152602001908152602001600020836040518082805190602001908083835b60208310611b5f5780518252601f199092019160209182019101611b40565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092209290925550611b999050613a50565b6040518060400160405280876001600160a01b0316815260200186815250905080600c83604051602001808281526020019150506040516020818303038152906040526040518082805190602001908083835b60208310611c0b5780518252601f199092019160209182019101611bec565b51815160209384036101000a600019018019909216911617905292019485525060408051948590038201909420855181546001600160a01b0319166001600160a01b039091161781559481015160019095019490945550506000848152600983528181208e9055600a90925290209a909a559a9950505050505050505050565b6001600160a01b0383166000908152600b6020526040808220905184908490808383808284379190910194855250506040519283900360200190922054925050509392505050565b611cde61125b6128d6565b611d195760405162461bcd60e51b8152600401808060200182810382526040815260200180613cdb6040913960400191505060405180910390fd5b6001600160a01b0383166000908152600b60205260408082209051849084908083838082843791909101948552505060405192839003602001909220929092555050505050565b611d70611d6b6128d6565b613084565b565b60608151835114611db45760405162461bcd60e51b815260040180806020018281038252602c815260200180613d1b602c913960400191505060405180910390fd5b60608351604051908082528060200260200182016040528015611de1578160200160208202803883390190505b50905060005b8451811015611e6b57600080868381518110611dff57fe5b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000206000858381518110611e3557fe5b6020026020010151815260200190815260200160002054828281518110611e5857fe5b6020908102919091010152600101611de7565b509392505050565b60015b90565b611e816121f6565b611ec0576040805162461bcd60e51b81526020600482018190526024820152600080516020613c99833981519152604482015290519081900360640190fd5b61189e81613084565b600b602090815260009283526040909220815180830184018051928152908401929093019190912091525481565b60105460ff1615611f395760405162461bcd60e51b815260040180806020018281038252602c815260200180613c18602c913960400191505060405180910390fd5b6010805460ff191660011790558251611f5990600d906020860190613a67565b508151611f6d90600e906020850190613a67565b50600680546001600160a01b0319166001600160a01b038316179055611f916130cc565b611f99613126565b61148f613136565b611fa96121f6565b611fe8576040805162461bcd60e51b81526020600482018190526024820152600080516020613c99833981519152604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b61204261203d6128d6565b6124a2565b61207d5760405162461bcd60e51b8152600401808060200182810382526030815260200180613ba06030913960400191505060405180910390fd5b6000838152600a60209081526040808320546009909252909120548491906120ab908563ffffffff61314616565b11156120f3576040805162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b604482015290519081900360640190fd5b6120ff33858585612fde565b60008481526009602052604090205461211e908463ffffffff61314616565b6000948552600960205260409094209390935550505050565b61214261125b6128d6565b61217d5760405162461bcd60e51b8152600401808060200182810382526040815260200180613cdb6040913960400191505060405180910390fd5b61189e81613199565b61219161125b6128d6565b6121cc5760405162461bcd60e51b8152600401808060200182810382526040815260200180613cdb6040913960400191505060405180910390fd5b61189e816131e1565b6000908152600a602052604090205490565b6003546001600160a01b031690565b6003546000906001600160a01b031661220d6128d6565b6001600160a01b031614905090565b61222761125b6128d6565b6122625760405162461bcd60e51b8152600401808060200182810382526040815260200180613cdb6040913960400191505060405180910390fd5b8051612275906011906020840190613a67565b5050565b600e805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561151a5780601f106114ef5761010080835404028352916020019161151a565b6122df61203d6128d6565b61231a5760405162461bcd60e51b8152600401808060200182810382526030815260200180613ba06030913960400191505060405180910390fd5b61189e816131f4565b611d7061232e6128d6565b612f6f565b600080606083604051602001808281526020019150506040516020818303038152906040529050600c816040518082805190602001908083835b6020831061238c5780518252601f19909201916020918201910161236d565b51815160209384036101000a600019018019909216911617905292019485525060405193849003810184205485516001600160a01b0390911694600c9450869350918291908401908083835b602083106123f75780518252601f1990920191602091820191016123d8565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922060010154929792965091945050505050565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b600061120360048363ffffffff61323c16565b600061120360058363ffffffff61323c16565b60009081526009602052604090205490565b6008602052600090815260409020546001600160a01b031681565b6001600160a01b0383166000908152600b60205260408082209051829190859085908083838082843780830192505050925050509081526020016040518091039020541190509392505050565b8051602081830181018051600c82529282019190930120915280546001909101546001600160a01b039091169082565b60118054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156125fe5780601f106125d3576101008083540402835291602001916125fe565b820191906000526020600020905b8154815290600101906020018083116125e157829003601f168201915b5050505050905090565b6006546040805163c455279160e01b81526001600160a01b0385811660048301529151600093831692851691839163c455279191602480820192602092909190829003018186803b15801561265c57600080fd5b505afa158015612670573d6000803e3d6000fd5b505050506040513d602081101561268657600080fd5b50516001600160a01b031614156126a1576001915050611203565b6126ab84846132a3565b949350505050565b336001600160a01b03861614806126cf57506126cf8533612608565b61270a5760405162461bcd60e51b815260040180806020018281038252602a815260200180613b41602a913960400191505060405180910390fd5b6001600160a01b03841661274f5760405162461bcd60e51b815260040180806020018281038252602b815260200180613af0602b913960400191505060405180910390fd5b61275b858585856132d1565b61184785858585856133b9565b6127706121f6565b6127af576040805162461bcd60e51b81526020600482018190526024820152600080516020613c99833981519152604482015290519081900360640190fd5b61189e8161353b565b6127c361125b6128d6565b6127fe5760405162461bcd60e51b8152600401808060200182810382526040815260200180613cdb6040913960400191505060405180910390fd5b336001600160a01b038416148061281a575061281a8333612608565b61286b576040805162461bcd60e51b815260206004820152601e60248201527f45524331313535236275726e3a20494e56414c49445f4f50455241544f520000604482015290519081900360640190fd5b6001600160a01b0383166000908152602081815260408083208584529091529020548111156128cb5760405162461bcd60e51b8152600401808060200182810382526027815260200180613bf16027913960400191505060405180910390fd5b61148f8383836135dc565b3390565b6060816128ff57506040805180820190915260018152600360fc1b602082015261124b565b818060005b821561291857600101600a83049250612904565b6060816040519080825280601f01601f191660200182016040528015612945576020820181803883390190505b50905060001982015b831561299357600a840660300160f81b8282806001900393508151811061297157fe5b60200101906001600160f81b031916908160001a905350600a8404935061294e565b5095945050505050565b6000908152600860205260409020546001600160a01b0316151590565b6060816129df57506040805180820190915260018152600360fc1b602082015261124b565b8160005b81156129f757600101600a820491506129e3565b6060816040519080825280601f01601f191660200182016040528015612a24576020820181803883390190505b50905060001982015b8515612a7257600a860660300160f81b82828060019003935081518110612a5057fe5b60200101906001600160f81b031916908160001a905350600a86049550612a2d565b50949350505050565b6060612ab78383604051806020016040528060008152506040518060200160405280600081525060405180602001604052806000815250613673565b9392505050565b8051825114612afe5760405162461bcd60e51b8152600401808060200182810382526035815260200180613b6b6035913960400191505060405180910390fd5b815160005b81811015612c8857612b79838281518110612b1a57fe5b6020026020010151600080896001600160a01b03166001600160a01b031681526020019081526020016000206000878581518110612b5457fe5b602002602001015181526020019081526020016000205461388790919063ffffffff16565b600080886001600160a01b03166001600160a01b031681526020019081526020016000206000868481518110612bab57fe5b6020026020010151815260200190815260200160002081905550612c33838281518110612bd457fe5b6020026020010151600080886001600160a01b03166001600160a01b031681526020019081526020016000206000878581518110612c0e57fe5b602002602001015181526020019081526020016000205461314690919063ffffffff16565b600080876001600160a01b03166001600160a01b031681526020019081526020016000206000868481518110612c6557fe5b602090810291909101810151825281019190915260400160002055600101612b03565b50836001600160a01b0316856001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015612d0e578181015183820152602001612cf6565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015612d4d578181015183820152602001612d35565b5050505090500194505050505060405180910390a45050505050565b612d7b846001600160a01b03166138e4565b15611847576000846001600160a01b031663bc197c8133888787876040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015612e1d578181015183820152602001612e05565b50505050905001848103835286818151815260200191508051906020019060200280838360005b83811015612e5c578181015183820152602001612e44565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015612e98578181015183820152602001612e80565b50505050905090810190601f168015612ec55780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015612eea57600080fd5b505af1158015612efe573d6000803e3d6000fd5b505050506040513d6020811015612f1457600080fd5b505190506001600160e01b0319811663bc197c8160e01b14612f675760405162461bcd60e51b815260040180806020018281038252603f815260200180613d76603f913960400191505060405180910390fd5b505050505050565b612f8060048263ffffffff6138ea16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b600754600090612fce90600163ffffffff61314616565b905090565b600780546001019055565b6001600160a01b038416600090815260208181526040808320868452909152902054613010908363ffffffff61314616565b6001600160a01b038516600081815260208181526040808320888452825280832094909455835187815290810186905283519293919233927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62928290030190a461307e6000858585856133b9565b50505050565b61309560058263ffffffff6138ea16565b6040516001600160a01b038216907f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16590600090a250565b60006130d66128d6565b600380546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350565b611d706131316128d6565b6131f4565b611d706131416128d6565b613199565b600082820183811015612ab7576040805162461bcd60e51b8152602060048201526016602482015275536166654d617468236164643a204f564552464c4f5760501b604482015290519081900360640190fd5b6131aa60058263ffffffff61395116565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b8051612275906002906020840190613a67565b61320560048263ffffffff61395116565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b60006001600160a01b0382166132835760405162461bcd60e51b8152600401808060200182810382526022815260200180613cb96022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6001600160a01b038416600090815260208181526040808320858452909152902054613303908263ffffffff61388716565b6001600160a01b038086166000908152602081815260408083208784528252808320949094559186168152808252828120858252909152205461334c908263ffffffff61314616565b6001600160a01b03808516600081815260208181526040808320888452825291829020949094558051868152938401859052805191939288169233927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62929181900390910190a450505050565b6133cb846001600160a01b03166138e4565b15611847576000846001600160a01b031663f23a6e6133888787876040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561346e578181015183820152602001613456565b50505050905090810190601f16801561349b5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b1580156134be57600080fd5b505af11580156134d2573d6000803e3d6000fd5b505050506040513d60208110156134e857600080fd5b505190506001600160e01b0319811663f23a6e6160e01b14612f675760405162461bcd60e51b815260040180806020018281038252603a815260200180613db5603a913960400191505060405180910390fd5b6001600160a01b0381166135805760405162461bcd60e51b8152600401808060200182810382526026815260200180613b1b6026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831660009081526020818152604080832085845290915290205461360e908263ffffffff61388716565b6001600160a01b03841660008181526020818152604080832087845282528083209490945583518681529081018590528351919333927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f629281900390910190a4505050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f1916602001820160405280156136c7576020820181803883390190505b509050806000805b8851811015613720578881815181106136e457fe5b602001015160f81c60f81b83838060010194508151811061370157fe5b60200101906001600160f81b031916908160001a9053506001016136cf565b5060005b87518110156137755787818151811061373957fe5b602001015160f81c60f81b83838060010194508151811061375657fe5b60200101906001600160f81b031916908160001a905350600101613724565b5060005b86518110156137ca5786818151811061378e57fe5b602001015160f81c60f81b8383806001019450815181106137ab57fe5b60200101906001600160f81b031916908160001a905350600101613779565b5060005b855181101561381f578581815181106137e357fe5b602001015160f81c60f81b83838060010194508151811061380057fe5b60200101906001600160f81b031916908160001a9053506001016137ce565b5060005b84518110156138745784818151811061383857fe5b602001015160f81c60f81b83838060010194508151811061385557fe5b60200101906001600160f81b031916908160001a905350600101613823565b50909d9c50505050505050505050505050565b6000828211156138de576040805162461bcd60e51b815260206004820152601760248201527f536166654d617468237375623a20554e444552464c4f57000000000000000000604482015290519081900360640190fd5b50900390565b3b151590565b6138f4828261323c565b61392f5760405162461bcd60e51b8152600401808060200182810382526021815260200180613bd06021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b61395b828261323c565b156139ad576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613a135782800160ff19823516178555613a40565b82800160010185558215613a40579182015b82811115613a40578235825591602001919060010190613a25565b50613a4c929150613ad5565b5090565b604080518082019091526000808252602082015290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613aa857805160ff1916838001178555613a40565b82800160010185558215613a40579182015b82811115613a40578251825591602001919060010190613aba565b611e7691905b80821115613a4c5760008155600101613adb56fe4552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f524543495049454e544f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f7361666542617463685472616e7366657246726f6d3a20494e56414c49445f4152524159535f4c454e4754484d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65547279696e6720746f206275726e206d6f726520746f6b656e73207468616e20796f75206f776e45524331353520547261646561626c65206d757374206e6f7420626520636f6e73747275637465642079657445524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f524543495049454e544552433732315472616461626c65237572693a204e4f4e4558495354454e545f544f4b454e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737357686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c65455243313135352362616c616e63654f6642617463683a20494e56414c49445f41525241595f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f63616c6c6f6e45524331313535426174636852656365697665643a20494e56414c49445f4f4e5f524543454956455f4d45535341474545524331313535235f63616c6c6f6e4552433131353552656365697665643a20494e56414c49445f4f4e5f524543454956455f4d455353414745a265627a7a72315820e722a58826b8aa2159d94ef9eb05dc0680ebc2b3597f0705a5c49e263f4c599464736f6c63430005110032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Deployed Bytecode Sourcemap
59189:596:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;59189:596:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52201:49;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52201:49:0;;:::i;:::-;;;;;;;;;;;;;;;;40706:127;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;40706:127:0;;;;;;;;:::i;42681:240::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42681:240:0;-1:-1:-1;;;;;;42681:240:0;;:::i;:::-;;;;;;;;;;;;;;;;;;56382:281;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56382:281:0;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;56382:281:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;56382:281: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;56382:281:0;;-1:-1:-1;56382:281:0;-1:-1:-1;56382:281:0;:::i;:::-;;52524:18;;;:::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;52524:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54199:301;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54199:301:0;;:::i;57018:222::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;57018:222:0;-1:-1:-1;;;;;57018:222:0;;:::i;52151:46::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52151:46:0;;:::i;35883:511::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;35883:511:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;35883:511:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;35883:511: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;35883:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;35883:511:0;;;;;;;;-1:-1:-1;35883:511:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;35883:511:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;35883:511: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;35883:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;35883:511:0;;;;;;;;-1:-1:-1;35883:511:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;35883:511:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;35883:511: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;35883:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;35883:511:0;;-1:-1:-1;35883:511:0;;-1:-1:-1;;;;;35883:511:0:i;54106:88::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54106:88:0;-1:-1:-1;;;;;54106:88:0;;:::i;55462:914::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;55462:914:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;55462:914:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;55462:914: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;55462:914:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;55462:914:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;55462:914: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;55462:914:0;;-1:-1:-1;55462:914:0;-1:-1:-1;;;;;;55462:914:0;;;;;;;;:::i;53480:148::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;53480:148:0;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;53480:148:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;53480:148: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;53480:148:0;;-1:-1:-1;53480:148:0;-1:-1:-1;53480:148:0;:::i;53842:150::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;53842:150:0;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;53842:150:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;53842:150: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;53842:150:0;;-1:-1:-1;53842:150:0;-1:-1:-1;53842:150:0;:::i;13686:95::-;;;:::i;41121:500::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;41121:500:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;41121:500:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;41121:500: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;41121:500:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;41121:500:0;;;;;;;;-1:-1:-1;41121:500:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;41121:500:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;41121:500: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;41121:500:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;41121:500:0;;-1:-1:-1;41121:500:0;;-1:-1:-1;;;;;41121:500: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;41121:500:0;;;;;;;;;;;;;;;;;59710:69;;;:::i;53997:104::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;53997:104:0;-1:-1:-1;;;;;53997:104:0;;:::i;52378:66::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;52378:66:0;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;52378:66:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;52378:66: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;52378:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;52378:66:0;;-1:-1:-1;52378:66:0;;-1:-1:-1;;;;;52378:66:0:i;52685:407::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;52685:407:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;52685:407:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;52685:407: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;52685:407:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;52685:407:0;;;;;;;;-1:-1:-1;52685:407:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;52685:407:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;52685:407: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;52685:407:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;52685:407:0;;-1:-1:-1;;;52685:407:0;;-1:-1:-1;;;;;52685:407:0;;-1:-1:-1;52685:407:0;;-1:-1:-1;52685:407:0:i;9879:140::-;;;:::i;57463:348::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;57463:348:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;57463:348:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;57463:348: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;57463:348:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;57463:348:0;;-1:-1:-1;57463:348:0;;-1:-1:-1;;;;;57463:348:0:i;13562:116::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13562:116:0;-1:-1:-1;;;;;13562:116:0;;:::i;55140:139::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;55140:139:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;55140:139:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;55140:139: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;55140:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;55140:139:0;;-1:-1:-1;55140:139:0;;-1:-1:-1;;;;;55140:139:0:i;54915:98::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54915:98:0;;:::i;9068:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;9068:79:0;;;;;;;;;;;;;;9434:94;;;:::i;59603:101::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;59603:101:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;59603:101:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;59603:101: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;59603:101:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;59603:101:0;;-1:-1:-1;59603:101:0;;-1:-1:-1;;;;;59603:101:0:i;52567:20::-;;;:::i;12246:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12246:92:0;-1:-1:-1;;;;;12246:92:0;;:::i;12346:79::-;;;:::i;53634:202::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;53634:202:0;;:::i;:::-;;;;-1:-1:-1;;;;;53634:202:0;;;;;;;;;;;;;;;;;;;;;39712:227;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;39712:227:0;;;;;;;;;;:::i;12129:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12129:109:0;-1:-1:-1;;;;;12129:109:0;;:::i;13429:125::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13429:125:0;-1:-1:-1;;;;;13429:125:0;;:::i;54660:97::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54660:97:0;;:::i;52104:43::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52104:43:0;;:::i;53328:146::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;53328:146:0;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;53328:146:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;53328:146: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;53328:146:0;;-1:-1:-1;53328:146:0;-1:-1:-1;53328:146:0;:::i;52448:50::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;52448:50:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;52448:50:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;52448:50: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;52448:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;52448:50:0;;-1:-1:-1;52448:50:0;;-1:-1:-1;;;;;52448:50:0:i;59509:88::-;;;:::i;57939:372::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;57939:372:0;;;;;;;;;;:::i;34945:545::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;34945:545:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;34945:545:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;34945:545: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;34945:545:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;34945:545:0;;-1:-1:-1;34945:545:0;;-1:-1:-1;;;;;34945:545:0:i;10174:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10174:109:0;-1:-1:-1;;;;;10174:109:0;;:::i;56669:343::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;56669:343:0;;;;;;;;;;;;;:::i;52201:49::-;;;;;;;;;;;;;:::o;40706:127::-;-1:-1:-1;;;;;40806:16:0;;40780:7;40806:16;;;;;;;;;;;:21;;;;;;;;;40706:127;;;;;:::o;42681:240::-;42752:4;-1:-1:-1;;;;;;42769:42:0;;-1:-1:-1;;;42769:42:0;;:98;;-1:-1:-1;;;;;;;42824:43:0;;-1:-1:-1;;;42824:43:0;42769:98;42765:132;;;-1:-1:-1;42885:4:0;42878:11;;42765:132;-1:-1:-1;42910:5:0;42681:240;;;;:::o;56382:281::-;13302:30;13319:12;:10;:12::i;:::-;13302:16;:30::i;:::-;13294:107;;;;-1:-1:-1;;;13294:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56475:22;;56471:188;;56508:9;;;;:4;:9;;;;;:16;;56520:4;;56508:16;:::i;:::-;;56545:3;56535:14;56539:4;;56535:14;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;56535:14:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;56535:14:0;;;;-1:-1:-1;56535:14:0;;-1:-1:-1;;;;56535:14:0;56471:188;;;56649:3;56577:76;56605:15;56622:14;56632:3;56622:9;:14::i;:::-;56588:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56588:58:0;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;-1:-1;;;56588:58:0;;;;;;;;;;26:21:-1;;;-1:-1;;22:32;6:49;;56588:58:0;;;;;;;56577:76;;;;;;;;;;;56588:58;;-1:-1:-1;56588:58:0;;-1:-1:-1;56588:58:0;;-1:-1:-1;56577:76:0;;;;;;;;-1:-1:-1;56577:76:0;;;-1:-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;56577:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56471:188;56382:281;;;:::o;52524:18::-;;;;;;;;;;;;;;;-1:-1:-1;;52524:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54199:301::-;54246:13;54274:12;54282:3;54274:7;:12::i;:::-;54266:62;;;;-1:-1:-1;;;54266:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54394:1;54374:9;;;:4;:9;;;;;54368:23;;-1:-1:-1;;54368:23:0;;;;;;;;;;;:27;54365:62;;54412:9;;;;:4;:9;;;;;;;;;54405:16;;;;;;-1:-1:-1;;54405:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54412:9;;54405:16;;54412:9;54405:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54365:62;54456:15;54438:57;;;;;;;-1:-1:-1;;54438:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54456:15;;54438:57;;54456:15;54438:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54473:21;54490:3;54473:16;:21::i;:::-;54438:17;:57::i;57018:222::-;13302:30;13319:12;:10;:12::i;13302:30::-;13294:107;;;;-1:-1:-1;;;13294:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;57128:35:0;;57120:63;;;;;-1:-1:-1;;;57120:63:0;;;;;;;;;;;;-1:-1:-1;;;57120:63:0;;;;;;;;;;;;;;;57191:20;:44;;-1:-1:-1;;;;;;57191:44:0;-1:-1:-1;;;;;57191:44:0;;;;;;;;;;57018:222::o;52151:46::-;;;;;;;;;;;;;:::o;35883:511::-;36064:10;-1:-1:-1;;;;;36064:19:0;;;;36063:60;;;36088:35;36105:5;36112:10;36088:16;:35::i;:::-;36055:120;;;;-1:-1:-1;;;36055:120:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36190:17:0;;36182:78;;;;-1:-1:-1;;;36182:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36269:50;36292:5;36299:3;36304:4;36310:8;36269:22;:50::i;:::-;36326:62;36354:5;36361:3;36366:4;36372:8;36382:5;36326:27;:62::i;:::-;35883:511;;;;;:::o;54106:88::-;9280:9;:7;:9::i;:::-;9272:54;;;;;-1:-1:-1;;;9272:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9272:54:0;;;;;;;;;;;;;;;54167:22;54181:7;54167:13;:22::i;:::-;54106:88;:::o;55462:914::-;55654:15;13302:30;13319:12;:10;:12::i;13302:30::-;13294:107;;;;-1:-1:-1;;;13294:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55697:1;55687:7;:11;55679:47;;;;;-1:-1:-1;;;55679:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;55760:24;;;;;;;;;;;;26:21:-1;;;22:32;;6:49;;55760:24:0;;;;;;-1:-1:-1;;;;;55800:22:0;;;;;;:9;:22;;;;;;:34;;55760:24;;55800:22;;55760:24;;;;55800:34;;;;;55760:24;55800:34;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;55800:34:0;;;;;-1:-1:-1;55800:34:0;;;;;;;;;;;:39;;-1:-1:-1;55792:70:0;;-1:-1:-1;55792:70:0;;;;-1:-1:-1;;;55792:70:0;;;;;;;;;;;;-1:-1:-1;;;55792:70:0;;;;;;;;;;;;;;;55867:11;55881:17;:15;:17::i;:::-;55867:31;;55903:23;:21;:23::i;:::-;55931:13;;;;:8;:13;;;;;;;;:26;;-1:-1:-1;;;;;;55931:26:0;55947:10;55931:26;;;55966:4;:9;;;;;:16;;55978:4;;55966:16;:::i;:::-;;56002:3;55992:14;55996:4;;55992:14;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;55992:14:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;55992:14:0;;;;-1:-1:-1;55992:14:0;;-1:-1:-1;;;;55992:14:0;56019:12;;56015:52;;56033:34;56039:6;56047:3;56052:7;56061:5;;56033:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;56033:5:0;;-1:-1:-1;;;56033:34:0:i;:::-;56109:3;56072:9;:22;56082:11;-1:-1:-1;;;;;56072:22:0;-1:-1:-1;;;;;56072:22:0;;;;;;;;;;;;56095:10;56072:34;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;56072:34:0;;;;;-1:-1:-1;56072:34:0;;;;;;;;;;:40;;;;-1:-1:-1;56117:30:0;;-1:-1:-1;56117:30:0;:::i;:::-;56150:82;;;;;;;;56186:11;-1:-1:-1;;;;;56150:82:0;;;;;56217:6;56150:82;;;56117:115;;56278:10;56240:12;56270:3;56253:21;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;56253:21:0;;;56240:35;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;56240:35:0;;;;;-1:-1:-1;56240:35:0;;;;;;;;;;;;:48;;;;-1:-1:-1;;;;;;56240:48:0;-1:-1:-1;;;;;56240:48:0;;;;;;;;;;-1:-1:-1;56240:48:0;;;;;;;-1:-1:-1;;;56296:16:0;;;:11;:16;;;;;:26;;;56327:14;:19;;;;;:29;;;;56296:16;55462:914;-1:-1:-1;;;;;;;;;;55462:914:0:o;53480:148::-;-1:-1:-1;;;;;53593:25:0;;53570:7;53593:25;;;:9;:25;;;;;;:30;;53619:3;;;;53593:30;53619:3;;;;53593:30;1:33:-1;45:16;;;;53593:30:0;;;-1:-1:-1;;53593:30:0;;;;;;;;;;;;;-1:-1:-1;;;53480:148:0;;;;;:::o;53842:150::-;13302:30;13319:12;:10;:12::i;13302:30::-;13294:107;;;;-1:-1:-1;;;13294:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53953:25:0;;53986:1;53953:25;;;:9;:25;;;;;;:30;;53979:3;;;;53953:30;53979:3;;;;53953:30;1:33:-1;45:16;;;;53953:30:0;;;-1:-1:-1;;53953:30:0;;;;;;;;;;;:34;;;;-1:-1:-1;;;;;53842:150:0:o;13686:95::-;13738:35;13760:12;:10;:12::i;:::-;13738:21;:35::i;:::-;13686:95::o;41121:500::-;41220:16;41274:4;:11;41256:7;:14;:29;41248:86;;;;-1:-1:-1;;;41248:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41361:30;41408:7;:14;41394:29;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;136:17;;-1:-1;41394:29:0;-1:-1:-1;41361:62:0;-1:-1:-1;41482:9:0;41477:110;41501:7;:14;41497:1;:18;41477:110;;;41550:8;:20;41559:7;41567:1;41559:10;;;;;;;;;;;;;;-1:-1:-1;;;;;41550:20:0;-1:-1:-1;;;;;41550:20:0;;;;;;;;;;;;:29;41571:4;41576:1;41571:7;;;;;;;;;;;;;;41550:29;;;;;;;;;;;;41531:13;41545:1;41531:16;;;;;;;;;;;;;;;;;:48;41517:3;;41477:110;;;-1:-1:-1;41602:13:0;41121:500;-1:-1:-1;;;41121:500:0:o;59710:69::-;59773:1;59710:69;;:::o;53997:104::-;9280:9;:7;:9::i;:::-;9272:54;;;;;-1:-1:-1;;;9272:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9272:54:0;;;;;;;;;;;;;;;54066:30;54088:7;54066:21;:30::i;52378:66::-;;;;;;;;;;;;;;22:14:-1;;143:32;;;;;198:20;;224:31;;;156:18;;;283;;;;273:49;;;;328:32;;52378:66:0;;:::o;52685:407::-;52818:11;;;;52817:12;52809:69;;;;-1:-1:-1;;;52809:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52893:11;:18;;-1:-1:-1;;52893:18:0;52907:4;52893:18;;;52923:12;;;;:4;;:12;;;;;:::i;:::-;-1:-1:-1;52940:16:0;;;;:6;;:16;;;;;:::i;:::-;-1:-1:-1;52961:20:0;:44;;-1:-1:-1;;;;;;52961:44:0;-1:-1:-1;;;;;52961:44:0;;;;;53014:19;:17;:19::i;:::-;53038:18;:16;:18::i;:::-;53061:26;:24;:26::i;9879:140::-;9280:9;:7;:9::i;:::-;9272:54;;;;;-1:-1:-1;;;9272:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9272:54:0;;;;;;;;;;;;;;;9962:6;;9941:40;;9978:1;;-1:-1:-1;;;;;9962:6:0;;9941:40;;9978:1;;9941:40;9992:6;:19;;-1:-1:-1;;;;;;9992:19:0;;;9879:140::o;57463:348::-;12026:22;12035:12;:10;:12::i;:::-;12026:8;:22::i;:::-;12018:83;;;;-1:-1:-1;;;12018:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57587:15;57660:23;;;:14;:23;;;;;;;;;57621:11;:20;;;;;;;57605:3;;57660:23;57621:35;;57646:9;57621:35;:24;:35;:::i;:::-;:62;;57613:93;;;;;-1:-1:-1;;;57613:93:0;;;;;;;;;;;;-1:-1:-1;;;57613:93:0;;;;;;;;;;;;;;;57711:40;57717:10;57729:3;57734:9;57745:5;57711;:40::i;:::-;57775:16;;;;:11;:16;;;;;;:31;;57796:9;57775:31;:20;:31;:::i;:::-;57756:16;;;;:11;:16;;;;;;:50;;;;-1:-1:-1;;;;57463:348:0:o;13562:116::-;13302:30;13319:12;:10;:12::i;13302:30::-;13294:107;;;;-1:-1:-1;;;13294:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13643:27;13662:7;13643:18;:27::i;55140:139::-;13302:30;13319:12;:10;:12::i;13302:30::-;13294:107;;;;-1:-1:-1;;;13294:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55234:40;55254:19;55234;:40::i;54915:98::-;54968:7;54989:19;;;:14;:19;;;;;;;54915:98::o;9068:79::-;9133:6;;-1:-1:-1;;;;;9133:6:0;9068:79;:::o;9434:94::-;9514:6;;9474:4;;-1:-1:-1;;;;;9514:6:0;9498:12;:10;:12::i;:::-;-1:-1:-1;;;;;9498:22:0;;9491:29;;9434:94;:::o;59603:101::-;13302:30;13319:12;:10;:12::i;13302:30::-;13294:107;;;;-1:-1:-1;;;13294:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59680:19;;;;:12;;:19;;;;;:::i;:::-;;59603:101;:::o;52567:20::-;;;;;;;;;;;;;;;-1:-1:-1;;52567:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12246:92;12026:22;12035:12;:10;:12::i;12026:22::-;12018:83;;;;-1:-1:-1;;;12018:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12311:19;12322:7;12311:10;:19::i;12346:79::-;12390:27;12404:12;:10;:12::i;:::-;12390:13;:27::i;53634:202::-;53694:7;53702;53718:18;53756:3;53739:21;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;53739:21:0;;;53718:42;;53776:12;53789:5;53776:19;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;53776:19:0;;;;;-1:-1:-1;53776:19:0;;;;;;;;;;:28;53805:19;;-1:-1:-1;;;;;53776:28:0;;;;53805:12;;-1:-1:-1;53805:19:0;;-1:-1:-1;53776:19:0;;;53805;;;;;53776;53805;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;53805:19:0;;;;;-1:-1:-1;53805:19:0;;;;;;;;;;274:1:-1;53805:25:0;;53768:63;;53805:25;;-1:-1:-1;53634:202:0;;-1:-1:-1;;;;;53634:202:0:o;39712:227::-;39839:10;39829:21;;;;:9;:21;;;;;;;;-1:-1:-1;;;;;39829:32:0;;;;;;;;;;;;:44;;-1:-1:-1;;39829:44:0;;;;;;;;;;39885:48;;;;;;;39829:32;;39839:10;39885:48;;;;;;;;;;;39712:227;;:::o;12129:109::-;12185:4;12209:21;:8;12222:7;12209:21;:12;:21;:::i;13429:125::-;13493:4;13517:29;:16;13538:7;13517:29;:20;:29;:::i;54660:97::-;54715:7;54736:16;;;:11;:16;;;;;;;54660:97::o;52104:43::-;;;;;;;;;;;;-1:-1:-1;;;;;52104:43:0;;:::o;53328:146::-;-1:-1:-1;;;;;53435:25:0;;53415:4;53435:25;;;:9;:25;;;;;;:30;;53415:4;;53435:25;53461:3;;;;53435:30;53461:3;;;;53435:30;1:33:-1;57:3;49:6;45:16;35:26;;53435:30:0;;;;;;;;;;;;;;;;;;;:34;53428:41;;53328:146;;;;;:::o;52448:50::-;22:14:-1;;169:4;143:32;;;;;198:20;;52448:50:0;224:31:-1;;156:18;;;283;;;;273:49;328:32;;52448:50:0;;;;;;;-1:-1:-1;;;;;52448:50:0;;;;;:::o;59509:88::-;59580:12;59573:19;;;;;;;;-1:-1:-1;;59573:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59553:13;;59573:19;;59580:12;;59573:19;;59580:12;59573:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59509:88;:::o;57939:372::-;58144:20;;58182:29;;;-1:-1:-1;;;58182:29:0;;-1:-1:-1;;;;;58182:29:0;;;;;;;;;58021:15;;58144:20;;;58174:51;;;58144:20;;58182:21;;:29;;;;;;;;;;;;;;;58144:20;58182:29;;;5:2:-1;;;;30:1;27;20:12;5:2;58182:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;58182:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;58182:29:0;-1:-1:-1;;;;;58174:51:0;;58170:80;;;58240:4;58233:11;;;;;58170:80;58263:43;58288:6;58296:9;58263:24;:43::i;:::-;58256:50;57939:372;-1:-1:-1;;;;57939:372:0:o;34945:545::-;35080:10;-1:-1:-1;;;;;35080:19:0;;;;35079:60;;;35104:35;35121:5;35128:10;35104:16;:35::i;:::-;35071:115;;;;-1:-1:-1;;;35071:115:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35201:17:0;;35193:72;;;;-1:-1:-1;;;35193:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35379:43;35397:5;35404:3;35409;35414:7;35379:17;:43::i;:::-;35429:55;35452:5;35459:3;35464;35469:7;35478:5;35429:22;:55::i;10174:109::-;9280:9;:7;:9::i;:::-;9272:54;;;;;-1:-1:-1;;;9272:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9272:54:0;;;;;;;;;;;;;;;10247:28;10266:8;10247:18;:28::i;56669:343::-;13302:30;13319:12;:10;:12::i;13302:30::-;13294:107;;;;-1:-1:-1;;;13294:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56776:10;-1:-1:-1;;;;;56776:22:0;;;;56775:66;;;56803:38;56820:8;56830:10;56803:16;:38::i;:::-;56767:109;;;;;-1:-1:-1;;;56767:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56892:18:0;;:8;:18;;;;;;;;;;;:23;;;;;;;;;:34;-1:-1:-1;56892:34:0;56884:86;;;;-1:-1:-1;;;56884:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56978:29;56984:8;56994:3;56999:7;56978:5;:29::i;7677:98::-;7757:10;7677:98;:::o;45517:539::-;45571:27;45611:7;45607:40;;-1:-1:-1;45629:10:0;;;;;;;;;;;;-1:-1:-1;;;45629:10:0;;;;;;45607:40;45667:2;;45655:9;45746:53;45753:6;;45746:53;;45770:5;;45789:2;45784:7;;;;45746:53;;;45807:17;45837:3;45827:14;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;45827:14:0;87:34:-1;135:17;;-1:-1;45827:14:0;-1:-1:-1;45807:34:0;-1:-1:-1;;;45860:7:0;;45910:87;45917:7;;45910:87;;45968:2;45963;:7;45958:2;:12;45947:25;;45935:4;45940:3;;;;;;;45935:9;;;;;;;;;;;:37;-1:-1:-1;;;;;45935:37:0;;;;;;;;-1:-1:-1;45987:2:0;45981:8;;;;45910:87;;;-1:-1:-1;46045:4:0;45517:539;-1:-1:-1;;;;;45517:539:0:o;58529:103::-;58582:4;58600:13;;;:8;:13;;;;;;-1:-1:-1;;;;;58600:13:0;:27;;;58529:103::o;51036:384::-;51089:27;51127:7;51123:35;;-1:-1:-1;51142:10:0;;;;;;;;;;;;-1:-1:-1;;;51142:10:0;;;;;;51123:35;51174:2;51162:9;51197:45;51204:6;;51197:45;;51218:5;;51234:2;51229:7;;;;51197:45;;;51246:17;51276:3;51266:14;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;51266:14:0;87:34:-1;135:17;;-1:-1;51266:14:0;-1:-1:-1;51246:34:0;-1:-1:-1;;;51297:7:0;;51309:83;51316:7;;51309:83;;51367:2;51362;:7;51356:2;:14;51343:29;;51331:4;51336:3;;;;;;;51331:9;;;;;;;;;;;:41;-1:-1:-1;;;;;51331:41:0;;;;;;;;-1:-1:-1;51384:2:0;51378:8;;;;51309:83;;;-1:-1:-1;51410:4:0;51036:384;-1:-1:-1;;;;51036:384:0:o;50892:139::-;50970:13;50997:29;51007:2;51011;50997:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:9;:29::i;:::-;50990:36;50892:139;-1:-1:-1;;;50892:139:0:o;38022:687::-;38179:8;:15;38164:4;:11;:30;38156:96;;;;-1:-1:-1;;;38156:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38319:11;;38299:17;38371:247;38395:9;38391:1;:13;38371:247;;;38496:41;38525:8;38534:1;38525:11;;;;;;;;;;;;;;38496:8;:15;38505:5;-1:-1:-1;;;;;38496:15:0;-1:-1:-1;;;;;38496:15:0;;;;;;;;;;;;:24;38512:4;38517:1;38512:7;;;;;;;;;;;;;;38496:24;;;;;;;;;;;;:28;;:41;;;;:::i;:::-;38469:8;:15;38478:5;-1:-1:-1;;;;;38469:15:0;-1:-1:-1;;;;;38469:15:0;;;;;;;;;;;;:24;38485:4;38490:1;38485:7;;;;;;;;;;;;;;38469:24;;;;;;;;;;;:68;;;;38571:39;38598:8;38607:1;38598:11;;;;;;;;;;;;;;38571:8;:13;38580:3;-1:-1:-1;;;;;38571:13:0;-1:-1:-1;;;;;38571:13:0;;;;;;;;;;;;:22;38585:4;38590:1;38585:7;;;;;;;;;;;;;;38571:22;;;;;;;;;;;;:26;;:39;;;;:::i;:::-;38546:8;:13;38555:3;-1:-1:-1;;;;;38546:13:0;-1:-1:-1;;;;;38546:13:0;;;;;;;;;;;;:22;38560:4;38565:1;38560:7;;;;;;;;;;;;;;;;;;;38546:22;;;;;;;;;;-1:-1:-1;38546:22:0;:64;38406:3;;38371:247;;;;38683:3;-1:-1:-1;;;;;38650:53:0;38676:5;-1:-1:-1;;;;;38650:53:0;38664:10;-1:-1:-1;;;;;38650:53:0;;38688:4;38694:8;38650:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;38650:53: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;38650:53:0;;;;;;;;;;;;;;;;;;;38022:687;;;;;:::o;38827:476::-;39033:16;:3;-1:-1:-1;;;;;39033:14:0;;:16::i;:::-;39029:269;;;39060:13;39098:3;-1:-1:-1;;;;;39076:49:0;;39126:10;39138:5;39145:4;39151:8;39161:5;39076:91;;;;;;;;;;;;;-1:-1:-1;;;;;39076:91:0;-1:-1:-1;;;;;39076:91:0;;;;;;-1:-1:-1;;;;;39076:91:0;-1:-1:-1;;;;;39076:91: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;39076:91: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;39076:91: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;39076:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39076:91:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39076:91:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39076:91:0;;-1:-1:-1;;;;;;;39184:38:0;;-1:-1:-1;;;39184:38:0;39176:114;;;;-1:-1:-1;;;39176:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39029:269;38827:476;;;;;:::o;12563:130::-;12623:24;:8;12639:7;12623:24;:15;:24;:::i;:::-;12663:22;;-1:-1:-1;;;;;12663:22:0;;;;;;;;12563:130;:::o;58765:97::-;58835:15;;58814:7;;58835:22;;58855:1;58835:22;:19;:22;:::i;:::-;58828:29;;58765:97;:::o;58929:68::-;58975:15;:17;;;;;;58929:68::o;46682:401::-;-1:-1:-1;;;;;46825:13:0;;:8;:13;;;;;;;;;;;:18;;;;;;;;;:31;;46848:7;46825:31;:22;:31;:::i;:::-;-1:-1:-1;;;;;46804:13:0;;:8;:13;;;;;;;;;;;:18;;;;;;;;:52;;;;46889:59;;;;;;;;;;;;;46804:13;;:8;;46904:10;;46889:59;;;;;;;;47015:62;47046:3;47052;47057;47062:7;47071:5;47015:22;:62::i;:::-;46682:401;;;;:::o;13943:154::-;14011:32;:16;14035:7;14011:32;:23;:32;:::i;:::-;14059:30;;-1:-1:-1;;;;;14059:30:0;;;;;;;;13943:154;:::o;8817:170::-;8859:17;8879:12;:10;:12::i;:::-;8902:6;:18;;-1:-1:-1;;;;;;8902:18:0;-1:-1:-1;;;;;8902:18:0;;;;;;;;8936:43;;8902:18;;-1:-1:-1;8902:18:0;-1:-1:-1;;8936:43:0;;-1:-1:-1;;8936:43:0;8817:170;:::o;11829:73::-;11870:24;11881:12;:10;:12::i;:::-;11870:10;:24::i;13073:89::-;13122:32;13141:12;:10;:12::i;:::-;13122:18;:32::i;16037:163::-;16095:7;16123:5;;;16143:6;;;;16135:41;;;;;-1:-1:-1;;;16135:41:0;;;;;;;;;;;;-1:-1:-1;;;16135:41:0;;;;;;;;;;;;;;13789:146;13854:29;:16;13875:7;13854:29;:20;:29;:::i;:::-;13899:28;;-1:-1:-1;;;;;13899:28:0;;;;;;;;13789:146;:::o;45153:123::-;45233:37;;;;:15;;:37;;;;;:::i;12433:122::-;12490:21;:8;12503:7;12490:21;:12;:21;:::i;:::-;12527:20;;-1:-1:-1;;;;;12527:20:0;;;;;;;;12433:122;:::o;11408:203::-;11480:4;-1:-1:-1;;;;;11505:21:0;;11497:68;;;;-1:-1:-1;;;11497:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11583:20:0;:11;:20;;;;;;;;;;;;;;;11408:203::o;40198:155::-;-1:-1:-1;;;;;40319:17:0;;;40285:15;40319:17;;;:9;:17;;;;;;;;:28;;;;;;;;;;;;;;;40198:155::o;36798:376::-;-1:-1:-1;;;;;36954:15:0;;:8;:15;;;;;;;;;;;:20;;;;;;;;;:33;;36979:7;36954:33;:24;:33;:::i;:::-;-1:-1:-1;;;;;36931:15:0;;;:8;:15;;;;;;;;;;;:20;;;;;;;;:56;;;;37034:13;;;;;;;;;;;:18;;;;;;;;:31;;37057:7;37034:31;:22;:31;:::i;:::-;-1:-1:-1;;;;;37013:13:0;;;:8;:13;;;;;;;;;;;:18;;;;;;;;;:52;;;;37116;;;;;;;;;;;;;37013:13;;37116:52;;;;37131:10;;37116:52;;;;;;;;;;;36798:376;;;;:::o;37287:429::-;37464:16;:3;-1:-1:-1;;;;;37464:14:0;;:16::i;:::-;37460:251;;;37491:13;37529:3;-1:-1:-1;;;;;37507:44:0;;37552:10;37564:5;37571:3;37576:7;37585:5;37507:84;;;;;;;;;;;;;-1:-1:-1;;;;;37507:84:0;-1:-1:-1;;;;;37507:84:0;;;;;;-1:-1:-1;;;;;37507:84:0;-1:-1:-1;;;;;37507:84: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;37507:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37507:84:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37507:84:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37507:84:0;;-1:-1:-1;;;;;;;37608:32:0;;-1:-1:-1;;;37608:32:0;37600:103;;;;-1:-1:-1;;;37600:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10389:229;-1:-1:-1;;;;;10463:22:0;;10455:73;;;;-1:-1:-1;;;10455:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10565:6;;10544:38;;-1:-1:-1;;;;;10544:38:0;;;;10565:6;;10544:38;;10565:6;;10544:38;10593:6;:17;;-1:-1:-1;;;;;;10593:17:0;-1:-1:-1;;;;;10593:17:0;;;;;;;;;;10389:229::o;48452:265::-;-1:-1:-1;;;;;48584:15:0;;:8;:15;;;;;;;;;;;:20;;;;;;;;;:33;;48609:7;48584:33;:24;:33;:::i;:::-;-1:-1:-1;;;;;48561:15:0;;:8;:15;;;;;;;;;;;:20;;;;;;;;:56;;;;48650:61;;;;;;;;;;;;;48561:8;;48665:10;;48650:61;;;;;;;;;;48452:265;;;:::o;49666:850::-;49817:13;49837:16;49862:2;49837:28;;49870:16;49895:2;49870:28;;49903:16;49928:2;49903:28;;49936:16;49961:2;49936:28;;49969:16;49994:2;49969:28;;50002:19;50087:3;:10;50074:3;:10;50061:3;:10;50048:3;:10;50035:3;:10;:23;:36;:49;:62;50024:74;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;50024:74:0;87:34:-1;135:17;;-1:-1;50024:74:0;-1:-1:-1;50002:96:0;-1:-1:-1;50002:96:0;50142:9;;50160:61;50184:3;:10;50180:1;:14;50160:61;;;50215:3;50219:1;50215:6;;;;;;;;;;;;;;;;50201;50208:3;;;;;;50201:11;;;;;;;;;;;:20;-1:-1:-1;;;;;50201:20:0;;;;;;;;-1:-1:-1;50196:3:0;;50160:61;;;-1:-1:-1;50231:9:0;50226:61;50250:3;:10;50246:1;:14;50226:61;;;50281:3;50285:1;50281:6;;;;;;;;;;;;;;;;50267;50274:3;;;;;;50267:11;;;;;;;;;;;:20;-1:-1:-1;;;;;50267:20:0;;;;;;;;-1:-1:-1;50262:3:0;;50226:61;;;-1:-1:-1;50297:9:0;50292:61;50316:3;:10;50312:1;:14;50292:61;;;50347:3;50351:1;50347:6;;;;;;;;;;;;;;;;50333;50340:3;;;;;;50333:11;;;;;;;;;;;:20;-1:-1:-1;;;;;50333:20:0;;;;;;;;-1:-1:-1;50328:3:0;;50292:61;;;-1:-1:-1;50363:9:0;50358:61;50382:3;:10;50378:1;:14;50358:61;;;50413:3;50417:1;50413:6;;;;;;;;;;;;;;;;50399;50406:3;;;;;;50399:11;;;;;;;;;;;:20;-1:-1:-1;;;;;50399:20:0;;;;;;;;-1:-1:-1;50394:3:0;;50358:61;;;-1:-1:-1;50429:9:0;50424:61;50448:3;:10;50444:1;:14;50424:61;;;50479:3;50483:1;50479:6;;;;;;;;;;;;;;;;50465;50472:3;;;;;;50465:11;;;;;;;;;;;:20;-1:-1:-1;;;;;50465:20:0;;;;;;;;-1:-1:-1;50460:3:0;;50424:61;;;-1:-1:-1;50504:6:0;;49666:850;-1:-1:-1;;;;;;;;;;;;;49666:850:0:o;15794:163::-;15852:7;15881:1;15876;:6;;15868:42;;;;;-1:-1:-1;;;15868:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15929:5:0;;;15794:163::o;26140:422::-;26507:20;26546:8;;;26140:422::o;11130:183::-;11210:18;11214:4;11220:7;11210:3;:18::i;:::-;11202:64;;;;-1:-1:-1;;;11202:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11277:20:0;11300:5;11277:20;;;;;;;;;;;:28;;-1:-1:-1;;11277:28:0;;;11130:183::o;10872:178::-;10950:18;10954:4;10960:7;10950:3;:18::i;:::-;10949:19;10941:63;;;;;-1:-1:-1;;;10941:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11015:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;11015:27:0;11038:4;11015:27;;;10872:178::o;59189:596::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;59189:596:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59189:596:0;;;-1:-1:-1;59189:596:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;-1:-1:-1;59189:596:0;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://e722a58826b8aa2159d94ef9eb05dc0680ebc2b3597f0705a5c49e263f4c5994
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.