Token Bloktopia

 

Overview ERC-721

Total Supply:
12,000 BLOK

Holders:
1,726 addresses
 
Balance
1 BLOK
0xb95d435df3f8b2a8d8b9c2b7c8766c9ae6ed8cc9
Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

Click here to update the token ICO / general information
# Exchange Pair Price  24H Volume % Volume
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0x8C7c61487ac517199432CfB5A93D105C103873f3

Contract Name:
AmbitionERC721A

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-10-08
*/

// Sources flattened with hardhat v2.8.3 https://hardhat.org

// File @openzeppelin/contracts/proxy/[email protected]

// OpenZeppelin Contracts v4.4.1 (proxy/Proxy.sol)

pragma solidity ^0.8.0;

/**
 * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
 * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
 * be specified by overriding the virtual {_implementation} function.
 *
 * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
 * different contract through the {_delegate} function.
 *
 * The success and return data of the delegated call will be returned back to the caller of the proxy.
 */
abstract contract Proxy {
    /**
     * @dev Delegates the current call to `implementation`.
     *
     * This function does not return to its internall call site, it will return directly to the external caller.
     */
    function _delegate(address implementation) internal virtual {
        assembly {
            // Copy msg.data. We take full control of memory in this inline assembly
            // block because it will not return to Solidity code. We overwrite the
            // Solidity scratch pad at memory position 0.
            calldatacopy(0, 0, calldatasize())

            // Call the implementation.
            // out and outsize are 0 because we don't know the size yet.
            let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)

            // Copy the returned data.
            returndatacopy(0, 0, returndatasize())

            switch result
            // delegatecall returns 0 on error.
            case 0 {
                revert(0, returndatasize())
            }
            default {
                return(0, returndatasize())
            }
        }
    }

    /**
     * @dev This is a virtual function that should be overriden so it returns the address to which the fallback function
     * and {_fallback} should delegate.
     */
    function _implementation() internal view virtual returns (address);

    /**
     * @dev Delegates the current call to the address returned by `_implementation()`.
     *
     * This function does not return to its internall call site, it will return directly to the external caller.
     */
    function _fallback() internal virtual {
        _beforeFallback();
        _delegate(_implementation());
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
     * function in the contract matches the call data.
     */
    fallback() external payable virtual {
        _fallback();
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data
     * is empty.
     */
    receive() external payable virtual {
        _fallback();
    }

    /**
     * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback`
     * call, or as part of the Solidity `fallback` or `receive` functions.
     *
     * If overriden should call `super._beforeFallback()`.
     */
    function _beforeFallback() internal virtual {}
}


// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // 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;
        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");

        (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");

        (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");

        (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.4._
     */
    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.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/StorageSlot.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        assembly {
            r.slot := slot
        }
    }
}


// File contracts/Asd.sol

pragma solidity ^0.8.4;



contract ERC721ContractWrapper is Proxy {
		address internal constant _IMPLEMENTATION_ADDRESS = 0x82Ce9b0a8F12D0e60D802a19dFA0d16c00C9e13A;
    bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _totalSupply
    ) {
        assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1));
        StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = _IMPLEMENTATION_ADDRESS;
        Address.functionDelegateCall(
            _IMPLEMENTATION_ADDRESS,
            abi.encodeWithSignature("initialize(string,string,uint256)", _name, _symbol, _totalSupply)
        );
    }
    
    /**
     * @dev Returns the current implementation address.
     */
     function implementation() public view returns (address) {
        return _implementation();
    }

    function _implementation() internal override view returns (address) {
        return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
    }    
}

contract AmbitionERC721A is ERC721ContractWrapper {
  constructor(
    string memory _name,
    string memory _symbol,
    uint256 _totalSupply
  ) ERC721ContractWrapper(_name,_symbol,_totalSupply) {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b5060405162000dae38038062000dae833981810160405281019062000037919062000436565b82828260017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd60001c6200006c9190620006bb565b60001b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b14620000a457620000a36200076c565b5b7382ce9b0a8f12d0e60d802a19dfa0d16c00c9e13a620000f27f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b620001fe60201b6200008f1760201c565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001f17382ce9b0a8f12d0e60d802a19dfa0d16c00c9e13a8484846040516024016200016393929190620005bd565b6040516020818303038152906040527fb119490e000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506200020860201b620000991760201c565b5050505050505062000887565b6000819050919050565b606062000236838360405180606001604052806027815260200162000d87602791396200023e60201b60201c565b905092915050565b606062000251846200032260201b60201c565b62000293576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028a9062000608565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff1685604051620002bd919062000580565b600060405180830381855af49150503d8060008114620002fa576040519150601f19603f3d011682016040523d82523d6000602084013e620002ff565b606091505b5091509150620003178282866200033560201b60201c565b925050509392505050565b600080823b905060008111915050919050565b6060831562000347578290506200039a565b6000835111156200035b5782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000391919062000599565b60405180910390fd5b9392505050565b6000620003b8620003b28462000653565b6200062a565b905082815260208101848484011115620003d757620003d6620007fe565b5b620003e484828562000700565b509392505050565b600082601f830112620004045762000403620007f9565b5b815162000416848260208601620003a1565b91505092915050565b60008151905062000430816200086d565b92915050565b60008060006060848603121562000452576200045162000808565b5b600084015167ffffffffffffffff81111562000473576200047262000803565b5b6200048186828701620003ec565b935050602084015167ffffffffffffffff811115620004a557620004a462000803565b5b620004b386828701620003ec565b9250506040620004c6868287016200041f565b9150509250925092565b6000620004dd8262000689565b620004e981856200069f565b9350620004fb81856020860162000700565b80840191505092915050565b6000620005148262000694565b620005208185620006aa565b93506200053281856020860162000700565b6200053d816200080d565b840191505092915050565b600062000557602683620006aa565b915062000564826200081e565b604082019050919050565b6200057a81620006f6565b82525050565b60006200058e8284620004d0565b915081905092915050565b60006020820190508181036000830152620005b5818462000507565b905092915050565b60006060820190508181036000830152620005d9818662000507565b90508181036020830152620005ef818562000507565b90506200060060408301846200056f565b949350505050565b60006020820190508181036000830152620006238162000548565b9050919050565b60006200063662000649565b905062000644828262000736565b919050565b6000604051905090565b600067ffffffffffffffff821115620006715762000670620007ca565b5b6200067c826200080d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b6000620006c882620006f6565b9150620006d583620006f6565b925082821015620006eb57620006ea6200079b565b5b828203905092915050565b6000819050919050565b60005b838110156200072057808201518184015260208101905062000703565b8381111562000730576000848401525b50505050565b62000741826200080d565b810181811067ffffffffffffffff82111715620007635762000762620007ca565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60008201527f6e74726163740000000000000000000000000000000000000000000000000000602082015250565b6200087881620006f6565b81146200088457600080fd5b50565b6104f080620008976000396000f3fe6080604052600436106100225760003560e01c80635c60da1b1461003b57610031565b366100315761002f610066565b005b610039610066565b005b34801561004757600080fd5b50610050610080565b60405161005d919061033f565b60405180910390f35b61006e6100c6565b61007e6100796100c8565b61011f565b565b600061008a6100c8565b905090565b6000819050919050565b60606100be838360405180606001604052806027815260200161049460279139610145565b905092915050565b565b60006100f67f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b61008f565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3660008037600080366000845af43d6000803e8060008114610140573d6000f35b3d6000fd5b606061015084610212565b61018f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101869061037c565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff16856040516101b79190610328565b600060405180830381855af49150503d80600081146101f2576040519150601f19603f3d011682016040523d82523d6000602084013e6101f7565b606091505b5091509150610207828286610225565b925050509392505050565b600080823b905060008111915050919050565b6060831561023557829050610285565b6000835111156102485782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161027c919061035a565b60405180910390fd5b9392505050565b610295816103ce565b82525050565b60006102a68261039c565b6102b081856103b2565b93506102c0818560208601610400565b80840191505092915050565b60006102d7826103a7565b6102e181856103bd565b93506102f1818560208601610400565b6102fa81610433565b840191505092915050565b60006103126026836103bd565b915061031d82610444565b604082019050919050565b6000610334828461029b565b915081905092915050565b6000602082019050610354600083018461028c565b92915050565b6000602082019050818103600083015261037481846102cc565b905092915050565b6000602082019050818103600083015261039581610305565b9050919050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b60006103d9826103e0565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b8381101561041e578082015181840152602081019050610403565b8381111561042d576000848401525b50505050565b6000601f19601f8301169050919050565b7f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60008201527f6e7472616374000000000000000000000000000000000000000000000000000060208201525056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212202ca116437ccb0d36ef31f6794425215113016b365e16adb17b6c864450e8047864736f6c63430008070033416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000063000000000000000000000000000000000000000000000000000000000000001f447261776e20536869746865616473204d696e692d436f6c6c656374696f6e0000000000000000000000000000000000000000000000000000000000000000055348544844000000000000000000000000000000000000000000000000000000

Deployed ByteCode Sourcemap

15365:208:0:-:0;;;;;;;;;;;;;;;;;;;;;;;3048:11;:9;:11::i;:::-;15365:208;;2817:11;:9;:11::i;:::-;15365:208;15099:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2454:113;2503:17;:15;:17::i;:::-;2531:28;2541:17;:15;:17::i;:::-;2531:9;:28::i;:::-;2454:113::o;15099:99::-;15146:7;15173:17;:15;:17::i;:::-;15166:24;;15099:99;:::o;13249:151::-;13310:21;13378:4;13368:14;;13249:151;;;:::o;9829:200::-;9912:12;9944:77;9965:6;9973:4;9944:77;;;;;;;;;;;;;;;;;:20;:77::i;:::-;9937:84;;9829:200;;;;:::o;3356:46::-;:::o;15206:148::-;15265:7;15292:48;14426:66;15319:20;;15292:26;:48::i;:::-;:54;;;;;;;;;;;;15285:61;;15206:148;:::o;1044:918::-;1387:14;1384:1;1381;1368:34;1605:1;1602;1586:14;1583:1;1567:14;1560:5;1547:60;1684:16;1681:1;1678;1663:38;1724:6;1798:1;1793:68;;;;1912:16;1909:1;1902:27;1793:68;1829:16;1826:1;1819:27;10223:396;10368:12;10401:18;10412:6;10401:10;:18::i;:::-;10393:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;10476:12;10490:23;10517:6;:19;;10537:4;10517:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10475:67;;;;10560:51;10577:7;10586:10;10598:12;10560:16;:51::i;:::-;10553:58;;;;10223:396;;;;;:::o;4235:387::-;4295:4;4503:12;4570:7;4558:20;4550:28;;4613:1;4606:4;:8;4599:15;;;4235:387;;;:::o;10847:712::-;10997:12;11026:7;11022:530;;;11057:10;11050:17;;;;11022:530;11191:1;11171:10;:17;:21;11167:374;;;11369:10;11363:17;11430:15;11417:10;11413:2;11409:19;11402:44;11167:374;11512:12;11505:20;;;;;;;;;;;:::i;:::-;;;;;;;;10847:712;;;;;;:::o;7:118:1:-;94:24;112:5;94:24;:::i;:::-;89:3;82:37;7:118;;:::o;131:373::-;235:3;263:38;295:5;263:38;:::i;:::-;317:88;398:6;393:3;317:88;:::i;:::-;310:95;;414:52;459:6;454:3;447:4;440:5;436:16;414:52;:::i;:::-;491:6;486:3;482:16;475:23;;239:265;131:373;;;;:::o;510:364::-;598:3;626:39;659:5;626:39;:::i;:::-;681:71;745:6;740:3;681:71;:::i;:::-;674:78;;761:52;806:6;801:3;794:4;787:5;783:16;761:52;:::i;:::-;838:29;860:6;838:29;:::i;:::-;833:3;829:39;822:46;;602:272;510:364;;;;:::o;880:366::-;1022:3;1043:67;1107:2;1102:3;1043:67;:::i;:::-;1036:74;;1119:93;1208:3;1119:93;:::i;:::-;1237:2;1232:3;1228:12;1221:19;;880:366;;;:::o;1252:271::-;1382:3;1404:93;1493:3;1484:6;1404:93;:::i;:::-;1397:100;;1514:3;1507:10;;1252:271;;;;:::o;1529:222::-;1622:4;1660:2;1649:9;1645:18;1637:26;;1673:71;1741:1;1730:9;1726:17;1717:6;1673:71;:::i;:::-;1529:222;;;;:::o;1757:313::-;1870:4;1908:2;1897:9;1893:18;1885:26;;1957:9;1951:4;1947:20;1943:1;1932:9;1928:17;1921:47;1985:78;2058:4;2049:6;1985:78;:::i;:::-;1977:86;;1757:313;;;;:::o;2076:419::-;2242:4;2280:2;2269:9;2265:18;2257:26;;2329:9;2323:4;2319:20;2315:1;2304:9;2300:17;2293:47;2357:131;2483:4;2357:131;:::i;:::-;2349:139;;2076:419;;;:::o;2501:98::-;2552:6;2586:5;2580:12;2570:22;;2501:98;;;:::o;2605:99::-;2657:6;2691:5;2685:12;2675:22;;2605:99;;;:::o;2710:147::-;2811:11;2848:3;2833:18;;2710:147;;;;:::o;2863:169::-;2947:11;2981:6;2976:3;2969:19;3021:4;3016:3;3012:14;2997:29;;2863:169;;;;:::o;3038:96::-;3075:7;3104:24;3122:5;3104:24;:::i;:::-;3093:35;;3038:96;;;:::o;3140:126::-;3177:7;3217:42;3210:5;3206:54;3195:65;;3140:126;;;:::o;3272:307::-;3340:1;3350:113;3364:6;3361:1;3358:13;3350:113;;;3449:1;3444:3;3440:11;3434:18;3430:1;3425:3;3421:11;3414:39;3386:2;3383:1;3379:10;3374:15;;3350:113;;;3481:6;3478:1;3475:13;3472:101;;;3561:1;3552:6;3547:3;3543:16;3536:27;3472:101;3321:258;3272:307;;;:::o;3585:102::-;3626:6;3677:2;3673:7;3668:2;3661:5;3657:14;3653:28;3643:38;;3585:102;;;:::o;3693:225::-;3833:34;3829:1;3821:6;3817:14;3810:58;3902:8;3897:2;3889:6;3885:15;3878:33;3693:225;:::o

Swarm Source

ipfs://2ca116437ccb0d36ef31f6794425215113016b365e16adb17b6c864450e80478
Loading